:root {
    /* Colors */
    --color-primary: #1A2E4A;
    --color-accent: #F5A623;
    --color-accent-hover: #D98C0B;
    --color-dark: #0D1B2A;
    --color-light: #F4F6F9;
    --color-white: #FFFFFF;
    --color-text-primary: #1A2E4A;
    --color-text-secondary: #6B7A8D;
    --color-text-light: #E0E6ED;
    --color-card-dark: #16253B;
    --color-success: #25D366;
    --color-success-hover: #1ebd59;

    /* Fonts */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Outfit', sans-serif;

    /* Animations and Layout */
    --transition-speed: 0.3s;
    --border-radius-sm: 10px;
    --border-radius-md: 18px;
    --border-radius-lg: 28px;
    --max-width: 1200px;
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
    transition: all var(--transition-speed) ease;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background-color: var(--color-accent);
    z-index: 1002;
    transition: width 0.1s linear;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.text-center {
    text-align: center;
}

.badge-mono {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: bold;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        margin-bottom: 40px;
    }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button Component */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 166, 35, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-success);
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background-color: var(--color-success-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-dark {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.btn-dark:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 27, 42, 0.3);
}

/* Header / Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    background-color: transparent;
    padding: 24px 0;
}

.header.scrolled {
    background-color: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
}

.logo svg {
    fill: var(--color-accent);
    width: 32px;
    height: 32px;
    transition: transform 0.5s ease;
}

.logo:hover svg {
    transform: rotate(45deg);
}

.logo-text span {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

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

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

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

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.header.scrolled .nav-link:hover {
    color: var(--color-white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-speed) ease;
}

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-dark);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-actions {
        display: none; /* Hide top CTA on mobile navbar */
    }

    /* Hamburger X State */
    .hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: 
        radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(26, 46, 74, 0.5) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: var(--color-white);
    padding: 180px 0 100px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 85vh;
}

/* Technical Grid Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at center, transparent 20%, var(--color-dark) 90%),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100%, 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.15;
    background: linear-gradient(135deg, #FFFFFF 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    animation: fadeInUp 1.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--color-accent);
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .trust-badge {
        width: fit-content;
    }
}

/* Services Section */
.services {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 48px;
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.04);
    border: 1px solid rgba(26, 46, 74, 0.08);
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(13, 27, 42, 0.1);
    border-color: rgba(245, 166, 35, 0.3);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: var(--color-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all var(--transition-speed) ease;
}

.service-icon-wrapper svg {
    width: 36px;
    height: 36px;
    fill: var(--color-primary);
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-primary);
}

.service-card:hover .service-icon-wrapper svg {
    fill: var(--color-accent);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
}

@media (max-width: 576px) {
    .service-list {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 30px;
    }
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.service-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: var(--color-accent);
}

.services-cta {
    display: flex;
    justify-content: center;
}

/* Why Choose Us Section */
.why-us {
    background-color: var(--color-primary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(180deg, var(--color-dark) 0%, transparent 100%),
        radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.why-us .section-title {
    color: var(--color-white);
}

.why-us .section-subtitle {
    color: var(--color-text-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.why-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 36px;
    transition: all var(--transition-speed) cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    transition: width var(--transition-speed) ease;
}

.why-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.1);
    border-color: rgba(245, 166, 35, 0.2);
}

.why-card:hover::before {
    width: 100%;
}

.why-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(245, 166, 35, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-accent);
}

.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Who We Serve Section */
.clients {
    background-color: var(--color-light);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.client-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    border: 1px solid rgba(13, 27, 42, 0.03);
    box-shadow: 0 4px 15px rgba(13, 27, 42, 0.02);
    transition: all var(--transition-speed) ease;
}

.client-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) ease;
}

.client-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--color-primary);
    transition: all var(--transition-speed) ease;
}

.client-item span {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: all var(--transition-speed) ease;
}

.client-item:hover {
    transform: translateY(-5px);
    background-color: var(--color-white);
    box-shadow: 0 15px 30px rgba(13, 27, 42, 0.08);
}

.client-item:hover .client-icon {
    background-color: var(--color-accent);
}

.client-item:hover .client-icon svg {
    fill: var(--color-dark);
    transform: scale(1.1);
}

.client-item:hover span {
    color: var(--color-accent-hover);
}

/* Commitment Section */
.commitment {
    background-color: var(--color-white);
}

.commitment-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .commitment-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.commitment-content h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.commitment-content p {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.commitment-content .btn {
    padding: 16px 28px;
}

.commitment-stats-card {
    background-color: var(--color-primary);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    color: var(--color-white);
    box-shadow: 0 20px 40px rgba(13, 27, 42, 0.15);
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.commitment-stats-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

@media (max-width: 576px) {
    .commitment-stats-card {
        padding: 30px;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--color-accent);
    line-height: 1;
    min-width: 140px;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-light);
    line-height: 1.4;
}

@media (max-width: 480px) {
    .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .stat-number {
        font-size: 2.75rem;
        min-width: auto;
    }
}

/* Final CTA Banner */
.final-cta {
    background: linear-gradient(135deg, var(--color-accent) 0%, #E08E0B 100%);
    color: var(--color-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at center, transparent 30%, rgba(13, 27, 42, 0.05) 90%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: rgba(13, 27, 42, 0.85);
    font-weight: 500;
}

.final-cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.final-cta-microcopy {
    font-size: 0.9rem;
    color: rgba(13, 27, 42, 0.7);
    font-weight: 500;
}

@media (max-width: 768px) {
    .final-cta h2 {
        font-size: 2.25rem;
    }
    .final-cta p {
        font-size: 1.1rem;
    }
    .final-cta-btns {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
}

/* FAQ Section */
.faq {
    background-color: var(--color-white);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(13, 27, 42, 0.08);
    border-radius: var(--border-radius-sm);
    background-color: var(--color-white);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
}

.faq-header {
    width: 100%;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
    gap: 16px;
}

.faq-icon-wrapper {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-speed) ease;
}

.faq-icon-wrapper svg {
    width: 14px;
    height: 14px;
    fill: var(--color-primary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
    padding: 0 24px 24px 24px;
    color: var(--color-text-secondary);
    font-size: 0.975rem;
    line-height: 1.6;
}

/* FAQ Active States */
.faq-item.active {
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 10px 20px rgba(13, 27, 42, 0.04);
}

.faq-item.active .faq-header {
    color: var(--color-accent-hover);
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon-wrapper svg {
    fill: var(--color-accent);
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    color: var(--color-white);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-brand p {
    color: var(--color-text-light);
    margin: 20px 0 24px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    display: inline-block;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent);
    flex-shrink: 0;
}

.footer-contact-item a:hover {
    color: var(--color-white);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-success);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all var(--transition-speed) ease;
    animation: pulse 2s infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
}

.whatsapp-float:hover {
    background-color: var(--color-success-hover);
    transform: scale(1.1);
}

/* Floating Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile */
    }
}

/* Clickable Cards & Modal Trigger */
.clickable-card {
    cursor: pointer;
}

.service-details-trigger {
    margin-top: auto;
    padding-top: 24px;
    font-weight: 700;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-details-trigger svg {
    transition: transform var(--transition-speed) ease;
    fill: var(--color-accent);
}

.service-card:hover .service-details-trigger svg {
    transform: translateX(6px);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.modal-container {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 960px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(13, 27, 42, 0.08);
    box-shadow: 0 30px 60px rgba(13, 27, 42, 0.25);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2.25rem;
    color: var(--color-primary);
    line-height: 1;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.modal-close:hover {
    background-color: var(--color-light);
    color: var(--color-accent);
}

/* Modal Body */
.modal-body {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    padding: 48px;
}

@media (max-width: 868px) {
    .modal-body {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 30px;
    }
}

/* Carousel Section */
.modal-carousel-section {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 380px;
    background-color: var(--color-light);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

@media (max-width: 576px) {
    .modal-carousel-section {
        height: 260px;
    }
}

.carousel-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: grab;
}

.carousel-viewport:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    user-select: none;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* Carousel Nav Controls */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(13, 27, 42, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

.carousel-nav:hover {
    background-color: rgba(13, 27, 42, 0.9);
    transform: translateY(-50%) scale(1.08);
}

.carousel-nav.prev {
    left: 16px;
}

.carousel-nav.next {
    right: 16px;
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background-color: var(--color-accent);
    width: 20px;
    border-radius: 10px;
}

/* Modal Content Section */
.modal-content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-service-title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.modal-service-desc {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-features h4 {
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.modal-features ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.modal-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.modal-features li svg {
    width: 16px;
    height: 16px;
    fill: var(--color-accent);
    flex-shrink: 0;
}

.modal-cta-wrapper .btn {
    width: 100%;
    padding: 16px 28px;
}

/* Schedule Modal Customizations */
.modal-container.modal-small {
    max-width: 550px;
}

.email-modal-body {
    padding: 40px;
}

@media (max-width: 576px) {
    .email-modal-body {
        padding: 30px 20px;
    }
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    text-align: left;
}

.schedule-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(13, 27, 42, 0.12);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-dark);
    background-color: var(--color-white);
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.w-100 {
    width: 100%;
}

/* Success message styling */
.schedule-success-msg {
    text-align: center;
    padding: 30px 0 10px 0;
    animation: fadeIn 0.3s ease-out;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-success);
    color: var(--color-white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* Ensure secondary buttons are visible on light backgrounds in modals */
.modal-container .btn-secondary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: transparent;
}

.modal-container .btn-secondary:hover {
    background-color: var(--color-light);
    color: var(--color-accent);
    border-color: var(--color-accent);
}


