/* Design System */
:root {
    --primary-color: #e11d48; /* Vibrant Red */
    --secondary-color: #1e293b; /* Deep Navy */
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.placeholder-block {
    background-color: #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 200px;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.section-title span {
    color: var(--primary-color);
}

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

/* Glassmorphism Classes */
.glass-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #be123c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-primary);
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
}

header.scrolled {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo img {
    height: 50px;
}

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

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-primary);
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Nav Mega Dropdown Logic */
.mega-dropdown {
    position: static;
}

#header {
    position: fixed; /* Must be positioned for static mega menu full width reference if needed, or we just leave relative */
}

.mega-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: max-content;
    max-width: 900px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 30px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    z-index: 1001;
    border: 1px solid var(--glass-border);
}

.dropdown:hover .mega-menu {
    display: grid;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Standard Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    padding: 12px 0;
    display: none;
    z-index: 1001;
    border: 1px solid var(--glass-border);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu li a {
    padding: 10px 24px;
    display: block;
    width: 100%;
    font-size: 0.95rem;
    color: var(--text-secondary) !important;
    font-weight: 400 !important;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color) !important;
    padding-left: 28px;
}

.mega-column h4 {
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 8px;
}

.mega-column a {
    display: block;
    padding: 6px 0;
    border-radius: 6px;
    font-size: 0.95rem;
    color: var(--text-secondary) !important;
    transition: var(--transition);
}

.mega-column a:hover {
    color: var(--primary-color) !important;
    padding-left: 8px;
    background: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 60px);
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(225, 29, 72, 0.05) 0%, rgba(255, 255, 255, 1) 90.2%);
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(225, 29, 72, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--secondary-color);
    font-family: 'Outfit', sans-serif;
}

.stat-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hero-image {
    position: relative;
    padding: 20px;
}

.main-hero-img {
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    background-color: #e2e8f0; /* placeholder bg */
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    padding: 16px 24px;
    background: var(--bg-white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

/* Trust Bar */
.trust-bar {
    padding: 30px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 210px;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(225, 29, 72, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}
/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 48px;
    text-align: left;
    transition: var(--transition);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    background: white;
    border-color: var(--primary-color);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.learn-more {
    font-weight: 600;
    color: var(--primary-color);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-stack {
    position: relative;
    height: 500px;
}

.img-1 {
    width: 80%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border: 8px solid var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.check-list {
    margin: 32px 0;
}

.check-list li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Call to Action Section */
.cta-box {
    padding: 80px 48px;
    background: radial-gradient(circle at top right, rgba(225, 29, 72, 0.1), rgba(255, 255, 255, 0.9));
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Contact Form Body */

.quote-header {
    text-align: center;
    margin-bottom: 48px;
}

.quote-header h2 {
    font-size: 2.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: span 2;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

input, select, textarea {
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding-top: 80px;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #94a3b8;
    margin-bottom: 24px;
}

.footer h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: white;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #94a3b8;
    transition: color 0.2s ease, padding-left 0.2s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.footer-contact p {
    margin-bottom: 12px;
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 32px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 24px;
}

/* Responsive Styles */
/* Responsive Styles - Mobile Menu Logic */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: white;
    padding: 60px;
    z-index: 999;
}

.mobile-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Form Success */
.success-message {
    animation: fadeIn 0.6s ease-out;
}

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

/* Floating AI Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: none; /* hidden by default */
    flex-direction: column;
    overflow: hidden;
    animation: slideInUp 0.4s ease-out;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    padding: 20px;
    background: var(--secondary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
}

.chat-close {
    cursor: pointer;
    font-size: 1.5rem;
}

.chat-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-btn {
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.quick-btn:hover {
    background: var(--primary-color);
    color: white;
}

.chat-message {
    padding: 10px 15px;
    border-radius: 15px;
    max-width: 80%;
    font-size: 0.9rem;
}

.chat-footer input {
    flex: 1;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

/* Animations */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sticky Request Quote */
.sticky-quote-btn {
    position: fixed;
    top: 100px; /* Below the header */
    right: 0;
    z-index: 1000;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 50px 0 0 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: -4px 4px 15px rgba(225, 29, 72, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.sticky-quote-btn:hover {
    background-color: #be123c;
    transform: translateX(-5px);
    box-shadow: -6px 6px 20px rgba(225, 29, 72, 0.5);
}

.sticky-quote-btn svg {
    transition: transform 0.3s;
}

.sticky-quote-btn:hover svg {
    transform: translateX(3px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px; /* Above chatbot */
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
    }

    .whatsapp-float {
        bottom: 100px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .sticky-quote-btn {
        top: auto;
        bottom: 170px; /* Above whatsapp */
        right: 0;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        border-radius: 8px;
    }

    .mega-dropdown:hover .mega-menu {
        display: grid;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Hero mobile */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    /* About grid mobile */
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Trust bar mobile */
    .trust-grid {
        flex-direction: column;
        gap: 16px;
    }

    .trust-item {
        min-width: unset;
    }

    /* Mobile nav toggle show */
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }
}
/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item details {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 24px;
    cursor: pointer;
}

.faq-item summary {
    list-style: none;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--secondary-color);
    position: relative;
    padding-right: 40px;
    font-family: 'Outfit', sans-serif;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item details[open] {
    background: white;
    border-color: var(--primary-color);
}

.faq-item details[open] summary::after {
    content: '−';
}

.faq-content {
    padding-top: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-content ul {
    margin-top: 12px;
    padding-left: 20px;
}

.faq-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.faq-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Category Header for FAQ */
.faq-category-title {
    font-size: 1.8rem;
    margin: 60px 0 30px;
    color: var(--secondary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    text-align: left;
}
