@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --primary: #1e293b;        /* Slate 800 */
    --primary-dark: #0f172a;   /* Slate 900 */
    --primary-light: #334155;  /* Slate 700 */
    --accent: #f97316;         /* Refined industrial orange */
    --accent-hover: #ea580c;   /* Darker orange */
    --accent-glow: rgba(249, 115, 22, 0.15);
    --accent-light: #fff7ed;   /* Warm soft orange bg */
    --success: #10b981;        /* Emerald 500 */
    --text-dark: #0f172a;
    --text-main: #334155;      /* Slate 700 for high readability */
    --text-muted: #64748b;     /* Slate 500 */
    --text-light: #f8fafc;     /* Slate 50 */
    --bg-main: #f8fafc;        /* Slate 50 */
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    
    /* Layout & Styling details */
    --font-sans: 'Outfit', sans-serif;
    --border-color: #e2e8f0;    /* Slate 200 */
    --border-light: #f1f5f9;    /* Slate 100 */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 12px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
    --shadow-accent: 0 10px 20px rgba(249, 115, 22, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s 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;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

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

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* ==========================================================================
   UTILITY CLASSES & GRID
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.section {
    padding: 7rem 0;
    position: relative;
}

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

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.font-bold { font-weight: 700; }

.section-title-wrapper {
    max-width: 700px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.section-tag {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    background-color: var(--accent-light);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(249, 115, 22, 0.3);
}

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

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

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: var(--accent-light);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 2rem;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-info-item svg {
    color: var(--accent);
}

.top-social {
    display: flex;
    gap: 1rem;
}

@media (max-width: 992px) {
    .top-info {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
}

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: white;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    box-shadow: var(--shadow-accent);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-link.active {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-phone {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.nav-phone-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-phone-number {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 1.75rem;
    height: 1.25rem;
    cursor: pointer;
    z-index: 110;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .nav-actions .btn {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    /* Mobile Menu Drawer */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 6rem 2.5rem 3rem 2.5rem;
        gap: 1.75rem;
        z-index: 105;
        animation: slideInRight 0.3s ease;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    background-color: var(--primary-dark);
    color: var(--text-light);
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background-image: radial-gradient(circle at 10% 20%, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.9) 90%), url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-main), transparent);
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #fdba74;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent);
    display: inline-block;
    box-shadow: 0 0 10px var(--accent);
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--accent);
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.hero-feat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-feat-val {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.hero-feat-lbl {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Card Flotante Hero */
.hero-card {
    background: rgba(30, 41, 59, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    margin-left: auto;
}

.hero-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-card-title svg {
    color: var(--accent);
}

.hero-card-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-card-item:last-child {
    margin-bottom: 0;
}

.hero-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.25rem;
}

.hero-card-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.2rem;
}

.hero-card-info p {
    font-size: 0.85rem;
    color: #94a3b8;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-card {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cat-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-fast);
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.cat-card:hover::before {
    transform: scaleX(1);
}

.cat-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: #fff7ed;
    color: var(--accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.cat-card:hover .cat-icon-wrapper {
    background-color: var(--accent);
    color: white;
    box-shadow: var(--shadow-accent);
}

.cat-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.cat-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.cat-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-link svg {
    transition: var(--transition-fast);
}

.cat-card:hover .cat-link svg {
    transform: translateX(5px);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: center;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.services-panel {
    background-color: var(--primary-dark);
    color: white;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-image: radial-gradient(circle at top right, rgba(249, 115, 22, 0.25) 0%, transparent 70%);
}

.services-panel h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.services-panel p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.services-panel-list {
    margin-bottom: 2.5rem;
}

.services-panel-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.services-panel-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

/* ==========================================================================
   QUOTE / FORM SECTION
   ========================================================================== */
.quote-section {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.quote-info-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.quote-info-title span {
    color: var(--accent);
}

.quote-info-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.quote-steps {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.quote-step-item {
    display: flex;
    gap: 1.25rem;
}

.quote-step-num {
    width: 2.75rem;
    height: 2.75rem;
    background-color: var(--accent-light);
    color: var(--accent);
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quote-step-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.quote-step-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.quote-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.quote-form-group {
    margin-bottom: 1.5rem;
}

.quote-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.quote-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.quote-form-input, .quote-form-textarea, .quote-form-select {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-weight: 400;
    transition: var(--transition-fast);
}

.quote-form-input:focus, .quote-form-textarea:focus, .quote-form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

.quote-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.quote-form-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-privacy-note {
    font-size: 0.775rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

.form-privacy-note a {
    color: var(--accent);
    text-decoration: underline;
}

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

@media (max-width: 576px) {
    .quote-form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .quote-card {
        padding: 1.75rem;
    }
}

/* ==========================================================================
   WHY CHOOSE US & TIMELINE
   ========================================================================== */
.why-section {
    background-color: var(--bg-main);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.why-stat-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-fast);
}

.why-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-stat-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.why-stat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-point-item {
    display: flex;
    gap: 1.25rem;
}

.why-point-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.why-point-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.why-point-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

@media (max-width: 576px) {
    .why-stats {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.faq-header:hover {
    background-color: var(--accent-light);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 400;
    transition: var(--transition-fast);
    color: var(--text-muted);
}

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

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-content {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 0.95rem;
    color: var(--text-main);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-body {
    max-height: 300px; /* Adjust if content is very tall */
}

/* ==========================================================================
   MAP / LOCATION SECTION
   ========================================================================== */
.map-section {
    padding: 0;
    position: relative;
    background-color: var(--primary-dark);
}

.map-container {
    height: 480px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
}

.map-overlay-card {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 380px;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.map-overlay-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.map-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.map-info-item {
    display: flex;
    gap: 1rem;
}

.map-info-icon {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-info-text h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.map-info-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .map-overlay-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 0 auto;
        max-width: 100%;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .map-container {
        height: 350px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--primary-dark);
    color: #94a3b8;
    padding: 6rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand h3 span {
    color: var(--accent);
}

.footer-brand-logo {
    width: 2rem;
    height: 2rem;
    background-color: var(--accent);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.footer-contact-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.footer-contact-info h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a:hover {
    color: white;
}

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

/* ==========================================================================
   LEGAL PAGES STYLES (TERMS & PRIVACY)
   ========================================================================== */
.legal-header {
    background-color: var(--primary-dark);
    color: white;
    padding: 6rem 0;
    text-align: center;
    background-image: radial-gradient(circle at 10% 20%, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.95) 90%);
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.legal-header p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.legal-content-wrapper {
    padding: 5rem 0;
}

.legal-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 4rem;
}

.legal-sidebar {
    position: sticky;
    top: 7rem;
    height: fit-content;
}

.legal-nav-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.legal-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legal-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    display: block;
    padding: 0.25rem 0;
}

.legal-nav-link:hover, .legal-nav-link.active {
    color: var(--accent);
    transform: translateX(4px);
}

.legal-body-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-md);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    scroll-margin-top: 7rem; /* Prevents overlap with header when navigating via anchors */
}

.legal-section p {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.legal-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-alert {
    background-color: var(--accent-light);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 1.5rem;
}

.legal-alert p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .legal-sidebar {
        display: none;
    }
    
    .legal-body-card {
        padding: 2.5rem 1.5rem;
    }
    
    .legal-header h1 {
        font-size: 2.25rem;
    }
}

/* Toast Notification (Form Submit Feedback) */
.toast {
    position: fixed;
    bottom: 2rem;
    right: -100%;
    background-color: var(--primary-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--success);
}

.toast.active {
    right: 2rem;
}

.toast-icon {
    color: var(--success);
    font-size: 1.25rem;
}
