/* Global Variables */
:root {
    --primary-color: #D4AF37;
    /* Metallic Gold */
    --primary-dark: #aa8a2e;
    --primary-light: #f2d06b;
    --bg-dark: #12031f;
    /* Deep Dark Purple/Black */
    --bg-card: rgba(255, 255, 255, 0.05);
    --secondary-color: #ffffff;
    --text-color: #e0e0e0;
    --text-muted: #a0a0a0;
    --border-color: rgba(212, 175, 55, 0.3);

    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.text-gold {
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

/* Buttons */
.btn-primary,
.btn-gold-large,
.btn-gold-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    color: #000 !important;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700 !important;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover,
.btn-gold-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
    /* Lighter on hover */
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    /* Assuming this is light text */
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    /* Clearer border */
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    /* High contrast: dark text on white */
    border-color: #fff;
}

.btn-outline {
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    padding: 8px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary-color) !important;
    color: #000000 !important;
}

.btn-outline-light:hover {
    background: #ffffff !important;
    color: #000000 !important;
}

/* Global Button Hover Contrast Fix - Force black text on gold/white backgrounds */
.btn-primary:hover,
.btn-gold-large:hover,
.btn-gold-box:hover,
.btn-outline:hover,
.btn-outline-light:hover,
.btn-outline-box:hover,
.btn-secondary:hover,
.features-actions .btn-outline-box:hover,
.feature-actions .btn-outline-box:hover,
.hero-btns .btn-outline-light:hover {
    background-color: var(--primary-color) !important;
    color: #000000 !important;
}

/* Ensure icons inside buttons also become black on hover */
.btn-primary:hover i,
.btn-gold-large:hover i,
.btn-gold-box:hover i,
.btn-outline:hover i,
.btn-outline-light:hover i,
.btn-outline-box:hover i,
.btn-secondary:hover i {
    color: #000000 !important;
}

/* Ensure icons also change color */
.btn-primary:hover i,
.btn-gold-large:hover i,
.btn-gold-box:hover i,
.btn-outline:hover i,
.btn-outline-light:hover i,
.btn-outline-box:hover i {
    color: #000000 !important;
}

/* Catch-all for any button component to guarantee hover readability */
.btn:hover,
button:hover,
[type="submit"]:hover {
    color: #000000 !important;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 2, 20, 0.8);
    /* Slightly more transparent for glass effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Ensure full width usage within container */
}

/* Logo Alignment Fix */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    /* Increased gap for better readability */
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    padding: 5px 0;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover Animation - Glowing Gold Underline */
.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    /* Gradient to match the glowing line image: transparent -> gold -> transparent */
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
}

.nav-links a:not(.btn-primary):not(.btn-outline):hover,
.nav-links a:not(.btn-primary):not(.btn-outline).active {
    color: var(--primary-color) !important;
}

.nav-links a:not(.btn-primary):not(.btn-outline):hover::after,
.nav-links a.active:not(.btn-primary):not(.btn-outline)::after {
    width: 100%;
    opacity: 1;
}

/* Exclude hover line from button and ensure button alignment */
.nav-links .btn-primary {
    margin-left: 10px;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 2px;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    border: none;
    background: transparent;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    margin: 6px 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

/* Hamburger Active State */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* Video is handled by .hero-video */
}

/* Enhancing Overlay for Depth */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark Left Panel (30-40%) fading to transparent for Video (60-70%) */
    background: linear-gradient(to right,
            rgba(11, 2, 20, 0.98) 0%,
            rgba(11, 2, 20, 0.95) 30%,
            rgba(11, 2, 20, 0.6) 45%,
            rgba(11, 2, 20, 0) 65%);
    z-index: 1;
}

.hero .container,
.hero .container-fluid {
    position: relative;
    z-index: 2;
}

/* Premium Badge Style */
.hero .badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--primary-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px !important;
    /* Override inline style if any */
}

/* Enhanced Typography */
.hero h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Modern Typography & Layout */
.hero .text-gradient {
    background: linear-gradient(120deg, #f3e5b5 0%, #d4af37 50%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.hero-btns {
    margin-top: 40px;
}

/* Hero Stats Strip */
.hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(18, 3, 31, 0.85);
    /* Darker background for readability */
    backdrop-filter: blur(15px);
    padding: 30px 60px;
    border-top-left-radius: 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.stat-label {
    color: #ccc;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.scroll-down span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* About Section */
.about-section {
    background: radial-gradient(circle at 0% 50%, rgba(85, 26, 139, 0.2), transparent 50%);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 300;
}

.about-image {
    flex: 1;
}

.glow-image {
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
}

/* Premium Features Section */
.premium-features {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1e0b2e 100%);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.separator-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 20px auto;
}

.features-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
    transition: var(--transition);
}

.feature-row:hover {
    border-color: var(--primary-color);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-text {
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.features-image-area {
    flex: 1.2;
    position: relative;
}

.floating-img {
    animation: float 6s ease-in-out infinite;
    max-height: 400px;
    margin: 0 auto;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.feature-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-outline-box {
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    padding: 12px 30px;
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700 !important;
    letter-spacing: 1px;
    transition: var(--transition);
    background: transparent !important;
}

.btn-outline-box:hover {
    background: var(--primary-color) !important;
    color: #000000 !important;
    border-color: var(--primary-color) !important;
}

.btn-gold-box {
    background: var(--primary-color);
    color: #000 !important;
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.btn-gold-box:hover {
    background: var(--primary-color) !important;
    color: #000000 !important;
    transform: translateY(-2px);
}

/* Floor Layouts (Gallery) */
.layouts-section {
    padding-top: 50px;
}

.small-heading {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.layout-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.layout-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.layout-card:hover img {
    transform: scale(1.1);
}

.card-icon,
.card-arrow,
.card-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px;
    border-radius: 4px;
}

/* Experience Luxury (Contact) */
.experience-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 50px;
    /* Simulate the particle background via image or gradient */
    background: url('assets/images/vasant vihar.jpg') center/cover no-repeat;
    /* Reuse image with overlay */
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 3, 31, 0.85);
    z-index: 1;
}

.relative-z {
    position: relative;
    z-index: 2;
    width: 100%;
}

.luxury-form-container {
    max-width: 900px;
    margin: 50px auto 0;
}

.inline-form {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .inline-form {
        flex-direction: column;
        gap: 15px;
    }
}

.input-group {
    flex: 1;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: #fff;
    font-family: inherit;
    border-radius: 4px;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.btn-gold-large {
    min-width: 300px;
    padding: 15px 40px;
    font-size: 1rem;
    background: linear-gradient(90deg, #aa8a2e, #d4af37, #aa8a2e);
    background-size: 200%;
    animation: shine 4s infinite linear;
}

@keyframes shine {
    to {
        background-position: 200%;
    }
}

.small-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.modal-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.luxury-modal-content {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: auto;
    aspect-ratio: auto;
    max-width: 500px;
}

.luxury-modal-content .form-control {
    border-radius: 6px;
    padding: 1rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #fff !important;
}

.luxury-modal-content .section-title {
    color: var(--primary-color) !important;
    font-family: 'Playfair Display', serif;
}

.luxury-modal-content p,
.luxury-modal-content .text-muted {
    color: #ffffff !important;
    opacity: 0.9;
    font-size: 1rem;
}

.luxury-modal-content .small-heading {
    color: var(--primary-color) !important;
    letter-spacing: 2px;
    font-weight: 700;
}

.luxury-modal-content .form-control:focus {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-color) !important;
}

/* Fix for Floating Labels in Dark Theme */
.form-floating > label {
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.6) !important;
    height: 100%;
}

.form-floating > label::after {
    display: none !important;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    background-color: transparent !important;
    color: var(--primary-color) !important;
    opacity: 1;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.luxury-modal-content .form-floating > label {
    padding-left: 1rem;
}

.form-floating > .form-control {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

/* Restored Sections: Amenities */
.amenities-section {
    background-color: var(--bg-dark);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

.amenity-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    height: 100%;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.amenity-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card>* {
    position: relative;
    z-index: 1;
}

.amenity-card h3 {
    margin-bottom: 25px;
    color: #fff;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.amenity-card h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    margin-top: 12px;
    transition: width 0.4s ease;
}

.amenity-card:hover h3::after {
    width: 70px;
}

.amenity-list li {
    margin-bottom: 18px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-list li {
    color: #fff;
}

.amenity-list li i {
    width: 34px;
    height: 34px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.amenity-list li:hover i {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.15);
    border-color: var(--primary-color);
}

/* Restored Sections: Specifications */
.specs-section {
    background: #0f0219;
    /* Slightly darker */
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

.spec-item {
    position: relative;
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 15px 15px 0;
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
}

.spec-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
    transition: width 0.4s ease;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(10px);
    box-shadow: -5px 10px 30px rgba(0, 0, 0, 0.3);
}

.spec-item:hover::before {
    width: 100%;
}

.spec-item h4 {
    position: relative;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

.spec-item p {
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-right: 10px;
}

/* Restored Sections: Location */
.location-section {
    background-color: var(--bg-dark);
}

.location-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.loc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    color: var(--text-muted);
}

.loc-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.loc-item strong {
    color: #fff;
}

.map-frame {
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
    filter: invert(90%) hue-rotate(180deg);
    /* Dark mode map simulation */
}

/* Gallery Section */
.gallery-section {
    background-color: #12031f;
}

/* Modern Gallery Grid */
.modern-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    padding: 20px 0;
}

.gallery-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
    /* Fill the grid cell */
}

/* Featured Items Sizing */
.gallery-card.featured-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card.featured-wide {
    grid-column: span 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Modern Overlay */
.gallery-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.gallery-card .overlay i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.gallery-card .overlay h4 {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .modern-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    /* On tablet, keep large items spanning 2 cols */
    .gallery-card.featured-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-card.featured-wide {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .modern-gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .gallery-card {
        height: 250px;
    }

    /* Reset spans on mobile */
    .gallery-card.featured-large,
    .gallery-card.featured-wide {
        grid-column: auto;
        grid-row: auto;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2001;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#caption {
    margin: 15px auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    font-family: var(--font-body);
    font-size: 1.1rem;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #18122B;
    /* Deep purple/blue matching the reference image */
    padding: 60px 0 30px;
    font-size: 0.95rem;
    /* Slightly larger text */
    color: #e0e0e0;
    /* Much lighter grey */
}

/* Force high contrast for muted text in footer */
.footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer .text-light {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer strong {
    color: #fff;
    font-weight: 600;
}

.footer-logo-main {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}

.jv-logo {
    max-height: 60px;
    width: auto;
    border-radius: 4px;
    /* Slight rounding if using rectangular logos */
    background: #fff;
    /* Ensure logos have white bg if they are transparent pngs intended for light bg */
    padding: 5px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
}

.credits-title {
    background: #18122B;
    /* Match footer bg */
    z-index: 10;
}

/* Responsive */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        display: none !important;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(18, 3, 31, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        text-align: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .display-3 {
        font-size: 2rem !important;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-content .row {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .feature-row {
        padding: 15px;
    }

    .amenity-card,
    .spec-item {
        padding: 25px;
    }

    .footer-section h3 {
        font-size: 1.5rem !important;
    }

    .inline-form {
        flex-direction: column;
        gap: 15px;
    }

    .location-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .logo-img {
        height: 40px;
        max-width: 180px;
    }

    .location-list .loc-item {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: row;
        justify-content: space-between;
        padding-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 12px 20px;
        justify-content: center;
    }


    .btn-gold-large {
        width: 100%;
        min-width: auto;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 15px;
    }

    .whatsapp-float,
    .call-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .call-float {
        bottom: 80px;
        /* Positioned above WA on mobile */
    }

    /* Fix for smaller mobile screens hero content */
    .hero-content {
        padding-top: 60px !important;
    }

    .badge {
        font-size: 0.7rem;
        padding: 6px 15px;
    }

    .about-desc {
        font-size: 0.9rem;
    }
}

/* Ensure all images are responsive */
@media (max-width: 768px) {
    .img-fluid {
        margin-bottom: 20px;
    }

    .hero-content {
        text-align: center !important;
    }

    .hero-btns {
        justify-content: center !important;
    }

    .hero h1 {
        margin: 0 auto 1.5rem !important;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-float {
    position: fixed;
    bottom: 150px;
    right: 30px;
    background: var(--primary-color);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.call-float:hover {
    transform: scale(1.1);
    color: #000;
    background: #fff;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {

    .whatsapp-float:active,
    .call-float:active {
        transform: scale(0.95);
    }
}


@media (max-width: 768px) {

    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .call-float {
        bottom: 85px;
        /* WhatsApp ke upar */
        right: 15px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}