html {
    scroll-behavior: smooth;
}




@keyframes blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    75% {
        transform: translate(50px, 50px) scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

.animate-spin-slow {
    animation: spin-slow 20s linear infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}


.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

#navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

#navbar.scrolled .nav-item {
    color: #334155;
}

#navbar.scrolled .nav-item:hover {
    color: #00BFB4;
    background: rgba(0, 191, 180, 0.05);
}

#navbar.scrolled #hamburger {
    color: #334155;
    background-color: #f1f5f9;
}

#navbar.scrolled #nav-logo {
    filter: none;
}


.logo-container {
    position: relative;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00BFB4 0%, #00D9CC 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 191, 180, 0.3);
    transition: all 0.3s ease;
}

.logo-container:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 191, 180, 0.5);
}


.nav-link-modern {
    position: relative;
    padding: 0.75rem 1.25rem;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #00BFB4, #00D9CC);
    transition: transform 0.3s ease;
}

.nav-link-modern:hover {
    color: #00D9CC;
    background: rgba(0, 191, 180, 0.1);
}

.nav-link-modern:hover::before {
    transform: translateX(-50%) scaleX(1);
}


.nav-cta-primary {
    background: linear-gradient(135deg, #00BFB4 0%, #00D9CC 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 180, 0.3);
}

.nav-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 191, 180, 0.5);
}

.nav-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}


.mobile-menu-btn {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}


.mobile-menu {
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 191, 180, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 40;
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: white;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-link:hover {
    background: rgba(0, 191, 180, 0.15);
    color: #00D9CC;
    transform: translateX(5px);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-primary {
    background: linear-gradient(135deg, #00BFB4 0%, #00D9CC 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 191, 180, 0.3);
}

.mobile-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #00BFB4;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


.btn-primary {
    background: linear-gradient(135deg, #00BFB4 0%, #00D9CC 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 191, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 180, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 0.75rem 2rem;
    border: 2px solid white;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #00BFB4;
    transform: translateY(-2px);
}


.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00BFB4, #00D9CC);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 191, 180, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00BFB4 0%, #00D9CC 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}


.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 191, 180, 0.25);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #00BFB4;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}


.category-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    color: #1a1a2e;
    border: none;
    cursor: pointer;
}

.category-btn.active {
    background: linear-gradient(135deg, #00BFB4 0%, #00D9CC 100%);
    color: white;
}

.category-btn:hover:not(.active) {
    background: #f3f4f6;
}


.process-step {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: white;
    color: #00BFB4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.process-step:hover .process-icon {
    background: white;
    color: #00BFB4;
    transform: scale(1.1) rotate(360deg);
}


.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.testimonial-card:hover {
    border-left-color: #00BFB4;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 191, 180, 0.15);
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 2px 2px 25px rgba(37, 211, 102, 0.5);
}


.scroll-indicator {
    display: inline-block;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateY(5px);
}


.counter {
    transition: all 0.3s ease;
}


input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #00BFB4;
    box-shadow: 0 0 0 3px rgba(0, 191, 180, 0.1);
}


.gradient-text {
    background: linear-gradient(135deg, #00BFB4 0%, #00D9CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    border: 3px solid rgba(0, 191, 180, 0.3);
    border-top-color: #00BFB4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}


.image-hover-zoom {
    overflow: hidden;
    border-radius: 1rem;
}

.image-hover-zoom img {
    transition: transform 0.5s ease;
}

.image-hover-zoom:hover img {
    transform: scale(1.1) rotate(2deg);
}


.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* ===== MOBILE FIX PACK ===== */

/* Prevent horizontal scroll globally */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Better mobile typography */
@media (max-width: 640px) {
  h1 {
    font-size: 2rem !important;
    line-height: 2.4rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
    line-height: 2.2rem !important;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6rem;
  }
}

/* Product card fix */
.product-card {
  max-width: 100%;
}

/* Image ratio fix */
.product-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 1rem;
}

/* Disable heavy visuals on mobile */
@media (max-width: 768px) {
  .animate-blob,
  .floating,
  .absolute.-top-6,
  .absolute.-bottom-4 {
    display: none;
  }
}

/* WhatsApp button mobile safe */
.whatsapp-float {
  right: 16px;
  bottom: 16px;
  z-index: 40;
}

::selection {
    background: #00BFB4;
    color: white;
}

::-moz-selection {
    background: #00BFB4;
    color: white;
}


@media (max-width: 768px) {
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;

    /* keep it steady */
    animation: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}


.whatsapp-float i {
    line-height: 1;
}


/* Shine Effect on Hover */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.shine:hover::before {
    left: 100%;
}

/* Card Flip Animation */
@keyframes cardFlip {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(180deg);
    }
}

/* Glow Effect */
.glow {
    box-shadow: 0 0 20px rgba(0, 191, 180, 0.5);
}

.glow:hover {
    box-shadow: 0 0 30px rgba(0, 191, 180, 0.8);
}

/* Text Shadow Effects */
.text-shadow-teal {
    text-shadow: 2px 2px 4px rgba(0, 191, 180, 0.3);
}

.text-shadow-dark {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Border Animation */
.border-animate {
    position: relative;
}

.border-animate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #00BFB4;
    border-radius: 1rem;
    animation: borderGlow 2s infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Prevent transition on page load */
.preload * {
    transition: none !important;
}

/* ========================================
   HERO SECTION - PREMIUM REDESIGN
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #0f172a;
    /* Darker base for better contrast */
    padding-top: 5rem;
    /* Ensure content isn't hidden behind fixed nav */
}

/* Premium Gradient Background */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 191, 180, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(0, 217, 204, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 155, 146, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.1) 0%, transparent 40%);
    filter: blur(60px);
    z-index: 1;
    animation: pulseGradient 15s ease-in-out infinite alternate;
}

@keyframes pulseGradient {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* Floating Shapes - More Subtle & Organic */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -10%;
    animation: float 25s infinite linear;
}

.shape-2 {
    width: 350px;
    height: 350px;
    top: 40%;
    right: -5%;
    animation: float 20s infinite linear reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: -5%;
    left: 20%;
    animation: float 22s infinite ease-in-out;
}

.shape-4 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 20%;
    animation: float 18s infinite ease-in-out reverse;
}

/* Hero Content Wrapper */
.hero-content {
    position: relative;
    z-index: 10;
    padding-right: 2rem;
}

/* Premium Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    /* Darker glass feel */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 191, 180, 0.4);
}

.hero-badge i {
    color: #ffd700;
    /* Gold */
}

/* Hero Title - Elegant & Bold */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(90deg, #00BFB4, #7dd3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Caveat', cursive;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.2;
    margin-top: 0.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Subtitle - More Readable */
.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    /* Lighter slate for readability on dark */
    margin-bottom: 2.5rem;
    max-width: 580px;
    font-weight: 300;
}

/* CTA Buttons - Modern & Interactive */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #00BFB4 0%, #009B92 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 191, 180, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 191, 180, 0.5);
    background: linear-gradient(135deg, #00D9CC 0%, #00BFB4 100%);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Features List - Clean & Aligned */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-feature-item i {
    color: #00BFB4;
    font-size: 1.1rem;
    background: rgba(0, 191, 180, 0.15);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 191, 180, 0.3);
}

/* Hero Visual - Depth & Layers */
.hero-visual {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
}

/* Main Image Card - 3D Effect */
.hero-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-image-card:hover .hero-main-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
    pointer-events: none;
}

/* Floating Stat Cards - Glassmorphism */
.hero-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInScale 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
    min-width: 180px;
}

.hero-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.4);
    background: #ffffff;
}

.stat-card-1 {
    top: 15%;
    left: -12%;
    animation-delay: 0.6s;
}

.stat-card-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: 0.8s;
}

.stat-card-3 {
    bottom: 5%;
    left: -5%;
    animation-delay: 1s;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00BFB4 0%, #009B92 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px -4px rgba(0, 191, 180, 0.4);
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.scroll-down-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.scroll-icon {
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Handling */
@media (max-width: 1024px) {
    .stat-card-1 {
        left: -5%;
    }

    .stat-card-2 {
        right: -5%;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 7rem;
        padding-bottom: 4rem;
        height: auto;
        min-height: auto;
        display: block;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 4rem;
    }

    .hero-badge {
        margin: 0 auto 1.5rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-cta-group {
        justify-content: center;
        gap: 0.75rem;
    }

    .hero-features {
        justify-content: center;
        border-top: none;
        padding-top: 0;
    }

    .hero-visual {
        padding: 0 1rem;
        margin-top: 2rem;
        display: block;
    }

    .hero-image-card {
        max-width: 100%;
        margin: 0 auto;
        transform: none;
        /* Disable 3D tilt on mobile */
    }

    .hero-stat-card {
        position: relative;
        inset: auto !important;
        margin: 1rem auto 0;
        width: 100%;
        max-width: 320px;
        justify-content: flex-start;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        opacity: 0.3;
    }
}

/* ==================== FOOTER HOVER EFFECTS ==================== */

/* Footer Link Hover Effects */
footer a {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

/* Underline Animation on Hover */
footer ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00BFB4, #00D9CC);
    transition: width 0.3s ease;
}

footer ul li a:hover::after {
    width: 100%;
}

/* Link Hover Effect */
footer ul li a:hover {
    color: #00BFB4 !important;
    transform: translateX(4px);
}

/* Social Icon Hover Effects */
footer .fab {
    transition: transform 0.3s ease;
}

footer a:has(.fab):hover .fab {
    transform: scale(1.2) rotate(5deg);
}

footer a:has(.fab):hover {
    background: linear-gradient(135deg, #00BFB4, #00D9CC) !important;
    box-shadow: 0 4px 15px rgba(0, 191, 180, 0.4);
}

/* Contact Info Hover */
footer a[href^="tel"]:hover,
footer a[href^="mailto"]:hover {
    color: #00BFB4 !important;
    transform: translateX(4px);
}

/* Logo Hover Effect */
footer img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Bottom Links Hover */
footer .border-t a:hover {
    color: #00BFB4 !important;
    text-decoration: underline;
    text-underline-offset: 4px;
}