/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary-color);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
}

/* --- FAQ --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question:hover {
    color: var(--primary-color);
    background: #fffbf8;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    display: none; /* JS to toggle */
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* --- Partners / Logos --- */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    opacity: 0.7;
    margin-top: var(--spacing-md);
}

.partners-grid img {
    height: 40px; /* Fixed height for logos */
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partners-grid img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
    opacity: 1;
}

/* --- Who is it for --- */
.audience-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.audience-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* --- Audience Interactive List --- */
.audience-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.audience-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.audience-item.active {
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 107, 0, 0.2);
    transform: translateX(-5px);
}

.audience-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    background: white;
    transition: background 0.3s;
}

.audience-header:hover {
    background: #fffcf9;
}

.audience-icon-small {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.audience-item.active .audience-icon-small {
    background: var(--primary-color);
    color: white;
}

.audience-header h3 {
    flex-grow: 1;
    font-size: 1.1rem;
    margin: 0;
}

.audience-toggle {
    color: #ccc;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.audience-item.active .audience-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.audience-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    opacity: 0;
}

.audience-item.active .audience-body {
    max-height: 150px; /* Approximate max height */
    padding-bottom: 20px;
    opacity: 1;
    transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
}

.audience-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

:root {
    /* Color Palette */
    --primary-color: #FF6B00; /* Vibrant Orange */
    --primary-dark: #cc5600;
    --primary-light: #ff9d54;
    --secondary-color: #ffffff; /* White */
    --background-color: #f8f9fa; /* Soft Gray for backgrounds */
    --text-color: #1a1a1a;
    --text-muted: #666666;
    --accent-dark: #2d2d2d;
    --gradient-hero: linear-gradient(135deg, #FF6B00 0%, #ff8c42 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --radius-xl: 60px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.08);
    --shadow-orange: 0 10px 30px rgba(255, 107, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

body.page-loaded {
    opacity: 1;
}

/* --- Custom Scrollbar --- */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
    border: 2px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--accent-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden; /* For shine effect */
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary::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: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* --- Header --- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Desktop Grid Layout Preference for Balance */
@media (min-width: 900px) {
    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto; /* Logo, Space/Links, Actions */
        align-items: center;
        gap: 20px;
    }

    .nav-links {
        justify-self: end; /* Move links closer to the actions group */
        display: flex;
        gap: var(--spacing-md);
        margin: 0; 
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    z-index: 1001; /* Above mobile menu */
}

.logo img {
    height: 90px;
    width: auto;
}

.logo span {
    color: var(--accent-dark);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    font-size: 1rem;
}

.nav-links a:not(.btn):hover, .nav-links a:not(.btn).active {
    color: var(--primary-color);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after, .nav-links a:not(.btn).active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-actions .btn, .nav-links .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-dark);
    z-index: 1001;
}

/* Visibility Utilities */
.mobile-only { display: none !important; }
.desktop-only { display: inline-block !important; }

/* --- Responsive --- */
/* --- Responsive Mobile Menu --- */
@media (max-width: 900px) {
    .nav-container {
        display: flex; /* Back to flex for mobile header */
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%; /* Not full width for sidebar effect */
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1002;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transform: translateX(100%); /* Hidden by default */
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        left: auto; /* Override previous left:0 if it existed */
    }

    .nav-links.active {
        transform: translateX(0); /* Slide in */
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: block;
    }
    
    .desktop-only { display: none !important; }
    .mobile-only { display: inline-block !important; }
    
    .btn.mobile-only {
        width: 80%;
        text-align: center;
    }

    /* Backdrop */
    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1001; /* Behind menu, above content */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
}

/* --- Login Button --- */
.btn-login {
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 15px;
    padding: 8px 15px;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: rgba(255, 107, 0, 0.1);
}

/* --- Social Icons (Footer) --- */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* --- Footer Bottom Legal --- */
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    font-size: 0.85rem;
    color: #888;
}

.legal-links a:hover {
    color: white;
}

@media (max-width: 600px) {
    .footer-bottom .container {
        flex-direction: column-reverse;
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}




/* --- Language Dropdown --- */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 107, 0, 0.2);
}

.lang-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 140px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1002;
    border: 1px solid #f0f0f0;
}

.lang-dropdown:hover .lang-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-content a:hover {
    background: #fffcf9;
    color: var(--primary-color);
    padding-left: 25px;
}

.lang-content a.active {
    color: var(--primary-color);
    background: #fff8f0;
    font-weight: 700;
}

/* Arrow indicator */
.lang-content::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 15px;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid #f0f0f0;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 900px) {
    .lang-switcher {
        order: -1;
        margin-bottom: 15px;
    }
}

/* --- Stats Bar --- */
.stats-bar {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(to right, #f8f9fa 50%, rgba(255, 107, 0, 0.05) 50%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- Features Carousel/Grid --- */
.features-section {
    padding: var(--spacing-xl) 0;
    text-align: center;
    background: var(--background-color); /* Light gray for contrast */
}

.carousel-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 10px; /* Space for shadow */
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    background: rgba(255, 107, 0, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile specific overrides */
@media (max-width: 900px) {
    .carousel-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 30px; /* Space for scrollbar/shadow */
        gap: 20px;
    }
    
    .feature-card {
        min-width: 300px;
        scroll-snap-align: center;
    }
}

/* --- Footer --- */
footer {
    background: var(--accent-dark);
    color: white;
    padding: var(--spacing-xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h4 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--spacing-md) 0;
    text-align: center;
    color: #888;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
        background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* --- Utility Classes (Refactored from Inline Styles) --- */
.bg-white { background-color: white; }
.bg-light { background-color: var(--background-color); }
.bg-primary { background-color: var(--primary-color); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-white { color: white; }
.text-primary { color: var(--primary-color); }
.text-muted { color: var(--text-muted); }
.text-ccc { color: #ccc; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 1px; }

.py-lg { padding-top: 4rem; padding-bottom: 4rem; } 
.py-xl { padding-top: 6rem; padding-bottom: 6rem; } 
.py-xxl { padding-top: 10rem; padding-bottom: 10rem; } 

.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-xs { margin-bottom: 0.5rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 1.5rem; } 
.mb-lg { margin-bottom: 2.5rem; } 
.mb-xl { margin-bottom: 4rem; } 

.gap-md { gap: 2rem; }
.justify-start { justify-content: flex-start; }
.align-center { align-items: center; }

.block { display: block; }
.w-full { width: 100%; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.rounded-md { border-radius: var(--radius-md); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Typography */
.h2-large { font-size: 2.5rem; line-height: 1.2; }
.text-lg { font-size: 1.2rem; }
.text-sm { font-size: 0.9rem; }

/* Component Specific Utilities */
.section-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.9rem; 
    display: block;
    margin-bottom: 0.5rem;
}



.btn-white {
    background: white;
    color: var(--primary-color);
}
.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Additional Utilities --- */
.h-auto { min-height: auto !important; }
.pb-lg { padding-bottom: 4rem; } 
.pb-xl-only { padding-bottom: 6rem; }

.text-3xl { font-size: 3rem; }
.max-w-600 { max-width: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.grid-2-cols { display: grid; grid-template-columns: 1fr 1fr; }
.grid-auto-fit { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }

.card-white { 
    background: white; 
    padding: 10px; 
    border-radius: var(--radius-md); 
    box-shadow: var(--shadow-md); 
}

.p-md { padding: 1.5rem; } /* 24px approx */
.p-lg { padding: 2.5rem; } /* 40px */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }
.shadow-soft { box-shadow: var(--shadow-soft); }

.opacity-50 { opacity: 0.5; }



/* --- Dynamic Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Pulse Glow for Calls to Action */
@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.btn-primary:hover {
    animation: pulse-orange 1.5s infinite;
    transform: translateY(-3px) scale(1.02);
}

/* Fast Card Hover */
.feature-card, .price-card, .audience-item {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.27), box-shadow 0.2s ease;
}

.feature-card:hover, .price-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* --- Pricing Page --- */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.price-card {
    flex: 1 1 200px;
    max-width: 280px;
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.price-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-orange);
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    margin: 25px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}


.features-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* --- Contact Page --- */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding-bottom: 100px;
}

input, textarea, select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        gap: 20px;
    }
}

/* --- Notifications --- */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary-color);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification i {
    color: #4CAF50; /* Green check */
    font-size: 1.5rem;
}

/* --- Timeline (About Page) --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #eee;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }

.timeline-content {
    padding: 30px;
    background-color: white;
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px; /* Adjust for left items */
    background-color: white;
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px; /* Adjust for right items */
}

.year-badge {
    background: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

/* Timeline Responsive */
@media (max-width: 600px) {
    .timeline::after { left: 20px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 20px; }
    .timeline-item.left, .timeline-item.right { left: 0; text-align: left; }
    .timeline-item::after { left: 10px !important; }
}

/* --- Values Grid --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.value-card:hover { transform: translateY(-5px); }

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
/* --- Map Section --- */
.map-container {
    width: 100%;
    height: 400px;
    background-color: #eee;
    margin-top: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Helper Class for Link --- */
.link-primary {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

.link-primary:hover {
    color: var(--primary-dark);
}

/* --- Expandable Tables (Pricing Comparison & Turbines) --- */
.table-toggle-btn {
    background: white;
    border: 1px solid rgba(255, 107, 0, 0.2);
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.table-toggle-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
    border-color: var(--primary-color);
}

.table-wrapper {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    margin-top: 2rem;
    overflow-x: auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 0.95rem;
    background: white;
}

.premium-table th {
    font-weight: 700;
    color: var(--accent-dark);
    padding: 1.2rem 1rem;
    border-bottom: 2px solid #f0f0f0;
    font-size: 1.05rem;
}

.premium-table td {
    padding: 1rem;
    border-bottom: 1px solid #f5f5f5;
    color: var(--text-color);
    transition: background 0.2s, color 0.2s;
}

.premium-table tr:hover td {
    background-color: #fff9f5; /* Very subtle orange tint on row hover */
}

/* Make first column (features/names) align to the left and look distinct */
.premium-table th:first-child, 
.premium-table td:first-child {
    text-align: left;
    padding-left: 1.5rem;
    font-weight: 600;
    color: var(--accent-dark);
}

/* Category header rows */
.premium-table tr.category-row td {
    background-color: #fafafa;
    text-align: left;
    padding: 1rem 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid rgba(255, 107, 0, 0.1);
    border-top: 1px solid #eee;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.premium-table tr.category-row:hover td {
    background-color: #fafafa; /* Disable hover color change for category headers */
}

/* Soft colors for checkmarks and crossmarks */
.premium-table .fa-check {
    color: #2ec4b6 !important; /* Premium teal/green */
    font-size: 1.1rem;
}

.premium-table .fa-xmark {
    color: #ff3366 !important; /* Soft rose red */
    font-size: 1.1rem;
    opacity: 0.6;
}
