/* ============================================
   PRESTIGE KOLLUR - COMPLETE STYLESHEET
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1a0a2e;
    --primary-light: #2d1b4e;
    --gold: #FFD700;
    --gold-dark: #c9a227;
    --orange: #FF6B35;
    --blue: #00D4FF;
    --green: #00C853;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-dark: #2d3748;
    --text-light: #718096;
    --gradient-primary: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #4a1942 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-vibrant: linear-gradient(135deg, #FF6B35 0%, #FFD700 50%, #00D4FF 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

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

/* Buttons */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

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

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

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

.btn-whatsapp {
    background: var(--green);
    color: var(--white);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
}

.logo-text span {
    color: var(--gold-dark);
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-desktop ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

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

.nav-desktop ul li a:hover,
.nav-desktop ul li a.active {
    color: var(--primary);
}

.nav-desktop ul li a:hover::after,
.nav-desktop ul li a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.header-phone i {
    color: var(--gold-dark);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: 999;
    padding: 30px 20px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu nav ul {
    list-style: none;
}

.mobile-menu nav ul li {
    margin-bottom: 15px;
}

.mobile-menu nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu nav ul li a:hover,
.mobile-menu nav ul li a.active {
    color: var(--gold);
}

.mobile-menu-cta {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-cta .btn {
    justify-content: center;
    padding: 15px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFD70010" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid var(--gold);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

.hero-badge span {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero h1 span {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.hero-feature i {
    color: var(--gold);
}

.trust-badges {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    opacity: 0.9;
}

.trust-badge i {
    color: var(--gold);
}

/* Hero Form */
.hero-form {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.form-btn {
    width: 100%;
    padding: 15px;
    background: var(--gradient-gold);
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.form-footer i {
    color: var(--green);
    margin-right: 5px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--white);
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    border-right: 1px solid #e2e8f0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-number span {
    color: var(--gold-dark);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 3px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ============================================
   EOI BENEFITS
   ============================================ */
.eoi-benefits {
    padding: 60px 0;
    background: var(--light-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.benefit-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.6rem;
    color: var(--gold);
}

.benefit-card h3 {
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 60px 0;
}

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

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text h2 span {
    color: var(--gold-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features-list {
    margin: 25px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.about-feature-item i {
    width: 26px;
    height: 26px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.about-image {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder i {
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.3;
}

.about-stats-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    padding: 60px 0;
    background: var(--light-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-item i {
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    color: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.location-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

.location-item span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.location-map {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 350px;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.map-placeholder p {
    opacity: 0.8;
}

/* ============================================
   PROJECT GALLERY
   ============================================ */
.project-gallery {
    padding: 60px 0;
}

.gallery-showcase {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

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

.gallery-showcase:hover .gallery-image-wrapper img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-badge {
    background: rgba(255, 215, 0, 0.9);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gallery-info {
    padding: 30px;
    text-align: center;
}

.gallery-info h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.gallery-info p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities {
    padding: 60px 0;
    background: var(--light-bg);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.amenity-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.amenity-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.amenity-card:hover i {
    color: var(--gold-dark);
}

.amenity-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   CONFIGURATIONS
   ============================================ */
.configurations {
    padding: 60px 0;
    background: var(--gradient-primary);
    position: relative;
}

.configurations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect fill="none" stroke="%23ffffff08" stroke-width="1" x="0" y="0" width="60" height="60"/></svg>');
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.config-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.config-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.config-card.featured {
    border: 2px solid var(--gold);
}

.config-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.config-header {
    background: var(--light-bg);
    padding: 25px;
    text-align: center;
}

.config-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
}

.config-header span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.config-body {
    padding: 25px;
}

.config-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.config-feature:last-child {
    border-bottom: none;
}

.config-feature i {
    color: var(--gold-dark);
}

.config-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background: var(--gradient-gold);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.config-btn:hover {
    background: var(--primary);
    color: var(--gold);
}

/* ============================================
   DEVELOPER SECTION
   ============================================ */
.developer {
    padding: 60px 0;
    background: var(--light-bg);
}

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

.developer-logo-box {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.developer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.developer-logo span {
    color: var(--gold-dark);
}

.developer-tagline {
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
}

.developer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.dev-stat {
    text-align: center;
}

.dev-stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.dev-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.developer-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.developer-text p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.developer-projects {
    margin-top: 25px;
}

.developer-projects h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tag {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: 60px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
}

.faq-question i {
    color: var(--gold-dark);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 60px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.cta .btn-primary {
    padding: 16px 35px;
    font-size: 1rem;
}

.cta .btn-outline-light {
    padding: 16px 35px;
    font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0f172a;
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    margin: 20px 0;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn.whatsapp {
    background: var(--green);
}

.floating-btn.call {
    background: var(--primary);
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    padding: 10px 15px;
}

.mobile-sticky-bar {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-btn.call {
    background: var(--primary);
    color: var(--white);
}

.sticky-btn.brochure {
    background: var(--green);
    color: var(--white);
}

.sticky-btn.register {
    background: var(--gradient-gold);
    color: var(--primary);
}

/* ============================================
   POPUP FORM
   ============================================ */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    position: relative;
    animation: popupSlide 0.3s ease;
}

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

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--primary);
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.popup-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat-item:nth-child(3) {
        border-right: none;
    }

    .stat-item:nth-child(4) {
        border-right: 1px solid #e2e8f0;
    }
}

@media (max-width: 992px) {
    .nav-desktop,
    .header-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .header-cta .btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .about-stats-box {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .about-image {
        text-align: center;
    }

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

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .floating-cta {
        bottom: 80px;
        right: 15px;
    }

    .mobile-sticky-bar {
        display: grid;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .hero-form {
        padding: 25px;
    }

    .stats {
        margin-top: -30px;
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 12px;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .eoi-benefits,
    .about,
    .location,
    .project-gallery,
    .amenities,
    .configurations,
    .developer,
    .faq,
    .cta {
        padding: 40px 0;
    }

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

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

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

    .gallery-image-wrapper {
        height: 300px;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .floating-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero-feature {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-form {
        padding: 20px;
    }

    .form-group input,
    .form-group select {
        padding: 12px 15px;
    }

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

    .developer-logo {
        font-size: 2rem;
    }

    .developer-logo-box {
        padding: 30px;
    }

    .popup-form {
        padding: 25px;
    }
}

/* ============================================
   ABOUT PRESTIGE PAGE SPECIFIC
   ============================================ */
.page-hero {
    padding: 120px 0 60px;
    background: var(--gradient-primary);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 55%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 55%;
}

.timeline-content {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-year {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -85px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -85px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item:nth-child(odd) .timeline-year,
    .timeline-item:nth-child(even) .timeline-year {
        left: -10px;
        right: auto;
        width: 40px;
        height: 40px;
        font-size: 0.75rem;
    }
}
/* ============================================
   LOGO & IMAGE FIXES - ADD TO BOTTOM
   ============================================ */

/* HEADER & FOOTER LOGO STYLES */
.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-img { height: 38px; }
  .footer-logo-img { height: 32px; }
}

/* PROJECT GALLERY FULL WIDTH IMAGE */
.project-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* FOOTER LOGO CONTAINER */
.footer-logo {
  margin-bottom: 15px;
}

.footer-logo-link {
  display: inline-block;
}
/* Golden Grove location alignment */
.location-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.location-text {
  flex: 1.2;
}

.location-text p {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1.05rem;
}

.location-list {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Responsive: stack on tablets/mobiles */
@media (max-width: 992px) {
  .location-inner {
    flex-direction: column;
  }
  .location-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .location-list {
    grid-template-columns: 1fr;
  }
}

