/* ======== CSS Reset & Base Styles ======== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

body {
    font-family: "Inter", sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 70px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ======== CSS Custom Properties (Variables) ======== */
:root {
    /* Colors */
    --primary-orange: #ea8f4d;
    --secondary-orange: #E38541;
    --accent-orange: #c67a2c;
    --primary-blue: #71B2F0;
    --dark-blue: #003366;
    --light-blue: #DDE5F0;
    --text-gray: #646766;
    --border-gray: #c7d1e0;
    --bg-light: #e9edf3;
    
    /* Spacing */
    --navbar-height: 70px;
    --section-padding: 40px;
    --card-spacing: 20px;
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;
    --border-radius-xl: 50px;
    
    /* Typography */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 28px;
    --font-size-4xl: 35px;
    --font-size-5xl: 45px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ======== Navbar Section ======== */
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 0 var(--section-padding);
    height: var(--navbar-height);
}

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

.navbar .logo img {
    width: 200px;
}

.navbar .lang {
    display: flex;
    align-items: center;
    font-size: var(--font-size-sm);
    cursor: pointer;
}


.navbar .lang span {
    font-size: var(--font-size-lg);
    color: var(--text-gray);
    margin-right: 5px;
}

.navbar .lang i {
    color: var(--text-gray);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 60px;
}

.navbar ul li a {
    color: var(--text-gray);
    font-weight: 500;
    transition: var(--transition-base);
    font-size: var(--font-size-lg);
}

.navbar ul li a:hover {
    color: #d29b6f;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-gray);
    transition: var(--transition-base);
}

/* ======== Global Sidebar ======== */
.global-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-40%);
    width: 70px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--secondary-orange);
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 25px 0;
    z-index: 500;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-50%) translateX(-100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.global-sidebar.show {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.global-sidebar a {
    width: 45px;
    height: 45px;
    border: 1.5px solid var(--secondary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-orange);
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    margin: 5px 0;
}

.global-sidebar a:hover {
    background-color: var(--secondary-orange);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(227, 133, 65, 0.4);
}

.global-sidebar a.active {
    background-color: var(--secondary-orange);
    color: white;
    box-shadow: 0 0 15px rgba(227, 133, 65, 0.4);
}

/* ======== Section Container ======== */
.section-container {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ======== Hero Section ======== */
.hero {
    background-image: url("images/image 19.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 87vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: var(--border-radius-xl);
    margin: var(--section-padding);
    margin-top: 30px;
    margin-bottom: 60px;
    overflow: hidden;
    width: calc(100% - 80px);
    box-sizing: border-box;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/image 19.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-xl);
    animation: zoomIn 10s ease-in-out forwards;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.7) 40%,
        rgba(0, 0, 0, 0.5) 80%,
        rgba(0, 0, 0, 0) 100%
    );
    border-bottom-left-radius: var(--border-radius-xl);
    border-top-left-radius: var(--border-radius-xl);
    width: 400px;
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 100px;
    left: 60px;
    color: #fff;
    z-index: 2;
    max-width: 430px;
}

.hero-content h1 {
    font-size: var(--font-size-4xl);
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-content p {
    font-size: 15px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 200;
}

.hero-content .btn {
    background-color: var(--primary-orange);
    opacity: 0.75;
    color: #fff;
    padding: 12px 25px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.hero-content .btn:hover {
    opacity: 1;
}

/* Animations */
@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes slideInSidebar {
    from {
        transform: translateY(-50%) translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(-50%) translateX(0);
        opacity: 1;
    }
}

/* ======== About Section ======== */
.about {
    background-image: url('images/Frame٢.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0rem;
    /* Remove left padding since sidebar doesn't affect this section's spacing */
}

.overlay {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 59.375rem; /* 950px */
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.7) 5%,
        rgba(200, 210, 222, 0.6) 95%,
        rgba(200, 210, 222, 0) 95%
    );
}

.overlay::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    background: linear-gradient(to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.7) 10%,
        rgba(83, 106, 139, 0.5) 100%,
        rgba(180, 163, 163, 0) 100%
    );
    border-radius: var(--border-radius-md);
    width: 800px;
    height: 800px;
    z-index: 0;
}

/* Remove individual sidebar from about section */
.sidebar {
    display: none;
}

.content {
    z-index: 2;
    margin-left: 130px;
    margin-right: 60px;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: contentFade 1.5s ease forwards 1s;
    flex-shrink: 0;
}

.content h3 {
    font-size: var(--font-size-4xl);
    color: var(--secondary-orange);
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
}

.content h3:not(#about-us-tag)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 150px;
    width: 100px;
    height: 2px;
    background-color: var(--secondary-orange);
    transform: translateY(-50%);
}

.content h1 {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 0px;
    font-size: var(--font-size-5xl);
}

.content p {
    font-size: 22px;
    font-weight: 300;
    max-width: 400px;
    margin-top: 20px;
}

button {
    background: transparent;
    border: 1px solid var(--secondary-orange);
    color: var(--secondary-orange);
    padding: 10px 25px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-base);
    margin: 30px 0 50px 0;
    font-size: var(--font-size-xl);
}

button:hover {
    background: var(--secondary-orange);
    color: #fff;
}

.content i {
    color: var(--secondary-orange);
    margin-left: 10px;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes contentFade {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ======== Services Section ======== */
.services {
    display: flex;
    background-color: var(--light-blue);
    width: 100%;
    min-height: 100vh;
    padding-left: 110px; /* Space for global sidebar */
}

/* Remove individual sidebar from services section */
.sidebar1 {
    display: none;
}

.services .content {
    flex: 1;
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px 40px;
    position: static;
    opacity: 1;
    transform: none;
    animation: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.services .content h3:not(#about-us-tag)::after {
    content: "";
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 1px;
    background-color: #000;
}

.header {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

.header h3 {
    color: #b66526;
    font-size: var(--font-size-4xl);
    position: relative;
    margin-bottom: 10px;
}

.header h2 {
    color: var(--dark-blue);
    font-size: var(--font-size-3xl);
    margin: 0;
}

.cards-container {
    display: flex;
    overflow-x: auto;
    gap: var(--card-spacing);
    margin-top: 30px;
    padding-bottom: 30px;
    scroll-behavior: smooth;
    height: 450px;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
}

.card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-slow);
    min-width: 350px;
    height: 400px;
    display: flex;
    flex-direction: column;
}

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

.card img {
    width: 90%;
    height: 200px;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    margin: 15px auto 0 auto;
    display: block;
}

.card h4 {
    margin: 20px 15px 0 15px;
    color: #000;
    font-size: 15px;
    font-weight: 600;
}

.card p {
    font-size: var(--font-size-sm);
    color: #555;
    margin: 15px;
    line-height: 1.4;
    flex: 1;
}

/* ======== Why Section ======== */
.why-section {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px; /* Increased from 800px */
    margin: 0 auto; /* Center the section itself */
    padding: 2rem; /* Use rem for better scalability */
    padding-left: 130px; /* Space for global sidebar */
    box-sizing: border-box;

}

.why-section h2 {
    color: #c26b35;
    font-size: var(--font-size-3xl);
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.why-section h2::before,
.why-section h2::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background-color: #999;
}

.why-section h2::before {
    right: 100%;
    margin-right: 15px;
}

.why-section h2::after {
    left: 100%;
    margin-left: 15px;
}

.why-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 15px;
}

.why-cards {
    display: flex;
    flex-direction: column;
    gap: var(--card-spacing);
    align-items: center;
    margin-left: 15px;
}

.why-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    max-width: 600px;
    width: 100%;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.why-card img {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
}

.why-card .content {
    flex: 1;
    text-align: left;
    margin: 0;
    padding: 0;
    opacity: 1;
    transform: none;
    animation: none;
}

.why-card h4 {
    color: #0d1b2a;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-align: left;
}

.why-card p {
    margin: 0;
    color: rgba(0, 0, 0, 0.5);
    font-size: var(--font-size-base);
    text-align: left;
}

/* ======== Landmark Section ======== */
.landmark-section {
    width: 100%;
    background: linear-gradient(to bottom, #e4ebf6, #202b46);
    min-height: 90vh;
    color: #333;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    overflow: hidden;
    animation: fadeInLandmark 1.2s ease forwards;
    padding-left: 110px; /* Space for global sidebar */
}

/* Remove individual sidebar from landmark section */
.landmark-side {
    display: none;
}

.landmark-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.landmark-header {
    text-align: center;
    margin-bottom: 50px;
    color: #b35a10;
}

.landmark-header h2 {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.landmark-header p {
    font-size: 1rem;
    color: rgb(102, 100, 100);
    opacity: 0.8;
}

.landmark-cards {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.landmark-card {
    width: 330px;
    height: 470px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #000;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeUpLandmark 1s ease forwards;
}

.landmark-card:nth-child(2) {
    animation-delay: 0.3s;
}

.landmark-card:nth-child(3) {
    animation-delay: 0.5s;
}

.landmark-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.landmark-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.5);
}

.landmark-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
}

.landmark-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.landmark-info p {
    font-size: 0.9rem;
    color: #ddd;
    margin-top: 5px;
}

.landmark-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 7px 18px;
    border: 1px solid var(--accent-orange);
    border-radius: 20px;
    color: var(--accent-orange);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landmark-btn:hover {
    background-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 0 10px var(--accent-orange);
}

/* ======== Contact Section ======== */
.reachus-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 95vh;
    padding: 40px 60px;
    background: #fff;
    box-sizing: border-box;
    padding-left: 170px; /* Space for global sidebar */
}

/* Remove individual sidebar from contact section */
.reachus-wrapper .sidebar {
    display: none;
}

.reachus-form-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

.reachus-heading {
    color: #c36b29;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 8px;
}

.reachus-divider {
    width: 80px;
    height: 2px;
    background-color: #c36b29;
    margin: 0 auto 25px;
}

.reachus-form-box {
    background: #e8eff8;
    border: 1px solid #c7d1e0;
    border-radius: 14px;
    padding: 30px 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
}

.reachus-subtitle {
    text-align: center;
    color: #1f2a44;
    font-size: 1.5625rem;
    margin-bottom: 4px;
    font-weight: 400;
}

.reachus-description {
    text-align: center;
    color: #7d7f85;
    font-size: 1rem;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.reachus-names {
    display: flex;
    gap: 10px;
}

.reachus-field {
    width: 100%;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #bfc8d6;
    border-radius: 25px;
    outline: none;
    font-size: var(--font-size-sm);
    color: #1f2a44;
    background-color: #fff;
    box-sizing: border-box;
}

.reachus-phone {
    display: flex;
    gap: 5px;
}

.reachus-phone select {
    flex: 0 0 80px;
}

.reachus-phone input {
    flex: 1;
}

textarea {
    border-radius: 15px;
    resize: none;
    height: 100px;
    font-family: inherit;
}

.form button {
    width: 100%;
    background: #c36b29;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 3px 6px rgba(195, 107, 41, 0.3);
}

.form button:hover {
    background: #a4581f;
    transform: translateY(-2px);
}

.reachus-terms {
    text-align: center;
    font-size: 12px;
    color: #4a566e;
    margin-top: 10px;
}

.reachus-terms a {
    color: #1f2a44;
    font-weight: 500;
    text-decoration: none;
}

.reachus-terms a:hover {
    text-decoration: underline;
}

/* ======== Animations ======== */
@keyframes fadeUpLandmark {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInLandmark {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ======== Mobile Responsive Styles ======== */
@media (max-width: 991px) {
    
    body {
        padding-top: 60px;
    }
    
    :root {
        --navbar-height: 60px;
        --section-padding: 20px;
        --font-size-4xl: 24px;
        --font-size-5xl: 28px;
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 0 20px;
        justify-content: space-between;
        position: relative;
    }

    /* Hide global sidebar on mobile */
    .global-sidebar {
        display: none !important;
        z-index: 1;
    }
    .navbar ul {
        display: flex;
        position: fixed;
        top: 0;
        right: -250px;
        height: 100vh;
        width: 250px;
        background-color: white;
        flex-direction: column;
        padding: 80px 20px 20px 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 1000;
        transition: right 0.3s ease;
        gap: 20px;
    }

    .navbar ul.show {
        right: 0;
    }

    .navbar ul li {
        margin: 10px 0;
        width: 100%;
    }

    .navbar ul li a {
        font-size: 16px;
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .hamburger {
        display: flex;
        order: -1;
    }

    .navbar .lang {
        display: none;
    }

    .navbar .logo img {
        width: 150px;
    }

    /* Hero Section Mobile */
    .hero {
        margin: 10px;
        height: 60vh;
        border-radius: 20px;
        background-size: cover;
        background-position: center;
    }

    .hero::after {
        width: 100%;
        border-radius: 20px;
        background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.3) 100%
        );
    }

    .hero-content {
        bottom: 30px;
        left: 20px;
        right: 20px;
        max-width: calc(60% - 40px);
        text-align: left;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-content .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* About Section Mobile */
    .about {
        height: auto;
        min-height: 80vh;
        background-size: cover;
        background-position: center;
    }

    .overlay {
        width: 100% !important;
        max-width: 100vw;
        flex-direction: column;
        padding: 40px 20px;
        background: rgba(0, 0, 0, 0.8);
    }

    .overlay::after {
        display: none;
    }

    .sidebar {
        display: none;
    }

    .content {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
        padding: 0;
    }

    .content h3 {
        font-size: 30px;
        margin-bottom: 0px;
    }

    .content h3::after {
        display: none;
    }

    .content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .content p {
        font-size: 16px;
        max-width: 100%;
        line-height: 1.6;
    }

    button {
        font-size: 16px;
        padding: 12px 24px;
        margin-top: 20px;
    }

    /* Services Section Mobile */
    .services {
        flex-direction: column;
        background-color: #DDE5F0;
        padding: 20px 0;
    }

    .sidebar1 {
        display: none;
    }

    .services .content {
        margin: 0;
        padding: 20px;
        max-width: 100%;
    }

    .content h3::after {
        display: none;
    }

    .header {
        margin-bottom: 0px;
    }

    .header h3 {
        margin-left: 0;
        text-align: center;
        font-size: 18px;
    }

    .header h2 {
        margin-right: 0;
        text-align: center;
        font-size: 24px;
    }

    .cards-container {
        overflow-x: hidden;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }

    .card {
        flex: none;
        width: 100%;
        max-width: 320px;
        height: auto;
        margin: 0;
    }

    .card img {
        width: 90%;
        height: 180px;
        margin: 10px auto;
        display: block;
    }

    .card h4 {
        font-size: 16px;
        margin: 15px;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .card p {
        font-size: 14px;
        margin: 15px;
        margin-top: 0px;
        max-width: calc(100% - 30px);
    }

    /* Why Section Mobile */
    .why-section {
        margin: 30px auto;
        padding: 0 20px;
        max-width: 100%;
    }

    .why-section h2 {
        font-size: 24px;
    }

    .why-section h2::before,
    .why-section h2::after {
        width: 30px;
    }

    .why-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .why-cards {
        gap: 15px;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .why-card img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 40px;
        height: 40px;
    }

    .why-card h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .why-card p {
        font-size: 14px;
    }

    /* Landmark Section Mobile */
    .landmark-section {
        flex-direction: column;
        min-height: auto;
        padding: 0;
    }

    .landmark-side {
        display: none;
    }

    .landmark-content {
        padding: 40px 20px;
        width: 100%;
    }

    .landmark-header h2 {
        font-size: 24px;
    }

    .landmark-header p {
        font-size: 14px;
    }

    .landmark-cards {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .landmark-card {
        width: 100%;
        max-width: 320px;
        height: 400px;
    }

    .landmark-info h3 {
        font-size: 18px;
    }

    .landmark-info p {
        font-size: 14px;
    }

    .landmark-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    /* Contact Section Mobile */
    .reachus-wrapper {
        flex-direction: column;
        padding: 20px;
        height: auto;
        gap: 0;
    }

    .reachus-wrapper .sidebar {
        display: none;
    }

    .reachus-form-area {
        margin-right: 0;
        width: 100%;
        margin-top: 20px;
    }

    .reachus-heading {
        font-size: 24px;
    }

    .reachus-form-box {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        box-sizing: border-box;
    }

    .reachus-subtitle {
        font-size: 20px;
    }

    .reachus-description {
        font-size: 14px;
    }

    form {
        width: 100%;
        max-width: 100%;
    }

    .reachus-names {
        flex-direction: column;
        gap: 15px;
    }

    .reachus-names input {
        width: 100%;
    }

    .reachus-phone {
        flex-direction: column;
        gap: 15px;
    }

    .reachus-phone select,
    .reachus-phone input {
        width: 100%;
    }

    input, select, textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }

    /* Update Banner Mobile */
    .update-banner-fixed {
        font-size: 12px;
        padding: 8px 0;
    }

    body {
        padding-top: 0px;
    }
}

/* Extra Small Screens */
@media (max-width: 480px) {
    .navbar .logo img {
        width: 130px;
    }

    .hero {
        height: 50vh;
        margin: 5px;
        width: calc(100% - 10px);
    }

    .hero-content h1 {
        font-size: var(--font-size-xl);
    }

    .hero-content p {
        font-size: 13px;
    }

    .landmark-card {
        width: 95%;
        height: 250px;
    }

    .reachus-form-box {
        padding: 15px;
    }
}