/* 
    Vakruntada Luxury Real Estate - Stylesheet
    Theme: Ultra Luxury, Dark, Glassmorphism
*/

:root {
    /* Primary Colors */
    --gold: #D4AF37;
    --gold-light: #F1D592;
    --gold-dark: #996515;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #333333;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(15px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 60px 0;
}

.text-gold { color: var(--gold); }
.text-center { text-align: center; }

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25d366;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    box-shadow: var(--glass-shadow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-medium);
}

.navbar.sticky {
    padding: 0.8rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.sticky .nav-logo {
    height: 55px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-left: auto; /* Pushes menu to the right side */
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.nav-logo {
    height: 70px; /* Increased from 50px */
    width: auto;
    object-fit: contain;
    transition: var(--transition-medium);
}

@media (max-width: 768px) {
    .nav-logo {
        height: 55px; /* Scaled for mobile */
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
    text-align: center; /* Center text */
    overflow: hidden;
    padding-bottom: 2rem; /* Added padding-bottom */
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    max-width: 1400px; /* Increased to allow one-line text */
    width: 95%;
    z-index: 1;
    margin-top: 120px; /* Increased gap from 60px to 120px */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h4 {
    font-size: 1rem;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--gold);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem); 
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-content p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem); /* Reduced size for better balance */
    margin-bottom: 3rem;
    max-width: 100%; /* Allow full width for one line */
    white-space: nowrap; /* Forces one line */
    opacity: 0.9;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem; /* Increased from 3rem */
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem; /* Increased from 1rem */
}

.stat-item {
    padding: 1.5rem 2.5rem;
    text-align: left;
}

.stat-item span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-item h3 {
    font-size: 1.5rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Sections Common */
.section-title {
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-top: 1rem;
    white-space: nowrap; /* Ensures heading stays on one line */
}

/* Project Overview */
.split-layout {
    display: flex;
    align-items: stretch;
    gap: 3rem;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image .image-frame {
    height: 100%;
    display: flex;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1.2;
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    text-align: justify;
}

.counter-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.counter-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.counter-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Highlights */
.section-subtitle {
    max-width: 1200px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
    text-align: center;
}

.highlights-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
    margin-top: 2rem;
    justify-content: center; /* Center grid items if they don't fill the row */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    transition: var(--transition-fast);
}

.highlight-item:hover {
    transform: translateX(10px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.highlight-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.highlight-info .label {
    font-size: 0.9rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.highlight-info .value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

/* Amenities */
.amenities-circular-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem 2rem;
    margin-top: 4rem;
}

.amenity-circular-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
    transition: var(--transition-fast);
}

.amenity-circular-item:hover {
    transform: translateY(-5px);
}

.circular-icon {
    width: 90px;
    height: 90px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition-fast);
}

.amenity-circular-item:hover .circular-icon {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.amenity-circular-item span {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.amenity-circular-item.hidden {
    display: none;
}

#show-more-amenities {
    margin-top: 2rem;
}

/* Floor Plan */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.tabs {
    display: flex;
    gap: 1rem;
    padding: 0.5rem;
    background: var(--glass-bg);
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.tab-btn {
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn.active {
    background: var(--gold);
    color: var(--black);
}

.tab-content {
    position: relative;
    min-height: 500px;
}

.floorplan-card {
    display: none;
    align-items: center;
    gap: 4rem;
    padding: 3rem;
    animation: fadeIn 0.5s ease;
}

.floorplan-card.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.floorplan-info {
    flex: 1;
}

.floorplan-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.floorplan-info p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.floor-pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.price-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.floor-pricing h2 {
    font-size: 2.2rem;
    margin: 0;
}

.floor-details {
    margin-bottom: 2.5rem;
}

.floor-details li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.floor-details li strong {
    color: var(--gold);
}

.floorplan-image {
    flex: 1.2;
}

.floorplan-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-medium);
}

.floorplan-image img:hover {
    transform: scale(1.05);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pricing-card {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition-medium);
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    background: rgba(212, 175, 55, 0.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.price span {
    font-size: 0.8rem;
    opacity: 0.7;
    display: block;
}

.price h2 {
    font-size: 3rem;
    margin: 1rem 0 2rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--gold);
}

/* Gallery */
/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.6rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
    }
}

.gallery-slider-container {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-item.hide {
    display: none;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 350px;
    border-radius: 8px;
    flex: 0 0 33.333%;
    padding: 0 10px;
}

@media (min-width: 993px) {
    .gallery-slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        transform: none !important;
    }
    .gallery-item {
        flex: none;
        padding: 0;
    }
    .gallery-dots {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 100%;
        height: 250px;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-overlay span {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    background: var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

/* Location */
.location-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-medium);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item.active {
    border-color: var(--gold);
}

.accordion-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.acc-title {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.acc-title i {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.acc-title span {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.accordion-header .fa-chevron-down {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .fa-chevron-down {
    transform: rotate(180deg);
    color: var(--gold);
    opacity: 1;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 4.5rem;
}

.accordion-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.accordion-content li {
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
}

.accordion-content li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.accordion-content li strong {
    color: var(--gold);
    font-weight: 500;
}

.location-split {
    align-items: center;
    justify-content: center;
}

.location-split .split-content,
.location-split .split-image {
    flex: 1;
    max-width: 600px;
}

.location-split .split-image {
    display: flex;
    justify-content: center;
}

.location-accordion {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative; /* Added for overlay positioning */
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 5;
    cursor: pointer;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* 3D Virtual Tour */
.virtual-tour-section {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.virtual-tour-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.virtual-tour-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.virtual-tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.virtual-tour-content {
    position: relative;
    z-index: 1;
}

.mt-4 { margin-top: 2rem; }
.mr-2 { margin-right: 0.5rem; }
.btn-lg { padding: 1.2rem 2.5rem; font-size: 1.1rem; }

/* Testimonials */
.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 4rem;
    text-align: center;
}

.stars {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-size: 1.4rem;
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.client-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.client-info h4 {
    margin-bottom: 0.2rem;
}

.client-info span {
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 10px;
}

/* Contact Form Section */
.contact-container {
    display: flex;
    gap: 5rem;
    padding: 5rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 3rem;
    margin: 1.5rem 0;
}

.contact-info p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.badge i {
    color: var(--gold);
    font-size: 1.5rem;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--white);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 3rem;
}

.form-group select option {
    background: #1A1A1A;
    color: var(--white);
    padding: 1rem;
}

.w-100 { width: 100%; }

/* Footer */
.footer {
    background: #050505;
    border-top: 1px solid var(--glass-border);
    padding: 5rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top-logo {
    margin-bottom: 3rem;
}

.footer-top-logo .footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.rera-section {
    margin-bottom: 2.5rem;
}

.rera-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.rera-section p {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.footer-contact-info {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-contact-info .separator {
    opacity: 0.5;
}

.footer-disclaimer {
    max-width: 1100px;
    margin: 0 auto 4rem;
    text-align: justify;
    padding: 0 1rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.8;
    opacity: 0.6;
    color: var(--white);
}

.footer-bottom-new {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.5;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a:hover {
    color: var(--gold);
}

/* Popup Form */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.popup-overlay.active {
    display: flex;
}

.new-lead-form {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    color: var(--white);
    max-width: 420px; /* Increased back to 420px */
    width: 90%;
    padding: 2rem; /* Increased padding */
    border-radius: 15px;
    position: relative;
    text-align: center;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.9);
    animation: popupFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.popup-logo-container {
    margin-bottom: 1rem; /* Increased margin */
    display: flex;
    justify-content: center;
}

.popup-logo {
    height: 40px; /* Increased height */
    width: auto;
}

.popup-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Increased gap */
    margin-bottom: 0.5rem; /* Increased margin */
}

.header-flag-emoji {
    font-size: 1.5rem;
}

.popup-header-new h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem; /* Increased font size */
    color: var(--gold);
    margin: 0;
}

.popup-header-new p {
    font-size: 0.85rem; /* Increased font size */
    color: var(--white);
    opacity: 0.7;
    margin-bottom: 1.5rem; /* Increased margin */
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Increased gap between form groups */
}

.contact-form-new .form-group input,
.contact-form-new .form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem; /* Slightly increased padding */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem; /* Slightly larger text */
    transition: var(--transition-fast);
}

.contact-form-new .form-group input:focus,
.contact-form-new .form-group select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.phone-group {
    display: flex;
    gap: 0.8rem; /* Increased gap */
}

/* Custom Country Dropdown */
.custom-country-dropdown {
    position: relative;
    width: 120px;
    flex-shrink: 0;
}

.selected-country {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem 1rem;
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.selected-country .flag-img {
    width: 25px;
    height: auto;
    border-radius: 2px;
}

.selected-country .code {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.selected-country i {
    font-size: 0.8rem;
    color: var(--gold);
    margin-left: auto;
    transition: transform 0.3s ease;
}

.custom-country-dropdown.active .selected-country i {
    transform: rotate(180deg);
}

.country-list {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    display: none;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-country-dropdown.active .country-list {
    display: block;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    color: #333;
    border-bottom: 1px solid #eee;
}

.country-option:last-child {
    border-bottom: none;
}

.country-option:hover {
    background: #f8f8f8;
}

.country-option img {
    width: 25px;
    height: auto;
    border-radius: 2px;
}

.country-option span {
    font-size: 0.95rem;
    font-weight: 500;
}

.phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-input-container input {
    padding-left: 1.2rem !important; /* Reset padding since emoji/flag is gone */
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--white);
    opacity: 0.6;
    margin: 0.5rem 0; /* Increased margin */
}

.btn-priority {
    background: var(--gold);
    color: var(--black);
    padding: 1rem; /* Increased padding */
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-top: 0.5rem;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-priority:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.popup-footer-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem; /* Increased margin */
    padding-top: 1.2rem; /* Increased padding */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-item i {
    font-size: 1.1rem; /* Slightly larger icons */
    color: var(--gold);
}

.badge-item span {
    font-size: 0.65rem; /* Slightly larger text */
    color: var(--white);
    opacity: 0.6;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--white);
    opacity: 0.5;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.close-popup:hover {
    opacity: 1;
}

/* Mobile Sticky CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
    z-index: 999;
    padding: 0.6rem 0;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.cta-item i {
    font-size: 1.4rem;
}

.cta-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #444444;
    font-family: var(--font-body);
}

.enquire-cta i { color: #d4af37; }
.whatsapp-cta i { color: #25d366; }
.call-cta i { color: #007bff; }

.cta-item:active {
    transform: scale(0.95);
    opacity: 0.7;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .container { max-width: 95%; }
    .split-layout { gap: 2rem; }
    .highlights-grid-new { grid-template-columns: repeat(3, 1fr); }
    .amenities-circular-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .section-padding { padding: 80px 0; }
    
    .navbar { padding: 1rem 0; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-medium);
        z-index: 999;
    }
    
    .nav-links.active { right: 0; }
    
    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }

    .hamburger { display: flex; z-index: 1000; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

    .split-layout { flex-direction: column; text-align: center; }
    .split-image img { height: 450px; }
    .counter-grid { 
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         justify-content: center; 
         gap: 0.8rem; 
         flex-wrap: nowrap; 
         margin-top: 2rem;
         padding: 0 1rem;
     }
     .counter-item {
         background: rgba(255, 255, 255, 0.03);
         border: 1px solid var(--glass-border);
         padding: 1.2rem 0.5rem;
         border-radius: 8px;
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         min-width: 0;
     }
     .counter-item h3 { 
         font-size: 1.2rem; 
         margin-bottom: 0.4rem;
         white-space: nowrap;
     }
     .counter-item p { 
         font-size: 0.8rem; 
         letter-spacing: 1px;
         opacity: 0.8;
     }
    
    .highlights-grid-new { grid-template-columns: repeat(2, 1fr); }
    .amenities-circular-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-container { 
        flex-direction: column; 
        padding: 3rem 2rem; 
        gap: 3rem;
        text-align: center;
    }
    .trust-badges { align-items: center; }
}

@media (max-width: 768px) {
    .section-padding { padding: 0 0; }
    .hero { padding-bottom: 0; min-height: auto; height: auto; padding-top: 80px; } 
    .section-title { margin-bottom: 1rem; }
    .hero-stats { margin-bottom: 0.5rem; }
    .hero-content { margin-top: 0; margin-bottom: 1.5rem; }
    .section-title h2 { font-size: 1.6rem; white-space: normal; line-height: 1.3; }
    .section-title h4 { font-size: 0.75rem; }
    
    .hero-content { margin-top: 30px; }
    .hero-content h1 { 
        font-size: 3.5rem; /* Massive size for Project Name */
        white-space: normal; 
        line-height: 0.85; 
        letter-spacing: -2px;
        margin-bottom: 1.5rem;
        font-weight: 900;
        text-transform: uppercase;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-content h1 .text-gold {
        display: block;
        font-size: 1.2rem; /* Reduced to be clean and secondary */
        margin-top: 15px;
        font-weight: 600;
        text-transform: none;
        letter-spacing: 1px;
        line-height: 1.4;
        opacity: 0.9;
    }
    .hero-content p { 
        font-size: 1.1rem; 
        white-space: normal; 
        margin-bottom: 2rem; 
        padding: 0 0.5rem;
        opacity: 0.95;
        line-height: 1.4;
    }
    
    .hero-btns { 
        flex-direction: column; 
        width: 100%; 
        max-width: 300px; 
        gap: 1rem; 
        padding: 0;
        margin-bottom: 3rem;
    }
    .hero-btns .btn { 
        width: 100%;
        padding: 1rem; 
        font-size: 0.9rem; 
        letter-spacing: 1px;
    }
    
    .hero-stats { 
        flex-direction: column; 
        gap: 1rem; 
        width: 100%; 
        max-width: 300px;
        padding: 0;
        margin-bottom: 2rem;
    }
    .stat-item { 
        width: 100%;
        padding: 1.2rem; 
        text-align: center; 
    }
    .stat-item span { font-size: 0.75rem; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
    .stat-item h3 { font-size: 1.3rem; }

    .highlights-grid-new { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 0.8rem; 
        margin-top: 1rem;
    }
    .highlight-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--glass-border);
        padding: 0.8rem 0.5rem;
        border-radius: 8px;
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
    }
    .highlight-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin: 0 auto;
    }
    .highlight-info .label {
        font-size: 0.6rem;
    }
    .highlight-info .value {
        font-size: 0.75rem;
    }
    .highlight-item:hover { transform: none; }
    
    .floorplan-card { 
        flex-direction: column; 
        padding: 2rem 1.5rem; 
        gap: 2.5rem; 
        text-align: center;
    }
    .floor-pricing {
        border-left: none;
        border-bottom: 3px solid var(--gold);
        padding: 1rem;
    }
    .floor-pricing h2 { font-size: 1.8rem; }
    
    .floor-details li {
        justify-content: center;
        gap: 10px;
    }
    
    .accordion-item.active .accordion-content { padding: 0 1rem 1.5rem 1rem; }
    .acc-title span { font-size: 1rem; }
    
    .virtual-tour-section {
        height: auto;
        padding: 4rem 0;
        min-height: 400px;
    }
    .virtual-tour-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .virtual-tour-content .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    .virtual-tour-content .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        white-space: nowrap;
        margin-top: 1rem;
    }
    .whatsapp-float { bottom: 90px; right: 20px; width: 50px; height: 50px; font-size: 25px; }
    
    .testimonial-card { padding: 2.5rem 1.5rem; }
    .testimonial-card p { font-size: 1.1rem; }
    
    .footer { padding: 3rem 0 5rem; }
    .footer-contact-info { flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
    .footer-contact-info .separator { display: none; }
    .footer-bottom-new { flex-direction: column; gap: 1rem; text-align: center; }
    .rera-section { margin-bottom: 2rem; }
    .rera-status { font-size: 1rem; margin-bottom: 0.6rem; }
    .rera-section p { font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .section-title h2 { font-size: 1.4rem; }
    .hero-content h1 { font-size: 0.9rem; }
    .hero-content p { font-size: 0.65rem; }
    
    .amenities-circular-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0.5rem; }
    .circular-icon { width: 60px; height: 60px; font-size: 1.2rem; }
    .amenity-circular-item span { font-size: 0.75rem; }
    
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 200px; }
    
    .tab-btn { padding: 0.5rem 1rem; font-size: 0.75rem; }
    .tabs { gap: 0.3rem; }
    
    .new-lead-form { padding: 1.2rem; }
    .phone-group { flex-direction: column; }
    .custom-country-dropdown { width: 100%; }
    
    .counter-item h3 { font-size: 1.6rem; }
    .counter-item p { font-size: 0.75rem; }
}

/* Reveal Animation Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    height: 180px;
    width: auto;
    object-fit: contain;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.3; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(0.9); }
}
