:root {
    --primary: #1d8f85;
    --primary-light: #eef9f8;
    --primary-dark: #156961;
    --secondary: #ffce00;
    --secondary-hover: #e6ba00;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --text-light: #9ca3af;
    --white: #ffffff;
    --bg-light: #fdfdfd;
    /* --bg-gray: #f9fafb; */
    --bg-gray: #F6F9F2;
    --border-color: #e5e7eb;

    --font-main: 'Outfit', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-gray);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.font-rubik {
    font-family: 'Rubik', sans-serif !important;
}

.font-poppins {
    font-family: 'Poppins', sans-serif !important;
}

.font-rubik-normal {
    font-family: 'Rubik', sans-serif !important;
    font-style: normal !important;
}

.font-poppins-normal {
    font-family: 'Poppins', sans-serif !important;
    font-style: normal !important;
}

.font-poppins-italic {
    font-family: 'Poppins', sans-serif !important;
    font-style: italic !important;
}

.font-poppins-bold {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700 !important;
}

.font-poppins-italic-semibold {
    font-family: 'Poppins', sans-serif !important;
    font-style: italic !important;
    font-weight: 600 !important;
}

.color-grey-900 {
    color: #343434 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.text-teal {
    color: var(--primary);
}

.text-yellow {
    color: var(--secondary);
}

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

.mt-4 {
    margin-top: 2rem;
}

.container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-yellow {
    background-color: var(--secondary);
    color: var(--text-dark);
}

.btn-yellow:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 206, 0, 0.3);
}

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

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

/* Header */
.header {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-dark);
    padding: 10px 0;
    display: inline-block;
}

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

.nav-links i {
    font-size: 1rem;
    margin-left: 4px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 12px;
    top: 90%;
    left: 0;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--text-dark) !important;
    padding: 12px 20px !important;
    text-decoration: none;
    display: block !important;
    font-size: 0.95rem !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--primary-light) !important;
    color: var(--primary) !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Adjust nav links for dropdown */
.nav-links .dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero */
.hero {
    padding: 160px 0 0px;
    background: linear-gradient(135deg, #eef9f8 0%, #e1f5f2 100%);
    position: relative;
    overflow: hidden;
    /* min-height: 100vh; */
    display: flex;
    align-items: flex-end;
}

.hero-bg-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.hero-bg-image {
    width: 100%;
    max-width: 1400px;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
}

.hero-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 645px;
    padding-bottom: 100px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.badge-number {
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.badge-text {
    background-color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.text-teal {
    color: #2b8c82;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #555;
    max-width: 90%;
}

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

.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.hero-buttons .btn-outline {
    border-color: #2b8c82;
    color: #2b8c82;
    background-color: rgba(255, 255, 255, 0.4);
}

.hero-buttons .btn-outline:hover {
    background-color: #2b8c82;
    color: #fff;
}

.hero-dashes {
    display: flex;
    gap: 10px;
}

.hero-dash {
    width: 40px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-dash.active {
    background-color: #333;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-img-transparent {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Stats & About Combined */
.stats-about-section {
    background-image: url('./assets/images/about-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0px 0;
}

/* Stats */
.stats {
    padding: 40px 150px;
    border-bottom: 1px solid var(--border-color);
    background-color: transparent;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a {
    font-weight: 400;
    color: var(--text-dark);
}

.nav-links .nav-book-btn {
    display: none;
}

/* About */
.about {
    padding: 60px 0;
    background-color: transparent;
}

.about-container {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.about-image-wrapper {
    flex: 0 0 30%;
    position: relative;
    display: flex;
    align-items: center;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
}

.about-content {
    flex: 1;
    background-color: #E6F7F6;
    padding: 60px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .btn {
    width: fit-content;
    padding: 10px 24px;
    font-size: 0.95rem;
    margin-top: 25px;
}

.section-subtitle {
    background-color: #B4E5E2;
    color: #105952;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    width: fit-content;
}

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

.italic-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
}

.section-subtitle-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--bg-gray);
}

.services-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding-top: 60px;
}

.services-intro {
    flex: 0 0 450px;
    background-color: #b8db88;
    padding: 60px 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.services-intro .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    padding-right: 120px;
}

.services-intro p {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding-right: 80px;
}

.services-nav {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.nav-btn {
    width: 78px;
    height: 45px;
    border-radius: 45px;
    border: none;
    background-color: #fff;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: var(--primary);
    color: #fff;
}

.services-cards {
    display: flex;
    gap: 30px;
    flex: 1;
    overflow-x: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    margin-left: -100px;
    position: relative;
    z-index: 2;
}

.services-cards::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 383px;
    background-color: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    min-width: 383px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 15px;
    border-radius: 40px;
}

.service-card-content {
    padding: 0 30px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.service-desc {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.5;
}

.service-link {
    color: var(--primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e0e0e0;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.service-link i {
    font-size: 0.8rem;
}

/* Homes */
.homes {
    padding: 100px 0;
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

.homes-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    position: relative;
    width: 100%;
}

.homes-carousel::before,
.homes-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 15%;
    z-index: 10;
    pointer-events: none;
}

.homes-carousel::before {
    left: 0;
    background: linear-gradient(to right, #fff 20%, transparent);
}

.homes-carousel::after {
    right: 0;
    background: linear-gradient(to left, #fff 20%, transparent);
}

.homes-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 1600px;
}

.home-img {
    border-radius: 30px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.home-img.side {
    width: 32%;
    height: 450px;
    opacity: 0.8;
}

.home-img.center {
    width: 32%;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.carousel-btn {
    width: 70px;
    height: 40px;
    border-radius: 50px;
    background-color: var(--secondary);
    color: var(--text-dark);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: absolute;
    z-index: 20;
}

.carousel-btn.left {
    left: 1.5%;
}

.carousel-btn.right {
    right: 1.5%;
}

.carousel-btn:hover {
    background-color: var(--secondary-hover);
    transform: scale(1.05);
}

.home-popup-container {
    display: flex;
    justify-content: center;
    margin-top: -120px;
    position: relative;
    z-index: 20;
    padding: 0 20px;
}

.home-details-popup {
    background-color: #fff;
    padding: 50px 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 750px;
}

.home-title-popup {
    font-size: 1.8rem;
    color: #1d8f85;
    margin-bottom: 20px;
    font-weight: 700;
}

.home-desc-popup {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.home-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.home-desc {
    margin-bottom: 25px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: #F6F9F2;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    position: relative;
    gap: 0;
}

.step-card {
    flex: 1;
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #B5DA88;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    min-height: 160px;
}

.step-bg-number {
    position: absolute;
    top: -50px;
    left: 10px;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(220, 229, 209, 0.4);
    z-index: -1;
    pointer-events: none;
    line-height: 1;
}

.step-icon-box {
    flex: 0 0 65px;
    height: 65px;
    background-color: #EAF2DF;
    color: #4A6E30;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.step-content {
    text-align: left;
}

.step-content h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.step-connector {
    flex: 0 0 40px;
    height: 1px;
    background-color: #DCE5D1;
    margin: 0 5px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: #fff;
}

.testimonials {
    padding: 100px 0;
    background-color: #fff;
}

.testimonials-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.testimonials-intro {
    flex: 0 0 450px;
}

.quote-icon {
    font-size: 6rem;
    color: #F1F1F1;
    margin-bottom: 20px;
    display: block;
}

.testimonials-cards-wrapper {
    flex: 1;
}

.testimonials-label {
    display: block;
    font-size: 1.1rem;
    color: #A08C7D;
    margin-bottom: 20px;
}

.testimonials-cards {
    display: flex;
    gap: 25px;
}

.testimonial-card {
    flex: 1;
    background-color: #EDEDED;
    padding: 40px 30px;
    border-radius: 35px;
    transition: transform 0.3s ease;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.user-location {
    font-size: 0.8rem;
    color: #1d8f85;
    font-weight: 600;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Newsletter & Footer */
.newsletter-section {
    position: relative;
    z-index: 10;
    margin-bottom: -135px;
    /* Creates the overlap on desktop */
}

.newsletter-card {
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background-color: var(--primary-dark);
    background-image: url('./assets/images/footer-bg.svg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding-top: 180px;
    padding-bottom: 40px;
    position: relative;
}

.pattern-bg {
    background-image: url('./assets/images/newsletter-bg.png');
    background-size: auto;
    background-position: center;
}

.newsletter-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.newsletter-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.newsletter-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline-dark {
    padding: 12px 35px;
    border: 1px solid var(--text-dark);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 500;
}

.footer-main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 60px;
    position: relative;
}

.footer-left {
    max-width: 450px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background-color: #fff;
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
}

.logo-circle i {
    font-size: 0.8rem;
    position: absolute;
    top: 15px;
}

.logo-circle span {
    font-weight: 800;
    font-size: 1.2rem;
    margin-top: 10px;
}

.footer-main-heading {
    font-size: 2.2rem;
    margin: 25px 0;
    line-height: 1.2;
    color: #fff;
}

.footer-main-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.5;
}

.footer-heart-graphic {
    display: none;
}

.footer-right-contact {
    text-align: left;
    z-index: 2;
}

.footer-right-contact h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.contact-line {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.white-text {
    color: #fff;
    font-weight: 500;
}

.pill-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    margin-top: 25px;
    font-weight: 600;
}

.footer-links-row {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    margin-bottom: 30px;
}

.footer-nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-nav-links a {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-nav-links a i {
    font-size: 0.7rem;
}

.footer-bottom-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.copyright-text a {
    text-decoration: underline;
}

.designer-logo {
    color: var(--secondary);
    font-weight: 600;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-container {
        gap: 30px;
    }

    .testimonials-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .testimonials-intro {
        flex: none;
        width: 100%;
    }

    .quote-icon {
        margin: 0 auto 20px;
    }

    .testimonials-cards {
        flex-direction: column;
        width: 100%;
    }

    .testimonial-card {
        width: 100%;
    }

    .services-container {
        flex-direction: column;
        padding-top: 40px;
        align-items: center;
    }

    .services-intro {
        flex: none;
        width: 100%;
        text-align: center;
        margin-top: 0;
        padding: 40px;
    }

    .services-intro .section-title,
    .services-intro p {
        padding-right: 0;
    }

    .services-nav {
        justify-content: center;
        margin-top: 20px;
    }

    .services-cards {
        margin-left: 0;
        width: 100%;
        padding: 0 20px;
    }

    .newsletter-section {
        margin-bottom: 0;
        background-color: #fff;
        border-top: 1px solid #e0e0e0;
    }

    .newsletter-card {
        padding: 40px 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .footer {
        padding-top: 60px;
    }

    /* Mobile Menu for Medium Devices */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary);
        padding: 100px 40px;
        gap: 25px;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: left;
    }

    .nav-links.active {
        left: 0;
    }

    .header .btn-yellow {
        display: none;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 500;
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
    }

    .nav-links a:hover {
        color: var(--secondary);
    }

    .nav-links a.nav-book-btn {
        display: inline-block;
        margin-top: 20px;
        text-align: center;
        border-bottom: none;
        padding: 15px;
        font-size: 1rem;
        background-color: var(--secondary);
        color: var(--text-dark);
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        z-index: 2001;
        transition: color 0.3s ease;
    }

    .mobile-menu-toggle.active {
        color: var(--primary);
    }

    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        background-color: transparent;
        padding-left: 20px;
        margin-top: 0;
        width: 100%;
    }

    .dropdown-content a {
        border-bottom: none !important;
        font-size: 1.1rem !important;
        padding: 10px 0 !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .dropdown-content a:hover {
        background-color: transparent !important;
        color: var(--secondary) !important;
    }
}

@media (max-width: 768px) {

    .hero {
        padding: 100px 0 0px;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 0;
        align-items: center;
    }

    .hero-content {
        padding-bottom: 40px;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .hero-image-wrapper {
        display: none;
    }

    .hero-img-transparent {
        max-width: 100%;
        width: 100%;
    }

    .logo-img {
        height: 35px;
    }

    .stats {
        padding: 40px 20px;
    }

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

    .stat-item {
        flex: 0 0 calc(50% - 20px);
        justify-content: center;
    }

    .about-container,
    .homes-track {
        flex-direction: column;
        gap: 15px;
    }

    .home-img.side {
        display: none;
    }

    .home-img.center {
        width: 100%;
        height: 300px;
    }

    .home-popup-container {
        margin-top: -50px;
    }

    .home-details-popup {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .steps-container {
        flex-direction: column;
        gap: 60px;
        margin-top: 60px;
    }

    .step-card {
        width: 100%;
        min-height: auto;
    }

    .step-connector {
        display: none;
    }

    .step-bg-number {
        font-size: 6rem;
        top: -40px;
    }

    .footer-main-content {
        flex-direction: column;
        gap: 50px;
    }

    .footer-nav-links a:nth-child(3),
    .footer-nav-links a:nth-child(4),
    .footer-nav-links a:nth-child(5) {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .stat-value {
        font-size: 1.5rem !important;
    }

    .stat-label {
        font-size: 0.85rem !important;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-dashes {
        justify-content: center;
        margin-top: 30px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .footer {
        padding-top: 40px;
    }

    .newsletter-btns {
        flex-direction: column;
        gap: 15px;
    }

    .footer-main-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 40px;
    }

    .footer-right-contact {
        text-align: center;
    }

    .footer-heart-graphic {
        display: none;
    }

    .footer-nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

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