:root {
    --theme-color: #a3826c;
    --text-white: #ffffff;
    --bg-dark: #121c26;
}

/* --- FIX OVERFLOW ISSUE --- */
*, *::before, *::after {
    box-sizing: border-box; /* Eh padding nu width de andar hi rakhega */
}

html, body {
    overflow-x: hidden; /* Eh horizontal scroll (side-scroll) nu completely band kar dega */
    width: 100%;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; 
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700; 
}

/* Transparent & Sticky Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    padding: 25px 0;
    color: var(--text-white);
}

.site-header.sticky {
    background-color: var(--bg-dark);
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Phone Section */
.header-phone {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
}

/* Desktop Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

/* --- Navigation Links Hover Divider --- */
.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    position: relative; 
    padding-bottom: 5px; 
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0; 
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--theme-color);
    transition: width 0.3s ease; 
}

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

.nav-links a:hover::after {
    width: 100%; 
}

.header-logo {
    color: var(--text-white);
    text-decoration: none;
    text-align: center;
}

/* --- Button Smooth Sliding Effect (Fixed) --- */
.btn-outline {
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 12px 24px;
    text-decoration: none;
    display: inline-block;
    position: relative; 
    overflow: hidden; 
    transition: color 0.4s ease, border-color 0.4s ease;
    z-index: 1; 
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; 
    width: 100%;
    height: 100%;
    background-color: var(--theme-color);
    transition: left 0.4s ease; 
    z-index: -1; 
}

.btn-outline:hover {
    color: var(--text-white); 
    border-color: var(--theme-color); 
}

.btn-outline:hover::before {
    left: 0; 
}

/* --- Mobile Menu Styles --- */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: 0.3s;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -300px; 
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1002;
    transition: left 0.4s ease;
    padding: 30px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.sidebar-menu.active {
    left: 0; 
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s;
}

.sidebar-links a:hover {
    color: var(--theme-color);
}

.sidebar-footer {
    margin-top: auto; /* Push footer to bottom */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    display: none;
}

.overlay.active {
    display: block;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .header-nav { display: none; } 
    .header-action { display: none; } 
    .header-phone { display: none; } 
    .hamburger-btn { display: flex; } 
    
    .header-container {
        justify-content: space-between;
    }
    
    .header-logo {
        margin: 0 auto;
    }
}

/* --- Hero Section Luxury Design --- */
.hero-section {
    position: relative;
    height: 100vh; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(18, 28, 38, 0.5), rgba(18, 28, 38, 0.7)), 
                url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?q=80&w=2075&auto=format&fit=crop') no-repeat center center/cover;
    color: var(--text-white, #ffffff);
    text-align: center;
    padding: 0 20px;
    z-index: 1; 
}

.hero-content {
    max-width: 900px;
    margin-top: 50px; 
}

.hero-title {
    font-size: 4rem; 
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
}

.hero-text {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Solid Gold Button */
.btn-solid-gold {
    background-color: var(--theme-color, #a3826c);
    color: #ffffff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    border: 1px solid var(--theme-color, #a3826c);
}

.btn-solid-gold:hover {
    background-color: transparent; 
    color: var(--theme-color, #a3826c);
}

/* Bottom Corner Info */
.hero-bottom-info {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    text-align: left;
}

.info-left h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.info-left p {
    margin: 5px 0 0 0;
    font-size: 16px;
    opacity: 0.9;
}

.info-right h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

/* Responsive Code for Mobile */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-text { font-size: 1rem; }
    .hero-bottom-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        bottom: 20px;
        padding: 0 20px;
    }
}

/*/////////////map section css/////////////*/


/* --- Interactive Map Section --- */
.interactive-map-section {
    padding: 100px 0;
    background-color: #ffffff; /* Clean white background */
}

.map-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.map-column {
    flex: 1 1 50%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-container {
    width: 100%;
    max-width: 600px; /* Control map size */
}

.map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-instruction {
    margin-top: 15px;
    font-size: 14px;
    color: #666666;
    font-style: italic;
}

.text-column {
    flex: 1 1 40%;
    min-width: 300px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-navy, #101c2c); /* Dark navy from your theme */
    line-height: 1.3;
    margin-bottom: 20px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background-color: var(--theme-color, #a3826c);
    margin-bottom: 30px;
}

.section-description {
    font-size: 1.2rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .map-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .title-divider {
        margin: 0 auto 30px auto; /* Center the divider on mobile */
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}