/* ============================================================
   SHARED BASE STYLES (both booking.html and index.html)
   ============================================================ */

/* Base styles (Mobile First) */
.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* ============================================================
   SHARED DESIGN TOKENS (all pages)
   ============================================================ */
:root {
    /* Shared backgrounds */
    --bg-color: #fcfaf8;
    --bg-light: #ffffff;
    --control-bg: #fcfaf8;
    --box-bg: #fcfaf8;

    /* Brand colours (booking defaults; landing-page overrides below) */
    --brand-dark: #232f3e;
    --brand-navy: #222e3f;
    --brand-muted: #6b7280;
    --brand-teal: #2ca684;
    --brand-teal-light: #e5f4ef;
    --brand-teal-ring: #d0ebe3;
    --brand-orange: #ef6944;
    --brand-orange-hover: #f37d5b;
    --brand-orange-light: #fef0eb;

    /* Borders & shadows */
    --border-color: #e5e7eb;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    --card-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.06);
}

body {
    background-color: var(--bg-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--brand-dark);
    margin: 0;
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.back-link {
    text-decoration: none;
    color: var(--brand-muted);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--brand-dark);
}

/* Header Section */
.page-header {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.page-title {
    color: var(--brand-dark);
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--brand-muted);
    font-size: 1.1rem;
}

p {
    margin-top: 10px;
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    color: var(--brand-muted);
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--brand-teal);
    margin-right: 0.4rem;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Form Card Styling */
.form-container {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.custom-card {
    background: #ffffff;
    border-radius: 1rem;
    border: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

/* Form Controls */
.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: var(--control-bg);
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: #4b5563;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::placeholder {
    color: #4b5563;
}

.form-control:focus {
    background-color: var(--control-bg);
    border: 2px solid var(--brand-teal);
    box-shadow: none;
    padding: calc(0.5rem - 1px) calc(0.75rem - 1px);
}

/* Validation Messages */
.form-group-mb span[style*="color"],
.form-group-mb span[style*="Red"],
.form-control+span,
select+span,
.custom-select-wrapper+select+span,
.custom-select-wrapper+span {
    font-size: 0.85rem !important;
    display: block;
    margin-top: 0.35rem;
    font-weight: 400 !important;
    line-height: 1.2;
    color: #dc2626 !important;
    opacity: 0.8;
}

/* Fix Checkbox Styling */
.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.2rem;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid var(--border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-check-input:checked {
    background-color: var(--brand-teal);
    border-color: var(--brand-teal);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:focus {
    border-color: var(--brand-teal-ring);
    outline: 0;
    box-shadow: 0 0 0 0.25rem var(--brand-teal-ring);
}

.form-group-mb {
    margin-bottom: 1.5rem;
}

/* Custom Select Dropdown Styling */
.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-select-display {
    background-color: var(--control-bg);
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.15s ease-in-out;
}

.custom-select-display i {
    color: #4b5563;
    font-size: 0.85rem;
}

.custom-select-wrapper.open .custom-select-display {
    border: 2px solid var(--brand-teal);
    padding: calc(0.5rem - 1px) calc(0.75rem - 1px);
}

/* Dropdown Menu - Padding Fixed */
.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 100;
    padding: 0.25rem;
    display: none;
}

.custom-select-wrapper.open .custom-select-dropdown {
    display: block;
}

/* Dropdown Options */
.custom-option {
    padding: 0.25rem 2rem;
    font-size: 0.9rem;
    color: #4b5563;
    border-radius: 0.375rem;
    cursor: pointer;
    margin-bottom: 0.25rem;
    transition: all 0.1s ease;
}

.custom-option:last-child {
    margin-bottom: 0;
}

/* Pure CSS hover highlight */
.custom-option:hover {
    background-color: var(--brand-orange);
    color: #ffffff;
}

/* Fee Summary Box */
.fee-box {
    background-color: var(--box-bg);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.fee-title {
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.fee-subtitle {
    color: var(--brand-muted);
    font-size: 0.85rem;
}

.fee-amount {
    color: var(--brand-teal);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Submit Button */
.btn-submit {
    background-color: var(--brand-orange);
    color: #ffffff;
    font-weight: 600;
    padding: 0.6rem;
    border-radius: 1rem;
    border: none;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

.btn-submit:hover {
    background-color: var(--brand-orange-hover);
    color: #ffffff;
    transform: scale(1.02);
}

.terms-text {
    color: var(--brand-muted);
    font-size: 0.75rem;
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 576px) {
    .custom-card {
        padding: 1.5rem;
    }

    .feature-list {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}


/* ============================================================
   LANDING PAGE STYLES (index.html)
   Variable overrides scoped to .landing-page where values differ from :root
   ============================================================ */
.landing-page {
    /* Override only the values that differ from :root defaults */
    --brand-dark: #1e293b;
    --brand-muted: #64748b;
    --brand-teal: #179675;
    --border-color: #e2e8f0;
}

.landing-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--brand-dark);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-color: transparent;
}

/* Alternating Background Gradients */
.landing-page .bg-gradient-1 {
    background: linear-gradient(135deg, #ebf3ef 0%, #f5faf8 100%);
}

.landing-page .bg-gradient-2 {
    background: linear-gradient(135deg, #f7f5f2 0%, #fdfdfc 100%);
}

.landing-page .bg-gradient-3 {
    background: linear-gradient(135deg, #f2f5f7 0%, #fcfdfe 100%);
}

/* Typography */
.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5 {
    font-weight: 700;
    color: var(--brand-dark);
}

/* Top Navigation Bar */
.navbar-custom {
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #ffffff;
    padding: 0 !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
}

.navbar-brand {
    padding: 0 !important;
    margin: 0 !important;
}

.nav-link {
    font-size: 0.95rem;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--brand-teal) !important;
}

/* Dropdown Menu Enhancements */
/* Default state for all views */
.dropdown-menu-animated {
    display: none;
}

@media (min-width: 992px) {
    .dropdown-menu-animated {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        pointer-events: none;
    }

    .dropdown:hover > .dropdown-menu-animated {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* Mobile display logic */
@media (max-width: 991px) {
    .dropdown.show > .dropdown-menu-animated {
        display: block !important;
    }
}

.dropdown-item {
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--brand-teal-light);
    color: var(--brand-teal);
    padding-left: 1.5rem;
}

.dropdown-item:active {
    background-color: var(--brand-teal);
    color: #ffffff;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem 0 2rem !important;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        background: #fcfaf8 !important;
        margin-top: 0 !important;
        padding-left: 1rem !important;
        display: none; /* Ensure hidden by default on mobile */
    }
    .dropdown.show > .dropdown-menu {
        display: block !important;
    }
    .nav-link {
        padding: 0.75rem 1.25rem !important;
        font-size: 1.1rem !important; /* Slightly larger for easier tapping */
    }
}

.navbar-brand img {
    transition: transform 0.3s ease;
    display: block;
}

.navbar-brand:hover img {
    transform: scale(1.02);
}

.logo-circle {
    background-color: var(--brand-teal);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 40%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.landing-page .btn-brand {
    background-color: var(--brand-orange);
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 1rem !important;
    border: none;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.landing-page .btn-brand:hover {
    background-color: var(--brand-orange-hover);
    color: #ffffff;
    transform: scale(1.02);
}

.landing-page .btn-brand-lg {
    padding: 1.5rem 2.5rem;
    border-radius: 0.5rem !important;
    font-size: 1.1rem;
}

/* Hero Section */
.landing-page .hero-section {
    padding: 5rem 0;
    text-align: center;
}

.landing-page .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-teal);
    padding: 0.4rem 1.25rem;
    border: 1px solid var(--brand-teal-light);
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    background-color: rgba(219, 237, 230, 1);
}

.landing-page .hero-title {
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

.landing-page .hero-title span {
    color: var(--brand-teal);
}

.landing-page .hero-subtitle {
    font-size: 1.25rem;
    color: var(--brand-muted);
    max-width: 680px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.landing-page .hero-subtitle strong {
    color: var(--brand-dark);
    font-weight: 500;
}

.landing-page .hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--brand-muted);
    flex-wrap: wrap;
}

.landing-page .hero-features span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.landing-page .hero-features span i {
    color: var(--brand-teal);
    font-size: 1.1rem;
}

.landing-page .hero-features .divider {
    color: #d1d5db;
}

/* Pain Points */
.landing-page .pain-points-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.landing-page .pain-point-card {
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.landing-page .pain-icon {
    width: 32px;
    height: 32px;
    background-color: var(--brand-orange-light);
    color: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.landing-page .pain-footer {
    margin-top: 2.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
    color: var(--brand-dark);
}

.landing-page .pain-footer-sub {
    color: var(--brand-muted);
    font-size: 1.05rem;
    margin-top: 0.5rem;
    text-align: center;
}

.landing-page .pain-footer-sub span {
    color: var(--brand-teal);
    font-weight: 600;
}

/* General Section Styling */
.landing-page .section-padding {
    padding: 5rem 0;
}

.landing-page .section-title {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.landing-page .section-subtitle {
    color: var(--brand-muted);
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.landing-page .section-subtitle.last-section {
    max-width: 620px;
}

/* Expert Assistance Section */
.landing-page .badge-orange {
    display: inline-block;
    background-color: var(--brand-orange-light);
    color: var(--brand-orange);
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.landing-page .assistance-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: var(--card-shadow);
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.landing-page .assistance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-page .assistance-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--brand-dark);
}

.landing-page .assistance-list-secondary li {
    margin-bottom: 0.4rem;
    opacity: 0.8;
}

.landing-page .assistance-icon-green {
    width: 32px;
    height: 32px;
    background-color: var(--brand-teal-light);
    color: var(--brand-teal);
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-page .assistance-icon-transparent {
    width: 32px;
    height: 32px;
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

/* Assistance card heading */
.landing-page .assistance-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.landing-page .col-divider {
    position: relative;
}

@media (min-width: 768px) {
    .landing-page .col-divider::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 100%;
        background-color: var(--border-color);
    }
}

/* Services Grid */
.landing-page .service-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.landing-page .service-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
    border-color: transparent;
}

.landing-page .service-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.landing-page .service-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.landing-page .service-desc {
    font-size: 0.9rem;
    color: var(--brand-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.landing-page .service-link {
    color: var(--brand-teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.80rem;
    line-height: 1.4;
}

/* Trust Section */
.landing-page .trust-subtitle {
    color: var(--brand-teal);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 4rem;
    text-align: center;
}

.landing-page .trust-item {
    text-align: center;
    padding: 0 1rem;
}

.landing-page .trust-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-teal-light);
    color: var(--brand-teal);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.landing-page .trust-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.landing-page .trust-item p {
    font-size: 0.85rem;
    color: var(--brand-muted);
    margin: 0;
}

/* Testimonials Section */
.landing-page .testimonial-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    height: 100%;
}

.landing-page .quote-mark {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    color: var(--brand-teal-light);
    line-height: 1;
    font-family: Georgia, serif;
}

.landing-page .stars {
    color: var(--brand-orange);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.landing-page .testimonial-text {
    font-size: 1.1rem;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.landing-page .author-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.landing-page .author-desc {
    font-size: 0.85rem;
    color: var(--brand-muted);
}

/* How It Works Section */
.landing-page .hiw-item {
    text-align: center;
    padding: 1rem;
}

.landing-page .hiw-icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.landing-page .ring-outer {
    position: absolute;
    width: 95px;
    height: 95px;
    border: 4px solid var(--brand-teal-ring);
    border-radius: 50%;
    background-color: #ffffff;
    z-index: 0;
}

.landing-page .ring-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    background-color: var(--brand-teal-light);
    border-radius: 50%;
    color: var(--brand-teal);
    font-size: 24px;
    z-index: 1;
}

.landing-page .hiw-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 30px;
    height: 30px;
    background-color: var(--brand-orange);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(239, 105, 68, 0.25);
}

.landing-page .hiw-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.landing-page .hiw-item p {
    font-size: 1rem;
    color: var(--brand-muted);
}

.landing-page .hiw-footer {
    font-size: 1.2rem;
    text-align: center;
    color: var(--brand-teal);
    font-weight: 600;
    margin-top: 2rem;
}

/* Bottom CTA Section */
.landing-page .bottom-cta {
    padding: 5rem 0;
    text-align: center;
}

.landing-page .bottom-cta-icon {
    width: 80px;
    height: 80px;
    background-color: var(--brand-teal-light);
    color: var(--brand-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

/* Bottom CTA section-title spacing */
.landing-page .bottom-cta .section-title {
    margin-bottom: 1rem;
}

/* Bottom CTA section-subtitle spacing */
.landing-page .bottom-cta .section-subtitle {
    margin-bottom: 2rem;
}

.landing-page .bottom-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--brand-muted);
}

.landing-page .bottom-features i {
    color: var(--brand-teal);
    margin-right: 0.3rem;
}

/* Footer Section */
.landing-page footer {
    background-color: var(--brand-navy);
    color: #e2e8f0;
    padding: 3rem 0 2rem;
}

.landing-page .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.landing-page .footer-brand .logo-circle {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.landing-page .footer-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.landing-page .footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.landing-page .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-page .footer-links li {
    margin-bottom: 0.4rem;
}

.landing-page .footer-links a,
.landing-page .footer-contact {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-page .footer-links a:hover {
    color: #ffffff;
}

.landing-page .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* Footer heart icon */
.landing-page .footer-heart {
    color: var(--brand-orange);
}

/* Testimonials row max-width */
.landing-page .testimonials-row {
    max-width: 900px;
    margin: 0 auto;
}

/* How-it-works row max-width */
.landing-page .hiw-row {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive overrides for landing page */
@media (max-width: 768px) {
    .landing-page .hero-section,
    .landing-page .section-padding,
    .landing-page .bottom-cta {
        padding: 3rem 0;
    }

    .landing-page .hero-title {
        font-size: 2.25rem;
    }

    .landing-page .assistance-card {
        padding: 1.5rem;
    }

    .landing-page .trust-item {
        margin-bottom: 2rem;
    }

    .landing-page .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .navbar-custom {
        padding: 0 !important;
    }

    .navbar-brand img {
        max-height: 50px !important;
    }
}