/* CSS Variables */
:root {
    --primary-blue: #0284c7;
    /* Cooling blue */
    --primary-blue-dark: #0369a1;
    --primary-blue-light: #e0f2fe;

    --action-green: #25D366;
    /* WhatsApp green */
    --action-green-hover: #128C7E;

    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-white: #ffffff;

    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --bg-alt: #f1f5f9;

    --border-color: #e2e8f0;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-card: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--text-white) !important;
}

.text-blue {
    color: var(--primary-blue) !important;
}

.text-green {
    color: var(--action-green) !important;
}

.text-muted {
    color: var(--text-muted);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-blue {
    background-color: var(--primary-blue-dark);
    color: white;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-2 {
    gap: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--action-green);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
}

.btn-primary:hover {
    background-color: var(--action-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue-light);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.btn-link:hover {
    color: var(--primary-blue-dark);
    gap: 0.75rem;
}

.icon-sm {
    width: 20px;
    height: 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
    transition: var(--transition);
}

.navbar.scrolled .nav-container {
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.logo-icon {
    width: 28px;
    height: 28px;
}

.logo-text span {
    color: var(--action-green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .hero {
        min-height: 85vh;
        /* 80-90vh as requested */
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

@media (min-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.hero .subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 767px) {
    .hero-container {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
        width: 100%;
    }

    .hero .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        font-size: 2.125rem;
    }
}

.hero-trust-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.6);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
}

.trust-item .text-green {
    width: 18px;
    height: 18px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-image-wrapper {
        justify-content: flex-end;
    }
}

.hero-image-composition {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.hero-img-main {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    display: block;
}

@media (min-width: 768px) and (max-width: 991px) {
    .hero-img-main {
        max-width: 350px;
    }
}

.floating-badge-new {
    position: absolute;
    bottom: 5%;
    left: -10%;
    background-color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3.5s ease-in-out infinite;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .floating-badge-new {
        left: 5%;
        bottom: -5%;
        padding: 0.75rem 1rem;
    }
}

.badge-icon-bg {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--primary-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-animate {
    transition: all 0.3s ease;
}

.btn-animate:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

@media (max-width: 767px) {
    .hero-actions .btn-animate {
        width: 100%;
        justify-content: center;
    }
}

.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    color: #0c243e;
}

/* Feature Cards (Why Us) */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--bg-alt);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: var(--primary-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper i {
    color: #2264ec !important;
}

/* Logo Styling */
.site-logo {
    height: 44px;
    width: auto;
}

.footer-logo .site-logo {
    height: 54px;
    filter: brightness(0) invert(1);
}

/* Professional Service Slider (Vertical Tab Layout) */
.services-vertical-slider {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

@media (min-width: 992px) {
    .services-vertical-slider {
        flex-direction: row;
        min-height: auto;
    }
}

.services-tabs {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    scrollbar-width: none;
}

.services-tabs::-webkit-scrollbar {
    display: none;
}

@media (min-width: 992px) {
    .services-tabs {
        flex-direction: column;
        width: 320px;
        min-width: 320px;
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        overflow-y: auto;
    }
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

@media (min-width: 992px) {
    .service-tab {
        white-space: normal;
    }
}

.service-tab i {
    width: 20px;
    height: 20px;
    color: #2264ec;
}

.service-tab:hover {
    background-color: rgba(34, 100, 236, 0.05);
    color: #0c243e;
}

.service-tab.active {
    background-color: white;
    color: #0c243e;
}

.service-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0c243e;
}

@media (min-width: 992px) {
    .service-tab.active::after {
        bottom: 0;
        left: auto;
        right: 0;
        width: 3px;
        height: 100%;
    }
}

.services-content-wrapper {
    flex-grow: 1;
    position: relative;
    padding: 1.5rem;
    /* Reduced padding for mobile */
    background-color: white;
}

@media (min-width: 992px) {
    .services-content-wrapper {
        padding: 3rem;
    }
}

.service-pane {
    display: none;
    animation: fadeInPane 0.4s ease-out forwards;
}

.service-pane.active {
    display: flex;
    flex-direction: column-reverse;
    /* Put animation on top for mobile uniqueness */
    gap: 2rem;
    /* Reduced gap */
}

@media (min-width: 992px) {
    .service-pane.active {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
}

@keyframes fadeInPane {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-pane-text {
    flex: 1;
}

.service-pane-animation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    /* Smaller height on mobile */
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {
    .service-pane-animation {
        min-height: 280px;
    }
}

.service-bg-blue {
    background: linear-gradient(135deg, rgba(34, 100, 236, 0.05), rgba(34, 100, 236, 0.15));
}

.service-bg-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.15));
}

.service-bg-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(34, 197, 94, 0.15));
}

.service-bg-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(249, 115, 22, 0.15));
}

.service-bg-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), rgba(168, 85, 247, 0.15));
}

.pane-icon {
    width: 80px;
    /* Smaller icon on mobile */
    height: 80px;
}

@media (min-width: 992px) {
    .pane-icon {
        width: 120px;
        height: 120px;
    }
}

/* Animations */
@keyframes paneBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes paneSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes panePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.anim-bounce {
    animation: paneBounce 3s ease-in-out infinite;
}

.anim-spin {
    animation: paneSpin 8s linear infinite;
}

.anim-pulse {
    animation: panePulse 2s ease-in-out infinite;
}

.service-pro-icon-bg {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-pro-icon-bg i {
    color: #2264ec !important;
}

.text-blue,
.text-red,
.text-green,
.text-orange,
.text-purple {
    color: #2264ec !important;
}

.bg-blue-light,
.bg-red-light,
.bg-green-light,
.bg-orange-light,
.bg-purple-light {
    background-color: var(--primary-blue-light);
}

.service-pro-header h3 {
    font-size: 1.25rem;
    color: #0c243e;
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2264ec;
    margin-bottom: 0.5rem;
}

.service-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.service-time i {
    width: 16px;
    height: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

.feat-icon {
    width: 18px;
    height: 18px;
    color: #2264ec;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Area Section */
.area {
    background-color: #0c243e;
    background-image: none;
    color: white;
    /* Enforce white text */
}

.area h2,
.area p {
    color: white !important;
}

.area-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Testimonials */
.testimonial-slider-container {
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.testimonial-slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: center;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 1.33rem);
    }
}

.stars {
    color: #fbbf24;
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 16px;
    height: 16px;
}

.star.filled {
    fill: currentColor;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--primary-blue-light);
    color: var(--primary-blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.bg-alt {
    background-color: #fee2e2;
    color: #b91c1c;
}

.bg-alt2 {
    background-color: #dcfce7;
    color: #15803d;
}

.reviewer strong {
    display: block;
    line-height: 1.2;
}

.reviewer span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Bottom CTA */
.bottom-cta {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.bottom-cta h2 {
    font-size: 2rem;
}

.bottom-cta p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1.5fr;
    }

    .hero-image-placeholder {
        aspect-ratio: auto;
        min-height: 400px;
        height: 100%;
    }
}

.footer-logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    color: var(--primary-blue);
}

.footer-links-group h3,
.footer-contact h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links-group ul li,
.footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-links-group a:hover {
    color: white;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-list i {
    width: 20px;
    height: 20px;
    color: var(--primary-blue-light);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

/* FAB WhatsApp */
.fab-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--action-green);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.fab-wa-icon {
    width: 32px;
    height: 32px;
}

.fab-wa:hover {
    transform: scale(1.1);
    background-color: var(--action-green-hover);
    animation: none;
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    background-color: white;
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.fab-wa:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Nav */
@media (max-width: 767px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 5rem;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .navbar.scrolled .nav-links {
        top: 4rem;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-btn {
        width: 100%;
    }
}