/* Luxury Real Estate Design System */

:root {
    /* Colors */
    --luxury-gold: #D4AF37;
    --luxury-bronze: #8B4513;
    --luxury-cream: #FEF9E7;
    --luxury-green: #2D5016;
    --luxury-green-light: #E8F5E8;
    
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-luxury: linear-gradient(135deg, var(--luxury-gold), var(--luxury-bronze));
    --gradient-hero: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(139, 69, 19, 0.9));
    --gradient-section: linear-gradient(180deg, var(--luxury-cream), var(--white));
    
    /* Shadows */
    --shadow-luxury: 0 10px 40px -10px rgba(139, 69, 19, 0.3);
    --shadow-card: 0 4px 20px -2px rgba(139, 69, 19, 0.1);
    --shadow-elegant: 0 20px 60px -10px rgba(139, 69, 19, 0.2);
    
    /* Transitions */
    --transition-luxury: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.3s ease-in-out;
    
    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
    background: white;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
  height: 80px;  /* adjust size as needed */
  width: auto;   /* keeps proportions */
  display: block;
	margin-left: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
}


.logo {
    width: 3rem;
    height: 3rem;
    /*background: var(--gradient-luxury);*/
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    color: var(--white);
    font-weight: bold;
    font-size: 1.25rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--luxury-bronze);
    font-weight: bold;
    font-size: 1.25rem;
}

.brand-subtitle {
    color: var(--luxury-gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition-smooth);
	    border-right: 2px solid #8B4513;
    padding-right: 20px;
}
@media(max-width:1024px){
	
	.nav-link{
	border-right: none;
    padding-right: 0px;
	}
}
.nav-link:hover {
    color: var(--luxury-bronze);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
	/*background: linear-gradient(to right, #a85c39, #deb265);*/
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 0.125rem;
    background: var(--gray-700);
    transition: var(--transition-smooth);
}

/* Hero Section */
/* Hero Fonts */
.hero-title {
  font-family: 'Playfair Display', serif; /* luxury heading */
  font-size: 3rem;
  font-weight: 700;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif; /* modern clean text */
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
}

.hero-buttons .btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.hero {
  position: relative;
  height: 100vh; /* full screen */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: url('images/slider-new-1.webp') no-repeat center center/cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: rgba(0, 0, 0, 0.5); /* dark overlay */*/
  z-index: -1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.pattern-circle {
  position: absolute;
  width: 16rem;
  height: 16rem;
  background: var(--gradient-luxury);
  border-radius: 50%;
  filter: blur(3rem);
}

.pattern-1 { top: 25%; left: 25%; }
.pattern-2 { bottom: 25%; right: 25%; }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin: 0 0 1rem 0;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Buttons in one row, equal width and height */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap; /* allows stacking on small screens */
}

.hero-buttons .btn {
  flex: 1;
  max-width: 200px;
  padding: 1rem 0;
  text-align: center;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

/* Primary Button */
.btn-primary {
  background: var(--white);
  color: var(--luxury-bronze);
  box-shadow: var(--shadow-elegant);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--luxury-bronze);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
  text-decoration: none;
}

.scroll-arrow:hover {
  color: #fff;
}

.scroll-arrow svg {
  width: 2rem;
  height: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2.2rem; }
  .hero-heading { font-size: 2rem; }
  .hero-description { font-size: 1rem; }
  .hero-buttons .btn { max-width: 100%; }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-gradient {
    background: var(--gradient-section);
}

.section-cream {
    background: var(--luxury-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--luxury-bronze);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

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

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row */
    gap: 1.5rem; /* smaller gap to reduce height */
    justify-items: center;
    margin: 2rem 0; /* top and bottom spacing */
}

/* Amenity Card */
.amenity-card {
    text-align: center;
    background: var(--white);
    padding: 1.5rem; /* slightly smaller for compact look */
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 75%;
    aspect-ratio: 1 / 0.95; /* slightly shorter than perfect square */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elegant);
}

/* Font Awesome Icon Styling */
.amenity-icon {
    font-size: 2.5rem;
    color: var(--white);
    background: var(--gradient-luxury);
    border-radius: 0.5rem;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s;
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
}

/* Titles */
.amenity-title {
    font-family: 'Playfair Display', serif; /* luxury font */
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--luxury-bronze);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* Remove description if you only want icon + title */
/* .amenity-description {
    display: none;
} */

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* CSS for Two Column Specifications Layout */
.specs-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.column-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    transition: var(--transition-smooth);
}

.column-item:hover {
    padding-left: 0.5rem;
    border-left: 3px solid var(--luxury-bronze);
}

.column-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gradient-luxury);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.column-item:hover .column-icon {
    transform: scale(1.05);
}

.column-content h3 {
    color: var(--luxury-bronze);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.column-content p {
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Remove bottom border from last items */
.column-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .specs-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .column-item {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .column-icon {
        width: 2.5rem;
        height: 2.5rem;
        min-width: 2.5rem;
    }
    
    .column-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .column-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .specs-columns {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .column-item {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }
    
    .column-icon {
        width: 2.25rem;
        height: 2.25rem;
        min-width: 2.25rem;
    }
    
    .column-content h3 {
        font-size: 0.95rem;
    }
    
    .column-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .column-item:hover {
        padding-left: 0.25rem;
        border-left-width: 2px;
    }
    
    .specifications-showcase img {
        height: 20rem;
    }
    
    .quality-features p {
        font-size: 1rem;
    }
}

/* Large Mobile/Small Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .column-item {
        padding: 0.75rem;
        border-radius: 0.5rem;
        background: rgba(248, 249, 250, 0.5);
        border-bottom: 1px solid #e5e7eb;
    }
    
    .column-item:hover {
        background: rgba(248, 249, 250, 0.8);
        border-left: 3px solid var(--luxury-bronze);
        padding-left: 1rem;
    }
}

/* Keep existing showcase styles */
.specifications-showcase {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.specifications-showcase img {
    width: 100%;
    height: 31.25rem;
    object-fit: cover;
}

.quality-features {
    margin-top: 1.5rem;
}

.quality-features p {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    box-shadow: var(--shadow-elegant);
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
}

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

.gallery-content {
    color: var(--white);
    padding: 1rem;
}

.gallery-title {
    font-size: 1.25rem;
    font-weight: 600;
}

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

.cta-card {
    background: var(--luxury-cream);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    max-width: 48rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--luxury-bronze);
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 80rem;
    max-height: 80vh;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--luxury-gold);
}

.lightbox img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* Floor Plans Section */
.floor-plan-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.plan-tabs {
    display: flex;
    background: var(--white);
    border-radius: 0.75rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-card);
}

.plan-tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--luxury-bronze);
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.plan-tab.active {
    background: var(--gradient-luxury);
    color: var(--white);
}

.plan-tab:hover:not(.active) {
    background: var(--luxury-cream);
}

.floor-plan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.floor-plan-image .plan-image-container {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}

.floor-plan-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.plan-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--luxury-bronze);
    margin-bottom: 1rem;
}

.plan-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.plan-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--luxury-gold);
    font-weight: 600;
    font-size: 1.25rem;
}

.features-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--luxury-bronze);
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--gradient-luxury);
    border-radius: 50%;
}

.master-layout {
    text-align: center;
}

.master-layout .section-header {
    margin-bottom: 3rem;
}

.layout-image {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.layout-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Brochure Section */
 .brochure-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 25px;
        }
        
        .brochure-btn {
               display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 99px;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #5c3a2a;
            text-decoration: none;
            color: #5c3a2a;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(92, 58, 42, 0.1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(164, 88, 58, 0.1);
            padding: 20px;
        }
        
        .brochure-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(92, 58, 42, 0.2);
            background: #fdf5f0;
        }
        
        .brochure-btn i {
            font-size: 2.5rem;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            background: linear-gradient(to right, #a4583a, #d67f5a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .brochure-btn:hover i {
            transform: scale(1.1);
        }
        
        .brochure-btn span {
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
        }
        
        /* Decorative elements */
        .decoration {
            position: absolute;
            opacity: 0.1;
            pointer-events: none;
        }
        
        .decoration.circle {
            width: 80px;
            height: 80px;
            border: 2px solid #a4583a;
            border-radius: 50%;
            top: -20px;
            right: -20px;
        }
        
        .decoration.square {
            width: 40px;
            height: 40px;
            border: 2px solid #a4583a;
            bottom: -10px;
            left: -10px;
            transform: rotate(45deg);
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .brochure-buttons {
                gap: 15px;
            }
            
            .brochure-btn {
                width: 220px;
                height: 100px;
                border-radius: 10px;
            }
            
            .brochure-btn i {
                font-size: 2rem;
            }
            
            .brochure-btn span {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .brochure-buttons {
                flex-direction: column;
                align-items: center;
            }
               .brochure-btn {
        width: 160px;
        height: 99px;
        border-radius: 9px;
        margin-bottom: 15px;
            }
        }
.brochure-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.brochure-preview .preview-container {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-elegant);
}

.brochure-preview img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.info-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--luxury-bronze);
    margin-bottom: 2rem;
}

.info-features {
    margin-bottom: 2rem;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--luxury-gold);
    font-size: 1.125rem;
}

.download-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 2rem;
}

.download-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--luxury-bronze);
    margin-bottom: 1rem;
}

.download-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.download-btn {
    width: 100%;
    justify-content: center;
}

.contact-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-card);
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--luxury-bronze);
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--luxury-gold);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--luxury-bronze);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.developer-info,
.office-hours,
.project-details {
    background: var(--luxury-cream);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
}

.office-hours {
    background: var(--white);
}

.project-details {
    background: var(--white);
}

.info-section-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--luxury-bronze);
    margin-bottom: 1.5rem;
}

.info-items,
.hours-list,
.detail-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item,
.hours-item,
.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hours-item,
.detail-item {
    justify-content: space-between;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-primary {
    font-weight: 600;
    color: var(--luxury-bronze);
}

.info-secondary {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.appointment-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--luxury-green-light);
    border-radius: 0.5rem;
    color: var(--luxury-green);
    font-weight: 500;
}

.footer {
            background: linear-gradient(to right, #1a1a1a, #2d2d2d);
            color: #ffffff;
            padding: 50px 40px 30px;
            /*border-radius: 8px;*/
            width: 100%;
            max-width: 1530px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-brand {
            padding-right: 20px;
        }
        
        .footer-brand-name {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .footer-description {
            font-size: 16px;
            line-height: 1.6;
            color: #cccccc;
            margin-bottom: 25px;
        }
        
        .footer-section {
            display: flex;
            flex-direction: column;
        }
        
        .footer-section-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #ffffff;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 8px;
        }
        
        .footer-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: #ab5d3a;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: #e74c3c;
            padding-left: 5px;
        }
        
        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            color: #cccccc;
            font-size: 15px;
        }
        
        .contact-item i {
            margin-right: 12px;
            color: #ab5d3a;
            font-size: 16px;
            width: 20px;
        }
        
        .location-info {
            color: #cccccc;
            font-size: 15px;
            line-height: 1.6;
        }
        
        .location-actions {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }
        
        .location-link {
            color: #ab5d3a;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .location-link:hover {
            text-decoration: underline;
        }
        
        .footer-bottom {
            border-top: 1px solid #444444;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .copyright {
            font-size: 16px;
            color: #999999;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: #ab5d3a;
            transform: translateY(-3px);
        }
        
        .footer-logo {
    max-width: 180px; /* adjust as needed */
    height: auto;
    margin-bottom: 12px;
}
    .map-container {
    width: 100%;
    max-width: 400px; /* keep map neat */
    margin-top: 10px;
}
        /* Responsive design */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-card);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .floor-plan-content,
    .brochure-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-developer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-heading {
        font-size: 1.75rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .amenities-grid,
    .specifications-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .plan-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .hero-brand-text {
        text-align: left;
    }
    
    .cta-card {
        padding: 2rem 1rem;
    }
}


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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
}

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



.nav-links {
    display: flex;
    gap: 20px;
}



.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0,0,0,0.5);*/
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-heading {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ff6b00;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* Sections */
.section {
    padding: 45px 0;
}

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





/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.amenity-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.10);
    transition: transform 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
}


.amenity-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* Specifications */
.specs-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.column-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}



.column-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #222;
}

.column-content p {
    font-size: 0.9rem;
    color: #666;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Brochure */
.brochure-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}


.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
}

.footer-section-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}



.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.contact-item i {
    
    min-width: 20px;
}

.location-details {
    line-height: 1.5;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    font-size: 19px;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff6b00;
    transform: translateY(-3px);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

/* Media Queries for 320px screens */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        min-height: 400px;
        margin-top: 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-heading {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    /* Amenities */
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .amenity-card {
        padding: 15px;
    }
    
    .amenity-icon {
        font-size: 1.5rem;
    }
    
    /* Specifications */
    .specs-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .column-item {
        margin-bottom: 20px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Brochure */
    .brochure-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .brochure-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .map-container iframe {
        height: 200px;
    }
    
    /* Lightbox */
    .lightbox-close {
        top: -30px;
        font-size: 1.5rem;
    }
}

/* Additional adjustments for very small screens (320px and below) */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-heading {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .amenity-card h3 {
        font-size: 0.9rem;
    }
    
    .column-content h3 {
        font-size: 1rem;
    }
    
    .footer-section-title {
        font-size: 1.1rem;
    }
}

/* Mobile styles for hero section */
@media (max-width: 768px) {
    .hero {
        height: 60vh !important;
        min-height: unset !important;
        margin-top: 50px !important;
    }
    
    /* Additional mobile adjustments for content */
    .hero-content {
        padding: 0 15px;
        transform: translateY(-20px); /* Optional: adjust content positioning */
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-heading {
        font-size: 1.4rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Extra small devices (phones, 320px and below) */
@media (max-width: 320px) {
    .hero {
        height: 60vh !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .hero-heading {
        font-size: 1.2rem !important;
    }
}

/* Default (Desktop) → ek hi line */
.copyright {
    text-align: center;
    font-size: 14px; /* thoda chhota jisse bada na lage */
    line-height: 1.6;
    margin: 0;
    white-space: nowrap; /* ek line me rakhega */
}

.copy-sub {
    display: inline; /* desktop me inline rahega */
    margin-left: 5px;
}

/* Mobile (max 480px) → do line me tod do */
@media (max-width: 480px) {
    .copyright {
        font-size: 16px;
        white-space: normal; /* allow line break */
    }

    .copy-sub {
        display: block; /* second line me le aao */
        margin-left: 0;
    }
}

/* Responsive Navbar Toggle */
@media (max-width: 1024px) {
  .nav-links {
    position: absolute;
    top: 80px; /* adjust based on your navbar height */
    right: 0;
    background: white;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
    display: none; /* hidden by default */
    box-shadow: var(--shadow-card);
  }

  .nav-links.active {
    display: flex; /* show when toggled */
  }

  .mobile-menu-btn {
    display: flex;
    margin-right: 2rem;
  }
}
