/* ============================================
   HERO HOMES VRINDAVAN - COMPLETE STYLING - ishadev.
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a8a;
    --secondary: #fbbf24;
    --text: #f8fafc;
    --text-muted: #cbd5e1;
    --bg: #0f172a;
    --bg-light: #1e293b;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #0f172a, #1e3a8a, #0f172a);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    transition: var(--transition, 0.3s ease);
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #fbbf24;
    font-weight: 700;
    line-height: 1;
}

/* Navigation Menu (Desktop) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: #ffffff; /* Fallback text color */
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #fbbf24;
}

/* Mobile Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px;
    transition: 0.3s ease-in-out;
}

/* Perfect "X" Animation Fix */
.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* CTA Button */
.nav-cta {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta:hover {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   MOBILE RESPONSIVE STYLES (Max-width: 768px)
   ============================================ */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-container {
        gap: 0.5rem;
    }

    .logo-text h1 {
        font-size: 1rem; /* Text chota kiya taaki mobile par adjust ho sake */
    }

    /* Show hamburger */
    .menu-toggle {
        display: flex;
        order: 2; /* Logo ke baad dikhega */
    }

    /* Enquire Now Button on Mobile */
    .nav-cta {
        order: 3; /* Sabse last mein right side par alignment ke liye */
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }

    /* Mobile Menu Drawer style */
    .nav-menu {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        padding: 2rem;
        border-bottom: 1px solid rgba(251, 191, 36, 0.2);
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }
}
/* ============================================
   MOBILE RESPONSIVE STYLES (Max-width: 768px)
   ============================================ */

/* ============================================
   MOBILE RESPONSIVE STYLES (Max-width: 768px)
   ============================================ */

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-container {
        width: 100%;
        gap: 0.5rem; /* Reduce gap so items don't push each other out */
        justify-content: space-between;
    }

    /* Prevent the long logo text from taking too much space */
    .logo-text h1 {
        font-size: 1.1rem; 
        white-space: nowrap;
    }

    /* Show the hamburger menu icon */
    .menu-toggle {
        display: flex;
    }

    /* Hide the mobile menu out of view by default */
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed; /* Changed to fixed to cover the screen nicely */
        top: 60px; /* Adjust based on your navbar height */
        left: -100%; /* Push it completely off-screen to the left */
        width: 100%;
        height: calc(100vh - 60px);
        background: #0f172a;
        padding: 3rem 2rem;
        gap: 2rem;
        justify-content: flex-start;
        transition: all 0.3s ease-in-out;
        z-index: 999;
    }

    /* Slide the menu in when active */
    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }

    /* Make the CTA button slightly more compact for mobile viewports */
    .nav-cta {
        padding: 0.5rem 0.85rem;
        font-size: 0.8rem;
    }
}
/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-slide.active {
    opacity: 1;
    animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(30, 58, 138, 0.6) 50%, rgba(15, 23, 42, 0.7) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.5);
    border-radius: 2rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fcd34d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title .highlight {
    color: #fbbf24;
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    color: #fcd34d;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 0.75rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.btn {
    padding: 0.9rem 2.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #fbbf24;
    color: #fbbf24;
}

.btn-secondary:hover {
    background: rgba(251, 191, 36, 0.1);
    transform: translateY(-3px);
}

.hero-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(251, 191, 36, 0.7);
}

.dot.active {
    background: #fbbf24;
    width: 2.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    text-align: center;
    animation: bounce 2s infinite;
    font-size: 0.9rem;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.section-label {
    color: #fbbf24;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .highlight {
    color: #fbbf24;
}

.section-subtitle {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   OVERVIEW SECTION
   ============================================ */

.overview {
    background: rgba(30, 41, 59, 0.3);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.overview-image img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-text p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.6));
}

.gallery-main {
    position: relative;
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    height: 500px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    padding: 2rem;
    color: var(--text);
}

.gallery-overlay h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: #cbd5e1;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.gallery-btn {
    background: rgba(15, 23, 42, 0.8);
    color: #fbbf24;
    border: none;
    padding: 1rem 1.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition);
}

.gallery-btn:hover {
    background: rgba(251, 191, 36, 0.6);
    transform: scale(1.1);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}

.gallery-thumb {
    cursor: pointer;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 3px solid transparent;
    transition: var(--transition);
    height: 100px;
}

.gallery-thumb.active {
    border-color: #fbbf24;
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: rgba(30, 41, 59, 0.3);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.about-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-presence {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
}

.about-presence h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.presence-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
}

.presence-item::before {
    content: "✓";
    color: #fbbf24;
    font-weight: bold;
    flex-shrink: 0;
}

/* Philosophy Section */
.philosophy-section {
    margin-top: 4rem;
}

.philosophy-intro {
    text-align: center;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.philosophy-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: var(--transition);
}

.philosophy-card:hover {
    border-color: #fbbf24;
    transform: translateY(-5px);
}

.philosophy-card h4 {
    font-family: 'Cinzel', serif;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.philosophy-card p {
    color: #cbd5e1;
    line-height: 1.8;
}

/* Mission/Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-card, .vision-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
}

.mission-card h3, .vision-card h3 {
    font-family: 'Cinzel', serif;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.mission-card h4, .vision-card h4 {
    color: #fcd34d;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.mission-card p, .vision-card p {
    color: #cbd5e1;
    line-height: 1.8;
}

/* Why Choose */
.why-choose {
    margin-top: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: var(--transition);
}

.why-card:hover {
    border-color: #fbbf24;
    transform: translateY(-3px);
}

.why-card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.why-card-title::before {
    content: "✓";
    color: #fbbf24;
    font-weight: bold;
    font-size: 1.25rem;
}

.why-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* ============================================
   AMENITIES SECTION
   ============================================ */

.amenities {
    background: rgba(30, 41, 59, 0.3);
}

.amenities-image {
    width: 100%;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.amenity-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.amenity-card:hover {
    border-color: #fbbf24;
    transform: translateY(-3px);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.amenity-card h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.amenity-card p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */
/* Base styles & Mobile layout (Default) */
/* --- Base Section Styles --- */
.pricing {
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.6));
    /* CRITICAL: Added padding on the left and right so cards don't touch screen edges */
    padding: 2rem 1rem; 
    box-sizing: border-box;
}

/* --- Mobile-First Layout (Fixes the cutoff) --- */
.pricing-grid {
    display: grid;
    /* By default on mobile, cards stack perfectly in 1 single column */
    grid-template-columns: 1fr; 
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
}

.pricing-card {
   background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid #fbbf24;
    border-radius: 0.75rem;
    padding: 21px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.pricing-card h4 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.pricing-subtitle {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.pricing-card .price {
  font-size: 28px;
    color: #fbbf24;
    font-weight: 700;
    margin: 1.2rem 0;
    line-height: 26px;
}

/* Mobile width par button padding fix */
@media screen and (max-width: 480px) {
    section.pricing .pricing-grid .pricing-card button.btn.btn-primary {
        padding: 10px 10px !important;
        font-size: 0.9rem !important;
        display: inline-block !important; 
        width: auto !important; 
    }
    .pricing-card .price {
    font-size: 20px;
    color: #fbbf24;
    font-weight: 700;
    margin: 1.2rem 0;
    line-height: 26px;
}
}
/* --- Responsive Adjustments for Larger Screens --- */

/* Small tablets / Larger Phones (e.g., landscape mobile) */
@media (min-width: 480px) {
    .pricing-grid {
        /* Safely transitions into 2 columns when there is enough screen width */
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    }
    
}

/* Desktop Screens */
@media (min-width: 768px) {
    .pricing {
        padding: 4rem 2rem;
    }
    
    .pricing-grid {
        /* Changes to 4 columns or wraps nicely based on standard 250px limits */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
  
}

/* --- Note Section --- */
.pricing-note {
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
    text-align: center;
}

.pricing-note p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}
/* ============================================
   LOCATION SECTION
   ============================================ */

/* Location Section */
.location-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:center;
}

.location-image{
    width:100%;
    overflow:hidden;
    border-radius:12px;
}

.location-image iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}

/* Mobile Responsive */
@media (max-width:768px){

    .location-grid{
        grid-template-columns:1fr;
    }

    .location-image iframe{
        width:100%;
        height:300px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.3), rgba(15, 23, 42, 0.6));
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
    display: flex;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-info h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: #cbd5e1;
     word-break: break-all;
    overflow-wrap: break-word;
}

.contact-info a {
    color: #fbbf24;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: #0f172a;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    padding: 3rem 2rem;
    color: #cbd5e1;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-content .copyright {
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.footer-content .disclaimer {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   MODALS
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.75rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fbbf24;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: #121b2dc7;
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 0.5rem;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #fbbf24;
    background: #121b2dc7;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-buttons button {
    flex: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-container {
        gap: 1rem;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.98);
        padding: 1rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero {
        margin-top: 60px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 3rem 1rem;
    }

    .overview-grid,
    .about-grid,
    .mission-vision,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 300px;
    }

    .gallery-controls {
        left: 0.5rem;
        right: 0.5rem;
    }

    .gallery-btn {
        padding: 0.75rem 1rem;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }

    .modal-content {
        padding: 1.5rem;
    }

    .scroll-indicator {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-controls {
        bottom: 1.5rem;
    }

    .dot {
        width: 0.6rem;
        height: 0.6rem;
    }

    .dot.active {
        width: 1.8rem;
    }

    .pricing-grid,
    .amenities-grid,
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .logo-text h1 {
        font-size: 0.9rem;
    }

    .logo-icon {
        font-size: 1.3rem;
    }
}




/*sticky-footer*/
/* Mobile Sticky Footer */
.mobile-sticky-footer{
    display:none;
}

@media (max-width:768px){

    body{
        padding-bottom:60px;
    }

    .mobile-sticky-footer{
        display:flex;
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        z-index:9999;
        background:#b79a63;
        box-shadow:0 -2px 10px rgba(0,0,0,0.15);
    }

    .mobile-sticky-footer .sticky-btn{
        flex:1;
        text-align:center;
        padding:14px 5px;
        color:#fff;
        text-decoration:none;
        font-weight:600;
        font-size:15px;
        border-right:1px solid rgba(255,255,255,0.3);
        display:flex;
        align-items:center;
        justify-content:center;
        gap:6px;
    }

    .mobile-sticky-footer .sticky-btn:last-child{
        border-right:none;
    }

    .mobile-sticky-footer img{
        width:18px;
        height:18px;
        object-fit:contain;
    }

    .enquire-btn,
    .whatsapp-btn,
    .call-btn{
        background:#b79a63;
    }
}




/* Container positioning */
.desktop-floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Base button styling */
.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* WhatsApp brand color */
.whatsapp-btn {
    background-color: #25D366;
}
.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

/* Call button color */
.call-btn {
    background-color: #007bff;
}
.call-btn:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Icon size */
.floating-btn i {
    font-size: 20px;
}

/* ============================================
   CRITICAL: ONLY SHOW ON DESKTOP (Hide on Mobile)
   ============================================ */
@media (max-width: 1024px) {
    .desktop-floating-buttons {
        display: none !important; 
}