/* ==========================================================================
   Valmo Courier Franchise - Main Stylesheet
   Theme: Premium SaaS + Corporate Logistics
   ========================================================================== */

/* 1. DESIGN SYSTEM & ROOT VARIABLES */
:root {
    /* Color Palette */
    --primary-color: #0B3D91;     /* Deep Royal Blue */
    --secondary-color: #2563EB;   /* Electric Blue */
    --accent-color: #FFC107;      /* Warm Accent Yellow */
    --bg-color: #F8FAFC;          /* Soft Slate White */
    --dark-color: #081A38;        /* Midnight Dark Blue */
    --text-color: #334155;        /* Slate Gray Text */
    --text-muted: #64748B;        /* Muted Gray Text */
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    
    /* Shadows */
    --card-shadow: 0 10px 30px rgba(8, 26, 56, 0.05);
    --hover-shadow: 0 20px 40px rgba(8, 26, 56, 0.12);
    --glass-shadow: 0 8px 32px 0 rgba(11, 61, 145, 0.08);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-headings: 'Poppins', sans-serif;

    /* Borders & Spacing */
    --radius-card: 20px;
    --radius-button: 12px;
    --radius-input: 8px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

/* 2. BASE RESET & NORMALIZATION */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
}

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

img, svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

ul {
    list-style: none;
}

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

/* 3. UTILITIES & HELPER CLASSES */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.padding-y {
    padding-top: 100px;
    padding-bottom: 100px;
}

.bg-light {
    background-color: #F1F5F9;
}

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

.text-white {
    color: var(--white);
}

.highlight-text {
    color: var(--secondary-color);
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge {
    background: rgba(37, 99, 235, 0.15);
    color: var(--secondary-color);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-accent {
    background: rgba(255, 193, 7, 0.15);
    color: #D97706;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-button);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

.btn-accent:hover {
    background-color: #E0A800;
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.card:hover {
    box-shadow: var(--hover-shadow);
    transform: translateY(-6px);
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

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

/* 4. NAVBAR STYLING */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(8, 26, 56, 0.04);
}

.nav-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 28px;
    width: auto;
}

.brand-divider {
    width: 1.5px;
    height: 22px;
    background-color: var(--border-color);
}

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

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

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

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

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

.nav-cta {
    margin-left: 12px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: var(--dark-color);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

/* 5. HERO SECTION STYLING */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-color) 0%, #061124 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.07)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: 3.25rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #94A3B8;
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.6;
}

/* Premium Investment Highlight Card */
.investment-highlight-card {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(30, 58, 138, 0.22) 100%);
    border: 1.5px solid rgba(37, 99, 235, 0.35);
    border-radius: 16px;
    padding: 16px 28px;
    margin-bottom: 48px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.15), 0 8px 30px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    cursor: default;
}

.investment-highlight-card:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(30, 58, 138, 0.3) 100%);
    border-color: rgba(37, 99, 235, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(37, 99, 235, 0.25), 0 12px 40px rgba(0, 0, 0, 0.35);
}

.highlight-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: var(--transition-smooth);
}

.investment-highlight-card:hover .highlight-card-icon {
    transform: scale(1.05);
}

.highlight-card-icon svg {
    width: 26px;
    height: 26px;
}

.highlight-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-title {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.info-label {
    font-size: 0.8rem;
    color: #94A3B8;
    margin-bottom: 4px;
}

.info-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.01em;
}

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

/* Compact Hero Trust Points */
.hero-trust-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    max-width: 580px;
}

.trust-point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #CBD5E1;
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-point-item svg {
    width: 18px;
    height: 18px;
    color: #22C55E;
    flex-shrink: 0;
}

/* Glassmorphism Form Card */
.hero-form-container {
    width: 100%;
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-card);
    padding: 44px;
    box-shadow: var(--glass-shadow);
}

.form-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #94A3B8;
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

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

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #CBD5E1;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

input, select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-input);
    color: var(--white);
    font-size: 0.98rem;
    transition: var(--transition-smooth);
}

select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 20px center;
}

select option {
    background-color: var(--dark-color);
    color: var(--white);
}

input:focus, select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.25);
}

.error-msg {
    display: block;
    color: #F87171;
    font-size: 0.75rem;
    margin-top: 4px;
    height: 14px;
}

.btn-submit {
    position: relative;
    overflow: hidden;
    padding: 16px 28px;
    font-size: 1.05rem;
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-privacy-notice {
    font-size: 0.75rem;
    color: #94A3B8;
    line-height: 1.4;
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

/* 6. WHY CHOOSE SECTION */
.why-choose-grid {
    margin-top: 40px;
}

.choose-card {
    text-align: left;
}

.choose-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.choose-card:hover .choose-icon-wrapper {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(10deg);
}

.choose-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

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

/* 7. BUSINESS BENEFITS */
.benefits-grid {
    margin-top: 40px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 36px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(37, 99, 235, 0.3);
}

.benefit-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.benefit-number {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.15);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-number {
    color: var(--secondary-color);
}

.benefit-head h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
}

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

/* 8. TIMELINE (HOW IT WORKS) */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
    padding: 20px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 50px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    margin-left: 50%;
    justify-content: flex-start;
}

.timeline-badge {
    position: absolute;
    top: 0;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-headings);
    border: 4px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 5;
}

.timeline-item:nth-child(even) .timeline-badge {
    left: -20px;
}

.timeline-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius-card);
    width: 90%;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 30px;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

/* 9. INVESTMENT PLANNING & ELIGIBILITY */
.investment-grid, .applicant-grid {
    margin-top: 40px;
}

.investment-card, .applicant-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition-smooth);
}

.investment-card:hover, .applicant-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.investment-icon-box, .applicant-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(11, 61, 145, 0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.investment-card h4, .applicant-card h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

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

/* 10. WHY PARTNER WITH VALMO */
.partner-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 60px;
}

.partner-bullets {
    margin-top: 30px;
}

.partner-bullets li {
    margin-bottom: 20px;
    padding-left: 32px;
    position: relative;
    font-size: 1rem;
}

.partner-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.partner-bullets strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 2px;
}

/* 11. STATISTICS (COUNTER) */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    position: relative;
}

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    color: #E2E8F0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* 12. GALLERY SECTION */
.gallery-container {
    margin-top: 40px;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--card-shadow);
}

.masonry-item:nth-child(1) { grid-row: span 2; }
.masonry-item:nth-child(2) { grid-column: span 2; }
.masonry-item:nth-child(5) { grid-column: span 2; }

.gallery-svg-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 26, 56, 0.9), transparent);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
}

.masonry-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.gallery-overlay p {
    color: var(--accent-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 26, 56, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    text-align: center;
    position: relative;
}

#lightbox-media-container svg {
    max-width: 100%;
    max-height: 500px;
    height: auto;
}

.lightbox-caption {
    color: var(--white);
    font-family: var(--font-headings);
    font-size: 1.25rem;
    margin-top: 20px;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: transparent;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.lightbox-close {
    top: 40px;
    right: 40px;
}

.lightbox-prev {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    color: var(--accent-color);
}

/* 13. TESTIMONIALS SECTION */
.testimonials-grid {
    margin-top: 40px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.partner-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-headings);
}

.partner-name {
    font-size: 1.05rem;
    color: var(--dark-color);
}

.partner-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.partner-review {
    color: var(--text-color);
    font-size: 0.95rem;
    font-style: italic;
}

/* 14. FAQ ACCORDION SECTION */
.faq-accordion-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark-color);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

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

.faq-content {
    padding: 0 30px 22px 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: var(--card-shadow);
}

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

/* 15. CONTACT & MAP SECTION */
.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-details {
    margin: 36px 0;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-detail-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-socials {
    display: flex;
    gap: 16px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.contact-socials a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.map-placeholder {
    height: 100%;
    min-height: 350px;
    background-color: #E2E8F0;
    border-radius: var(--radius-card);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 10;
    max-width: 260px;
}

.map-overlay h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.map-overlay p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.map-graphic {
    width: 100%;
    height: 100%;
    background-color: #F8FAFC;
}

/* 16. FOOTER STYLING */
.footer {
    background-color: var(--dark-color);
    color: #94A3B8;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.brand-horizontal {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 360px;
}

.footer-links h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 30px;
    font-size: 0.85rem;
}

/* 17. MODAL STYLING */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 26, 56, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius-card);
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(8, 26, 56, 0.15);
    border: 1px solid var(--border-color);
    animation: modalSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 24px auto;
}

.success-icon {
    background-color: #DEF7EC;
    color: #03543F;
}

.error-icon {
    background-color: #FDE8E8;
    color: #9B1C1C;
}

.modal-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* 18. FLOATING BUTTONS */
.floating-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 16px 24px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
    z-index: 999;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* 19. SCROLL ANIMATION INITIALIZERS */
.fade-up-init {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-left-init {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-right-init {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-init {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Sticky Mobile CTA Base */
.sticky-mobile-cta {
    display: none;
}
