/* ================================
   CSS Reset & Base Styles
   ================================ */

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

:root {
    /* Color Palette */
    --primary-gold: #c9a05c;
    --dark-navy: #1a1f2e;
    --deep-blue: #2c3e50;
    --light-cream: #f5f3ef;
    --soft-white: #ffffff;
    --gray-text: #666666;
    --light-gray: #e8e8e8;
    --accent-copper: #b87333;

    /* Typography - Using size-adjust to prevent CLS */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--deep-blue);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--soft-white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

/* ================================
   Typography
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
}

/* ================================
   Section Headers
   ================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ================================
   Buttons
   ================================ */

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--soft-white);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 160, 92, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-navy);
    border: 2px solid var(--dark-navy);
}

.btn-secondary:hover {
    background: var(--dark-navy);
    color: var(--soft-white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 12px 30px;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--soft-white);
}

.cta-button {
    background: var(--primary-gold);
    color: var(--soft-white);
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--accent-copper);
    transform: translateY(-2px);
}

/* ================================
   Header & Navigation
   ================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--soft-white);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--soft-white);
    transition: var(--transition);
}

/* ================================
   Hero Section
   ================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 140px; /* Increased to prevent header overlap on desktop */
}

/* Hero Carousel Styles */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Removed carousel-track - no longer needed */

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.5s ease-in-out;
    background-color: var(--dark-navy); /* Prevent empty appearance during image load */
    will-change: opacity;
    transform: translateZ(0); /* Force GPU compositing */
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Branded Facilities Grid */
.branded-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    max-width: 900px;
    min-height: 100px; /* Reserve space to prevent CLS */
}

.facility-badge {
    background: rgba(26, 31, 46, 0.75);
    border: 2px solid var(--primary-gold);
    color: var(--soft-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    /* Prevent font swap CLS */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.facility-badge:hover {
    background: var(--primary-gold);
    color: var(--dark-navy);
    transform: translateY(-2px);
}

/* Carousel Navigation Dots */
.carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 2px solid transparent;
    will-change: transform, opacity;
}

.carousel-dot:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.carousel-dot.active {
    background: var(--primary-gold);
    transform: scale(1.15);
    border-color: var(--soft-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.45) 0%, rgba(44, 62, 80, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--soft-white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--soft-white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    color: var(--light-cream);
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

/* Hero CTA Section Below Carousel */
.hero-cta-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2c3e50 100%);
    padding: 40px 0;
    border-bottom: 3px solid var(--primary-gold);
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Removed scroll indicator */

/* ================================
   About Section
   ================================ */

.about {
    padding: var(--section-padding);
    background: var(--light-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--soft-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.highlight-item h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ================================
   Configurations Section
   ================================ */

.configurations {
    padding: var(--section-padding);
    background: var(--soft-white);
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.config-card {
    background: var(--light-cream);
    overflow: hidden;
    transition: var(--transition);
}

.config-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.config-image {
    height: 350px;
    overflow: hidden;
}

.config-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.config-card:hover .config-image img {
    transform: scale(1.1);
}

.config-content {
    padding: 40px;
}

.config-content h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 0.5rem;
}

.config-size {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.config-features {
    list-style: none;
    margin-bottom: 2rem;
}

.config-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray-text);
}

.config-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ================================
   Amenities Section
   ================================ */

.amenities {
    padding: var(--section-padding);
    background: var(--dark-navy);
    color: var(--soft-white);
}

.amenities .section-subtitle {
    color: var(--primary-gold);
}

.amenities .section-title {
    color: var(--soft-white);
}

.amenities-categories {
    display: grid;
    gap: 50px;
}

.amenity-category h3 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-align: center;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.amenity-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.amenity-item:hover {
    background: rgba(201, 160, 92, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.amenity-item p {
    font-size: 0.95rem;
    color: var(--light-cream);
    margin: 0;
}

/* ================================
   Gallery Section
   ================================ */

.gallery {
    padding: var(--section-padding);
    background: var(--light-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 3rem;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-actions {
    text-align: center;
}

/* ================================
   Location Section
   ================================ */

.location {
    padding: var(--section-padding);
    background: var(--soft-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.location-category {
    background: var(--light-cream);
    padding: 25px;
    border-left: 4px solid var(--primary-gold);
}

.location-category h3 {
    font-size: 1.2rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.location-category ul {
    list-style: none;
}

.location-category li {
    padding: 8px 0;
    color: var(--gray-text);
    padding-left: 20px;
    position: relative;
}

.location-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.location-highlight {
    background: var(--primary-gold);
    color: var(--soft-white);
    padding: 30px;
    margin-top: 2rem;
    text-align: center;
}

.location-highlight h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.location-map {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ================================
   Construction Updates
   ================================ */

.construction-updates {
    padding: var(--section-padding);
    background: var(--light-cream);
}

.updates-content {
    text-align: center;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.video-item {
    position: relative;
}

.video-placeholder {
    position: relative;
    height: 300px;
    background: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--soft-white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--accent-copper);
}

/* ================================
   NRI Section
   ================================ */

.nri {
    padding: var(--section-padding);
    background: var(--soft-white);
}

.nri-content {
    max-width: 1000px;
    margin: 0 auto;
}

.nri-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--light-cream);
    padding: 35px;
    border-top: 4px solid var(--primary-gold);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-text);
    line-height: 1.7;
}

/* ================================
   FAQ Section
   ================================ */

.faq {
    padding: var(--section-padding);
    background: var(--light-cream);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--soft-white);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-gold);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-navy);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-gold);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray-text);
    line-height: 1.8;
}

/* ================================
   Contact Section
   ================================ */

.contact {
    padding: var(--section-padding);
    background: var(--soft-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item strong {
    display: block;
    color: var(--dark-navy);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-gold);
    font-size: 1.05rem;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    color: var(--gray-text);
}

.contact-form-wrapper {
    background: var(--light-cream);
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-navy);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    background: var(--soft-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.country-code-select {
    width: 100px;
    max-width: 100px;
    padding: 12px 8px;
    border: 2px solid var(--light-gray);
    background: var(--soft-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.country-code-select:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.phone-input-group input[type="tel"] {
    flex: 1;
    min-width: 0;
    padding: 12px 15px;
}

/* ================================
   Modal
   ================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--soft-white);
    margin: auto;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--gray-text);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-gold);
}

.modal-content h2 {
    color: var(--dark-navy);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form button[type="submit"] {
    width: 100%;
    margin-top: 10px;
}

/* ================================
   Success Modal
   ================================ */

.success-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.success-modal.active {
    display: flex;
}

.success-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.4s ease;
    position: relative;
}

.success-icon {
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease;
}

.success-icon svg {
    filter: drop-shadow(0 4px 8px rgba(201, 160, 92, 0.3));
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-modal-content h2 {
    color: var(--dark-navy);
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-modal-content p {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.success-subtext {
    font-size: 0.95rem;
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-weight: 500;
}

.success-modal-content .btn {
    margin-top: 20px;
    padding: 12px 40px;
    font-size: 1rem;
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--dark-navy);
    color: var(--soft-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: var(--light-cream);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--light-cream);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--light-cream);
    font-size: 0.9rem;
}

/* ================================
   Floating Action Buttons
   ================================ */

.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

/* Hide floating brochure button on desktop - only show on mobile */
.floating-brochure-btn {
    display: none;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--soft-white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.fab:hover {
    transform: scale(1.1);
    background: var(--accent-copper);
}

/* ================================
   Animations
   ================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
    }

    .config-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--dark-navy);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Hide Download Brochure from header on mobile */
    .navbar .cta-button {
        display: none;
    }

    /* Show floating Download Brochure button on mobile */
    .floating-brochure-btn {
        display: flex !important;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .branded-facilities {
        gap: 8px;
        margin: 20px auto;
    }

    .facility-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .carousel-dots {
        margin-top: 20px;
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-dot.active {
        width: 12px;
        height: 12px;
    }

    .hero-cta-section {
        padding: 30px 0;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn-large {
        width: 100%;
        padding: 14px 30px;
        font-size: 1rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .config-grid {
        grid-template-columns: 1fr;
    }

    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-item {
        height: 200px;
    }

    .location-categories {
        grid-template-columns: 1fr;
    }

    .nri-benefits {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .amenity-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}
