/*
Theme Name: KlemenDev
Theme URI: https://klemendev.com
Author: Klemen
Author URI: https://klemendev.com
Description: Modern one-page WordPress theme for KlemenDev - A futuristic website showcasing web development services in Slovenia
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: klemendev
Tags: one-page, portfolio, business, modern, responsive, custom-colors
*/

/* ================================================
   Design System - Colors and Variables
   ================================================ */
:root {
  --background: #f5f0e8;
  --foreground: #0d0d0d;
  
  --card: #ffffff;
  --card-foreground: #0d0d0d;
  
  --primary: #0d0d0d;
  --primary-foreground: #f5f0e8;
  
  --secondary: #f5f0e8;
  --secondary-foreground: #0d0d0d;
  
  --muted: #dcd4c5;
  --muted-foreground: #595959;

  --thirdary: #dcd4c5;
  --thirdary-foreground: #ffffff85;
  
  --accent: #ffd500;
  --accent-foreground: #0d0d0d;
  
  --border: #d4caba;
  
  --dark-bg: #0d0d0d;
  --dark-card: #141414;
  
  --radius: 0.75rem;
  
  /* Shadows and Effects */
  --shadow-glow: 0 0 40px rgba(255, 213, 0, 0.3);
  --shadow-elegant: 0 20px 60px -10px rgba(0, 0, 0, 0.3);
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   Base Styles
   ================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Livvic', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================================================
   Container
   ================================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================================
   Utility Classes
   ================================================ */
.bg-dark-bg {
  background-color: var(--dark-bg);
}

.bg-dark-card {
  background-color: var(--dark-card);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.shadow-elegant {
  box-shadow: var(--shadow-elegant);
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-light {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.animated-glow {
  animation: glow-pulse 4s ease-in-out infinite, float 8s ease-in-out infinite;
}

/* ================================================
   Animations
   ================================================ */
@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 40px rgba(255, 213, 0, 0.5);
    opacity: 0.4;
  }
  25% {
    box-shadow: 0 0 60px rgba(255, 213, 0, 0.7);
    opacity: 0.6;
  }
  50% {
    box-shadow: 0 0 100px rgba(255, 213, 0, 0.9);
    opacity: 0.8;
  }
  75% {
    box-shadow: 0 0 70px rgba(255, 213, 0, 0.6);
    opacity: 0.5;
  }
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  25% {
    transform: translateY(-30px) translateX(15px) scale(1.05);
  }
  50% {
    transform: translateY(-20px) translateX(-10px) scale(0.95);
  }
  75% {
    transform: translateY(-35px) translateX(10px) scale(1.08);
  }
}

@keyframes glow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ================================================
   Section Spacing
   ================================================ */
section {
  padding: 6rem 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

/* ================================================
   Tailwind Utility Classes
   ================================================ */

/* Display */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Flexbox */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.bottom-8 { bottom: 2rem; }
.left-1/2 { left: 50%; }
.top-1/4 { top: 25%; }
.bottom-1/4 { bottom: 25%; }
.top-10 { top: 2.5rem; }
.left-10 { left: 2.5rem; }
.right-10 { right: 2.5rem; }
.bottom-10 { bottom: 2.5rem; }
.bottom-30 { bottom: 30rem; }
.top-20 { top: 5rem; }
.top-30 { top: 15rem; }
.bottom-20 { bottom: 5rem; }
.left-1/4 { left: 25%; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Width & Height */
.w-full { width: 100%; }
.w-2 { width: 0.5rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }
.w-1.5 { width: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.min-h-screen { min-height: 100vh; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* Spacing - Margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.ml-2 { margin-left: 0.5rem; }

/* Spacing - Padding */
.p-1 { padding: 0.25rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-24 { padding-top: 6rem; }
.pb-8 { padding-bottom: 2rem; }

/* Gap */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Typography */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Colors */
.bg-background { background-color: var(--background); }
.bg-accent-5 { background-color: rgb(255 213 0 / 30%); }
.bg-accent-10 { background-color: rgba(255, 213, 0, 0.25); }
.opacity-5 { opacity: 0.15 !important; }
.opacity-10 { opacity: 0.1 !important; }
.opacity-20 { opacity: 0.2 !important; }
.opacity-30 { opacity: 0.3 !important; }

/* Border */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.border-t { border-top-width: 1px; }
.border-2 { border-width: 2px; }
.ring-2 { box-shadow: 0 0 0 2px var(--accent); }

/* Effects */
.blur-3xl { filter: blur(80px); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-x-1/2 { transform: translateX(-50%); }
.scale-105 { transform: scale(1.05); }
.scale-in { animation: scale-in 0.8s ease-out; }

/* Hover Effects */
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-elegant:hover { box-shadow: var(--shadow-elegant); }

/* Animations */
.animate-bounce { animation: bounce 1s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}
@keyframes scale-in {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* Responsive - Mobile First */
/* Using attribute selectors for classes with colons (Tailwind-style) */
@media (min-width: 640px) {
  [class~="sm:flex-row"] { flex-direction: row; }
}

/* Mobile grid defaults - single column */
.services-grid,
.projects-grid,
.pricing-grid,
.process-grid,
.footer-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Pricing Mobile Optimization - Make cards smaller and more compact */
@media (max-width: 767px) {
  .pricing-grid > * {
    padding: 1.5rem !important;
  }
  
  .pricing-grid h3 {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .pricing-grid .text-4xl {
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .pricing-grid p {
    font-size: 0.875rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.5 !important;
  }
  
  .pricing-grid ul {
    margin-bottom: 1rem !important;
  }
  
  .pricing-grid ul li {
    font-size: 0.875rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .pricing-grid .space-y-3 > * + * {
    margin-top: 0.5rem !important;
  }
  
  .pricing-grid a {
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
  }
  
  .pricing-grid .inline-block {
    padding: 0.375rem 0.75rem !important;
    font-size: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .pricing-grid .gap-8 {
    gap: 1rem !important;
  }
  
  /* Hide extra features on mobile, show "more" indicator */
  .pricing-feature-mobile-hidden {
    display: none !important;
  }
  
  .pricing-feature-mobile-hidden.pricing-feature-expanded {
    display: flex !important;
  }
  
  .pricing-feature-more {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
  }
  
  .pricing-feature-more:hover {
    opacity: 0.8;
  }
}

/* Show all features on desktop */
@media (min-width: 768px) {
  .pricing-feature-mobile-hidden {
    display: flex !important;
  }
  
  .pricing-feature-more {
    display: none !important;
  }
}

@media (min-width: 768px) {
  [class~="md:flex"] { display: flex; }
  [class~="md:hidden"] { display: none; }
  [class~="md:inline-flex"] { display: inline-flex; }
  [class~="md:grid-cols-2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  [class~="md:grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  [class~="md:grid-cols-4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  [class~="md:flex-row"] { flex-direction: row; }
  [class~="md:text-left"] { text-align: left; }
  [class~="md:text-2xl"] { font-size: 1.5rem; }
  [class~="md:text-3xl"] { font-size: 1.875rem; }
  [class~="md:text-5xl"] { font-size: 3rem; }
  [class~="md:text-6xl"] { font-size: 3.75rem; }
  [class~="md:text-7xl"] { font-size: 4.5rem; }
  [class~="md:p-12"] { padding: 3rem; }
  [class~="md:mt-0"] { margin-top: 0; }
  
  /* Direct grid classes for all sections - desktop layout */
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  [class~="lg:grid-cols-3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  [class~="lg:grid-cols-4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ================================================
   Navigation Styles
   ================================================ */
#navigation {
  transition: all 0.3s ease;
}

#navigation .container > div {
  position: relative;
}

/* Center navigation links independently of side elements */
.nav-links-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: auto;
}

/* Ensure logo and button are above navigation links */
#navigation .container > div > div:first-child,
#navigation .nav-cta-btn {
  position: relative;
  z-index: 2;
}

#navigation.transparent {
  background: transparent;
}

#navigation.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hide cookie consent button visually but keep it accessible for JavaScript */
.cmplz-manage-consent,
button.cmplz-btn.cmplz-manage-consent,
.cmplz-manage-consent.manage-consent-1 {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* Footer Cookie Button - Desktop only (fixed position) */
.footer-cookie-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--background);
  border: 2px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 0.5rem;
}

/* Show cookie button on desktop */
@media (min-width: 768px) {
  .footer-cookie-btn {
    display: flex;
  }
}

/* Hide cookie button on mobile */
@media (max-width: 767px) {
  .footer-cookie-btn {
    display: none !important;
  }
}

.footer-cookie-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

.footer-cookie-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hide-desktop {
  display: none;
}

/* Footer Cookie Button - Mobile (inside footer) */
.footer-cookie-btn-mobile {
  transition: all 0.3s ease;
  display: none; /* Hidden by default */
}

/* Show cookie button in footer on mobile */
@media (max-width: 767px) {
  .footer-cookie-btn-mobile {
    display: flex;
  }
  .hide-desktop {
    display: block;
  }
}

/* Hide cookie button in footer on desktop */
@media (min-width: 768px) {
  .footer-cookie-btn-mobile {
    display: none !important;
  }
}

.footer-cookie-btn-mobile:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.footer-cookie-btn-mobile img {
  margin-bottom: 1rem;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

div>a.nav-link.px-4.py-2.text-sm.font-medium {
  text-shadow: 0px 0px 20px #0000000a, 0px 0px 6px #000000, 0px 0px 6px #000000, 0px 0px 6px #000000;
}

#mobile-menu-btn,
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none !important;
  }
}

.mobile-menu-link {
  transition: all 0.3s ease;
}

.mobile-menu-link:hover {
  background: rgba(255, 213, 0, 0.1);
  color: var(--accent);
}

/* Form Input Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 213, 0, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* Contact Form Input Styling */
.contact-input {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.contact-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 213, 0, 0.1);
}

.contact-input::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

.resize-none {
  resize: none;
}

button[type="submit"] {
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  transform: scale(1.02);
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Pricing Highlight Glow Effect */
.pricing-highlight {
  box-shadow: 0 0 30px rgba(255, 213, 0, 0.4), 0 0 60px rgba(255, 213, 0, 0.2);
  transform: scale(1.02);
}

/* Contact Section Styles */
.contact-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--dark-card);
  border: 1px solid rgba(255, 213, 0, 0.3);
  border-radius: 0.75rem;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-social-icon:hover {
  background: rgba(255, 213, 0, 0.1);
  border-color: var(--accent);
  transform: scale(1.1);
}

.contact-submit-btn {
  box-shadow: 0 0 20px rgba(255, 213, 0, 0.4), 0 0 40px rgba(255, 213, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.contact-submit-btn:hover {
  box-shadow: 0 0 30px rgba(255, 213, 0, 0.6), 0 0 60px rgba(255, 213, 0, 0.3);
  transform: translateY(-2px);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

.contact-submit-btn svg {
  transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
  transform: translate(3px, -3px);
}

/* Navigation CTA Button - same style as contact submit */
.nav-cta-btn {
  box-shadow: 0 0 20px rgba(255, 213, 0, 0.4), 0 0 40px rgba(255, 213, 0, 0.2);
  transition: all 0.3s ease;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* Hide nav CTA button on mobile in navigation bar, show in mobile menu */
@media (max-width: 767px) {
  nav .nav-cta-btn {
    display: none !important;
  }
  
  #mobile-menu .nav-cta-btn {
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .nav-cta-btn {
    display: flex;
  }
}

.nav-cta-btn:hover {
  box-shadow: 0 0 30px rgba(255, 213, 0, 0.6), 0 0 60px rgba(255, 213, 0, 0.3);
  transform: translateY(-2px);
}

.nav-cta-btn:active {
  transform: translateY(0);
}

button.cmplz-btn.cmplz-manage-consent.manage-consent-1 {
  font-family: 'Livvic', sans-serif;
}

/* Contact Info Card Styling */
.contact-info-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  padding: 1.5rem;
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 213, 0, 0.2);
}

/* Contact Form Container */
.contact-form-container {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-detail-link {
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.contact-detail-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

/* Testimonial Items */
.testimonial-item {
  padding: 1.5rem 0;
  background: transparent;
  border: none;
}

.testimonial-item p {
  margin-bottom: 1rem;
}

/* Process Time Badge */
.process-time-badge {
  display: none;
}

@media (min-width: 768px) {
  .process-time-badge {
    display: inline-flex;
  }
}