
:root {
    --lh-gray: #a8a9ad;
    --lh-primary: #1a3c6e;
    --lh-black: #222;
    --lh-white: #fff;
    --lh-bg: #ffffff;
    --lh-accent: #f7f9fb;
    --lh-primary-dark: #15325a;
    
    /* Typography */
    --h1-size: 48px;
    --h2-size: 36px;
    --h3-size: 26px;
    --body-size: 16px;
    --small-size: 14px;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 30px;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Enhanced Navbar */
.navbar {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    padding: 2px 0;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98) !important;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* === When Navbar Shrinks === */
#navbar.shrink .nav-container {
  padding: 0.5rem 2rem;
}

#navbar.shrink .logo {
  height: 40px;
}

#navbar.shrink .cta-btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Desktop Navigation */
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--lh-primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--lh-primary);
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
    left: 10%;
}

/* Enhanced Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 260px;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-10px);
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Keep dropdown visible when hovering over it */
.dropdown-menu:hover {
    display: block;
    opacity: 1;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item i {
    width: 20px;
    color: var(--lh-primary);
}

.dropdown-item:hover {
    background-color: var(--lh-accent);
    transform: translateX(5px);
}

.dropdown-divider {
    margin: 0.5rem 0;
}

/* CTA Buttons */
.btn-primary {
    background-color: var(--lh-primary) !important;
    border-color: var(--lh-primary) !important;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--lh-primary-dark) !important;
    border-color: var(--lh-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 60, 110, 0.3);
}

/* Mobile Menu Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 28px;
    height: 28px;
    background-image: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--lh-primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 350px;
    max-width: 90vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.drawer-close {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.drawer-close:hover {
    background: var(--lh-accent);
}

.drawer-close i {
    font-size: 1.5rem;
    color: #333;
}

.drawer-content {
    padding: 1.5rem;
}

.drawer-nav-item {
    margin-bottom: 0.5rem;
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.drawer-nav-link:hover {
    background: var(--lh-accent);
    color: var(--lh-primary);
}

.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 1rem;
}

.drawer-submenu.active {
    max-height: 500px;
}

.drawer-submenu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.drawer-submenu-item:hover {
    background: var(--lh-accent);
    color: var(--lh-primary);
}

.drawer-submenu-item i {
    width: 18px;
    color: var(--lh-primary);
}

.drawer-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.drawer-cta .btn {
    width: 100%;
    margin-bottom: 0.75rem;
}

.drawer-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--lh-accent);
    border-radius: 12px;
}

.drawer-contact h6 {
    font-weight: 700;
    color: var(--lh-primary);
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
}

.contact-item i {
    color: var(--lh-primary);
    width: 20px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--lh-primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.5) 0%, rgba(21, 50, 90, 0.85) 100%),
                url('../images/hero-img.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    margin-top: 76px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    margin-top: 50px;
}


/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        display: none;
    }

    .navbar .btn-primary {
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }

    .mobile-drawer,
    .drawer-overlay {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center !important;
    }

    .trust-badges {
        flex-wrap: wrap;
    }
}

/* Footer */
footer {
    background-color: #212529;
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 2rem;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--lh-primary);
    transform: translateY(-3px);
}

/* Ripple Effect */
.ripple-surface {
    position: relative;
    overflow: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-card {
        margin-top: 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Custom MDB Overrides */
.btn-primary {
    background-color: var(--lh-primary) !important;
    border-color: var(--lh-primary) !important;
}

.btn-primary:hover {
    background-color: var(--lh-primary-dark) !important;
    border-color: var(--lh-primary-dark) !important;
}

.badge-primary {
    background-color: var(--lh-primary) !important;
}

.text-primary {
    color: var(--lh-primary) !important;
}


/* Main Search Bar */
.search-style-2 {
    margin-top: 30px;
}

.search-style-2 .search-input {
    padding-left: 55px;
}

.search-icon-left {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
    pointer-events: none;
}

.hero-search-bar {
    position: relative;
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.search-input {
    width: 100%;
    padding: 18px 70px 18px 28px;
    border: none;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--lh-black);
    background: var(--lh-white);
    outline: none;
    transition: all 0.3s ease;
}

.search-input::placeholder {
    color: #999;
}

.search-input:focus {
    box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.1);
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--lh-black);
    color: var(--lh-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.search-btn:hover {
    background: var(--lh-primary);
    transform: translateY(-50%) scale(1.05);
}

.search-btn:active {
    transform: translateY(-50%) scale(0.98);
}

/* Buttons */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    background-color: var(--lh-primary);
    color: var(--lh-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.11);
}
.hero-btn:hover {
    background-color: var(--lh-primary-dark);
    color: var(--lh-accent);
    font-size: 13px !important;
    font-weight: 500 !important;
    box-shadow: 0 5px 15px rgba(14, 0, 73, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background-color: transparent;
    color: var(--lh-primary);
    border: 2px solid var(--lh-primary);
}

.btn-outline:hover {
    background-color: var(--lh-primary);
    color: var(--lh-white);
    box-shadow: 0 5px 15px rgba(14, 0, 73, 0.1);
    transform: translateY(-2px);
}

.main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    background-color: var(--lh-primary);
    color: var(--lh-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.11);
}
.main-btn:hover {
    background-color: var(--lh-primary-dark);
    color: var(--lh-accent);
    font-size: 14px !important;
    font-weight: 500 !important;
    box-shadow: 0 5px 15px rgba(14, 0, 73, 0.1);
    transform: translateY(-2px);
}

.white-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px 12px;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    background-color: var(--lh-white);
    color: var(--lh-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.11);
}
.white-btn:hover {
    background-color: var(--lh-gray);
    color: var(--lh-primary-dark);
    font-size: 14px !important;
    font-weight: 500 !important;
    box-shadow: 0 5px 15px rgba(14, 0, 73, 0.1);
    transform: translateY(-2px);
}

.main-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background-color: transparent;
    color: var(--lh-white);
    border: 2px solid var(--lh-white);
}

.main-outline:hover {
    background-color: var(--lh-primary);
    color: var(--lh-white);
    box-shadow: 0 5px 15px rgba(14, 0, 73, 0.1);
    transform: translateY(-2px);
}

.trust-badges-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background-color: var(--lh-accent);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
}

.trust-badge, .badge i {
    font-size: 15px;
    color: var(--lh-primary);
    padding-right: 7px;
    display: flex;
    align-items: center;
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lh-primary), var(--lh-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(26, 60, 110, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

/* CTA Strip */
.cta-strip {
    background: linear-gradient(135deg, var(--lh-primary) 0%, #0d2441 100%) ;
    color: var(--lh-white);
    padding: 4rem 0;
    text-align: center;
}

.cta-strip h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* City Cards */
.city-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.city-card img {
    transition: transform 0.5s ease;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}


/* About Hero Section */
.about-hero {
    padding-top: 100px;
    padding-bottom: 60px;
    background: var(--lh-bg);
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--lh-primary);
    margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--lh-gray);
    margin-bottom: 2rem;
}

.about-stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.about-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lh-primary);
    margin-bottom: 0.5rem;
}

.about-stat-item p {
    color: var(--lh-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.about-hero-image {
    position: relative;
}

.about-hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--lh-primary), var(--lh-primary-dark));
    border-radius: 20px;
    z-index: -1;
}

.about-hero-image img {
    border-radius: 20px;
}

/* Mission Section */
.about-mission {
    padding: 35px 0;
    background: var(--lh-bg);
}

.mission-card {
    background: linear-gradient(135deg, var(--lh-primary) 0%, var(--lh-primary-dark) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 60, 110, 0.2);
    color: white;
}

.mission-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.mission-icon i {
    font-size: 3rem;
    color: white;
}

.mission-card h2 {
    color: white !important;
}

.mission-card .lead {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Story Section */
.about-story {
    padding: 50px 0;
}

.story-image-wrapper {
    position: relative;
}

.story-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--lh-primary);
}

.story-badge i {
    font-size: 1.5rem;
    color: var(--lh-primary-dark);
}


/* Values Section */
.about-values {
    padding: 50px 0;
    background: var(--lh-bg);
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lh-primary), var(--lh-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(26, 60, 110, 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    font-weight: 700;
    color: var(--lh-primary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--lh-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Team Section */
.about-team {
    padding: 80px 0;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1rem 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--lh-primary);
    transform: translateY(-3px);
}

.team-info {
    padding: 1.5rem;
}

.team-info h4 {
    font-weight: 700;
    color: var(--lh-primary);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--lh-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--lh-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: var(--lh-accent);
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-stats-row {
        gap: 1.5rem;
    }

    .about-stat-item h3 {
        font-size: 2rem;
    }

    .about-hero-image::before {
        top: -10px;
        right: -10px;
    }

    .mission-card {
        padding: 2rem;
    }

    .mission-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 2rem;
    }

    .mission-icon i {
        font-size: 2.5rem;
    }

    .about-mission,
    .about-story,
    .about-values,
    .about-team,
    .about-numbers,
    .about-cta {
        padding: 60px 0;
    }

    .number-card h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-stats-row {
        gap: 1rem;
    }

    .about-stat-item h3 {
        font-size: 1.75rem;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .mission-icon {
        width: 80px;
        height: 80px;
    }

    .mission-icon i {
        font-size: 2rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-icon {
        width: 70px;
        height: 70px;
    }

    .value-icon i {
        font-size: 1.75rem;
    }

    .team-image {
        height: 300px;
    }

    .number-card {
        padding: 1.5rem 0.5rem;
    }

    .number-card h3 {
        font-size: 2rem;
    }

    .number-icon {
        width: 60px;
        height: 60px;
    }

    .number-icon i {
        font-size: 1.5rem;
    }
}


/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--lh-primary-dark);
    position: relative;
}

.benefit-card {
    display: flex;
    gap: 1.5rem;
    padding: 0;
    background: transparent;
    border: none;
    height: 100%;
}

.benefit-icon-wrapper {
    flex-shrink: 0;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lh-gray);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--lh-primary-dark);
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
    .benefits-section {
        padding: 60px 0;
    }

    .benefit-card {
        gap: 1rem;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefit-icon i {
        font-size: 1.25rem;
    }

    .benefit-content h3 {
        font-size: 1.1rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 40, 70, 0.5) 0%, 
    rgba(19, 19, 19, 0.6) 100%), url('../images/hero-img.jpg') no-repeat center center/cover;
    color: white;
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--lh-white);
    margin-bottom: 1.5rem;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--lh-white);
    margin-bottom: 0;
}

/* Contact Info Cards */
.contact-info-section {
    padding: 60px 0;
    background: var(--lh-bg);
}

.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--lh-primary), var(--lh-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 20px rgba(26, 60, 110, 0.3);
}

.contact-info-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card h4 {
    font-weight: 700;
    color: var(--lh-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.contact-info-card p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info-link {
    color: var(--lh-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info-link:hover {
    color: var(--lh-primary-dark);
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--lh-bg);
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    min-height: 56px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-form .form-floating > .form-control:focus,
.contact-form .form-floating > .form-select:focus {
    border-color: var(--lh-primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 60, 110, 0.1);
}

.contact-form .form-floating > label {
    color: var(--lh-gray);
    font-size: 0.95rem;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
}

.contact-form .form-check-input:checked {
    background-color: var(--lh-primary);
    border-color: var(--lh-primary);
}

.contact-form .form-check-label {
    font-size: 0.95rem;
    color: #666;
    margin-left: 0.5rem;
}

.contact-form .form-check-label a {
    color: var(--lh-primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Contact Features */
.contact-features {
    margin-top: 2rem;
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.contact-feature-item i {
    color: var(--lh-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-feature-item span {
    font-size: 1rem;
}

/* Contact Social */
.contact-social h5 {
    font-weight: 700;
    color: var(--lh-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--lh-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lh-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-link:hover {
    background: var(--lh-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 60, 110, 0.3);
}

/* Form Message */
.form-message {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* FAQ Section */
.contact-faq-section {
    padding: 80px 0;
    background: var(--lh-accent);
}

.accordion-item {
    border: none;
    background: white;
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    color: var(--lh-primary);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--lh-accent);
    color: var(--lh-primary);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a3c6e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Map Section */
.contact-map-section {
    padding: 80px 0 100px;
    background: var(--lh-bg);
}

.map-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.map-container {
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-info {
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info h3 {
    font-weight: 700;
    font-size: 1.75rem;
}

.map-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.map-detail i {
    color: var(--lh-primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.map-detail strong {
    display: block;
    color: var(--lh-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.map-detail p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.map-detail a {
    color: var(--lh-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.map-detail a:hover {
    color: var(--lh-primary-dark);
}

/* Loading State */
.contact-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.contact-form button[type="submit"].loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
    margin-left: 0.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-info-section,
    .contact-form-section,
    .contact-faq-section,
    .contact-map-section {
        padding: 60px 0;
    }

    .contact-form-card {
        padding: 2rem;
        margin-top: 2rem;
    }

    .map-info {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-info-icon {
        width: 70px;
        height: 70px;
    }

    .contact-info-icon i {
        font-size: 1.75rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-feature-item {
        font-size: 0.95rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .map-container {
        height: 300px;
    }

    .map-info {
        padding: 1.5rem;
    }

    .map-info h3 {
        font-size: 1.5rem;
    }
}

/* Animation Delays for WOW.js */
.wow {
    visibility: hidden;
}

.wow.animate__animated {
    visibility: visible;
}

/* Blog Cards */
.blog-card {
    background: var(--lh-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    color: var(--lh-gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--lh-gray);
    margin-bottom: 1rem;
}


/* Discover Section */
.discover-section {
    padding: 80px 0;
    background: var(--lh-bg);
}

.discover-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lh-black);
    margin-bottom: 2rem;
}

/* Tab Navigation */
.tab-nav {
    display: flex;
    justify-content: center; /* ⬅ centers the tabs */
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 2rem;
    border: 2px solid #e0e0e0;
    background: var(--lh-white);
    color: var(--lh-black);
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--lh-primary);
    color: var(--lh-primary);
}

.tab-btn.active {
    background: var(--lh-primary);
    color: var(--lh-white);
    border-color: var(--lh-primary);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Help Cards */
.help-card {
    background: var(--lh-white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.help-card:hover {
    border-color: var(--lh-primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.help-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.help-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lh-black);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.help-card-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.help-card-icon svg {
    width: 100%;
    height: 100%;
}

.help-card-description {
    color: var(--lh-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.help-card-link {
    color: var(--lh-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid var(--lh-black);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.help-card-link:hover {
    color: var(--lh-primary);
    border-bottom-color: var(--lh-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .discover-section {
        padding: 60px 0;
    }

    .discover-section h2 {
        font-size: 2rem;
    }

    .tab-btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }

    .help-card {
        padding: 1.5rem;
    }

    .help-card-icon {
        width: 50px;
        height: 50px;
    }

    .help-card-title {
        font-size: 1.1rem;
    }
}


/* Agent Finder CTA Section */
.agent-finder-cta {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center; /* ⬅ center horizontally */
    text-align: center;      /* ⬅ center text */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%),
                url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.agent-finder-content {
    max-width: 600px;
    margin: 0 auto;      /* ⬅ centers inside col */
    text-align: center;  /* ⬅ centers text & button */
}

.agent-finder-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.agent-finder-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    background-color: var(--lh-white);
    color: var(--lh-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.cta-button:hover {
    background-color: var(--lh-primary);
    color: var(--lh-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .agent-finder-cta {
        padding: 60px 0;
        min-height: 350px;
    }

    .agent-finder-title {
        font-size: 2rem;
    }

    .agent-finder-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}

/* Agent Matching Section */
.agent-matching-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.agent-matching-content {
    padding-right: 2rem;
}

.matching-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--lh-black);
    margin-bottom: 1rem;
}

.matching-subtitle {
    font-size: 1rem;
    color: var(--lh-black);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.matching-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.find-agents-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    background-color: var(--lh-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.find-agents-button:hover {
    background-color: var(--lh-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Agent Cards Container */
.agent-cards-container {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.agent-match-card {
    background: white;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 220px;
    transition: all 0.3s ease;
}

.agent-match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.agent-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    border: 3px solid #f0f0f0;
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lh-black);
    margin-bottom: 0.5rem;
}

.agent-company {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.agent-license {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 1.25rem;
}

.agent-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lh-black);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.75rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 991px) {
    .agent-matching-section {
        padding: 60px 0;
    }

    .agent-matching-content {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .agent-cards-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .matching-title {
        font-size: 1.75rem;
    }

    .agent-cards-container {
        gap: 1rem;
    }

    .agent-match-card {
        width: 100%;
        max-width: 280px;
    }
}

.search-container {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(40px);
}

/* Modern Approach Section */
.modern-approach-banner {
    background-image: url('../images/hero-img.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
    position: relative;
}

.modern-approach-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.15);
}

.modern-card {
    border: 0;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modern-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.modern-icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: var(--lh-accent);
    border: 4px solid var(--lh-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.modern-icon {
    font-size: 2.2rem;
    margin-top: -10px;
}

