/*
Theme Name: Nikoo Homes
Theme URI: https://nikoohomes.com
Author: Bhartiya Urban
Author URI: https://bhartiyacity.com
Description: Luxury Real Estate Landing Page Theme for Nikoo Homes Phase 3 by Bhartiya Urban
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: nikoo-homes
Tags: real-estate, luxury, one-page, landing-page, light
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #E31837;
    --red-dark: #B8112A;
    --red-light: #FF2D4D;
    --red-pale: rgba(227, 24, 55, 0.08);
    --black: #1A1A1A;
    --dark: #2D2D2D;
    --grey: #6B6B6B;
    --grey-light: #F5F5F0;
    --grey-mid: #E8E8E0;
    --white: #FFFFFF;
    --cream: #FAF9F6;
    --green: #5B8C3E;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
    --radius: 4px;
}

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

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

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

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

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section-pad { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.text-center { text-align: center; }
.red { color: var(--red); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.section-label {
    font-family: var(--font-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--black);
}

.section-title em {
    font-style: italic;
    color: var(--red);
}

.section-subtitle {
    color: var(--grey);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    max-width: 580px;
    line-height: 1.8;
}

.section-subtitle.center { margin: 0 auto; text-align: center; }

.divider-red {
    width: 48px;
    height: 3px;
    background: var(--red);
    margin: 1.25rem 0;
    border-radius: 2px;
}

.divider-red.center { margin: 1.25rem auto; }

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: transparent;
}

#site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

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

.nav-logo .project-name {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: var(--transition);
}

#site-header.scrolled .nav-logo .project-name { color: var(--black); }

.nav-logo .developer-name {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: var(--transition);
}

#site-header.scrolled .nav-logo .developer-name { color: var(--grey); }

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

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    position: relative;
    transition: var(--transition);
}

#site-header.scrolled .nav-menu a { color: var(--dark); }
.nav-menu a:hover { color: var(--red) !important; }

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: var(--transition);
    border-radius: 1px;
}

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

.btn-nav {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    border: 2px solid var(--red) !important;
}

.btn-nav:hover {
    background: var(--red-dark) !important;
    border-color: var(--red-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(227,24,55,0.3);
}

.btn-nav::after { display: none !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.4rem;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 1px;
}

#site-header.scrolled .hamburger span { background: var(--black); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    gap: 0;
    border-top: 1px solid var(--grey-mid);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    font-size: 0.95rem;
    color: var(--dark);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--grey-mid);
    font-weight: 500;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--red); }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26,26,26,0.72) 0%,
        rgba(26,26,26,0.40) 50%,
        rgba(26,26,26,0.60) 100%
    );
}

.hero-bg.no-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 50%, #1a1a1a 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 8rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(227,24,55,0.15);
    border: 1px solid rgba(227,24,55,0.5);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FF8FA0;
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-headline { color: var(--white); margin-bottom: 0.5rem; }
.hero-headline em { color: #FF8FA0; font-style: italic; }

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
    font-style: italic;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.hero-location {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-location svg { width: 14px; height: 14px; fill: var(--red); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    border: 2px solid var(--red);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227,24,55,0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   STATS BAR
   ============================================= */
#stats-bar {
    background: var(--black);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    height: 36px; width: 1px;
    background: rgba(255,255,255,0.12);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-number span { color: var(--red); }
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* =============================================
   ABOUT SECTION
   ============================================= */
#about { background: var(--cream); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-image-wrap { position: relative; }

.about-image-wrap img,
.about-image-placeholder {
    width: 100%;
    height: clamp(300px, 45vw, 540px);
    object-fit: cover;
    border-radius: var(--radius);
    display: block;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #e8e8e0 0%, #d4d4cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    font-size: 3rem;
}

.about-image-badge {
    position: absolute;
    bottom: 1.5rem; right: -1.5rem;
    background: var(--red);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 24px rgba(227,24,55,0.3);
}

.about-image-badge .badge-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-badge .badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 0.2rem;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--red);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--red-pale);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.feature-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.15rem;
}

.feature-text span { font-size: 0.75rem; color: var(--grey); }

/* =============================================
   CONFIGURATIONS / PRICING
   ============================================= */
#pricing { background: var(--white); }

.pricing-intro { margin-bottom: 3rem; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--grey-mid);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--red);
    box-shadow: 0 8px 32px rgba(227,24,55,0.12);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    display: block;
    background: var(--red);
    color: var(--white);
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem;
}

.pricing-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    font-size: 2.5rem;
    font-family: var(--font-primary);
}

.pricing-card-body { padding: 1.5rem; }

.config-type {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.config-area { font-size: 0.78rem; color: var(--grey); margin-bottom: 1rem; }

.config-price {
    font-family: var(--font-primary);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0.2rem;
}

.config-price-note { font-size: 0.7rem; color: var(--grey); margin-bottom: 1.25rem; }

.config-features { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.45rem; }

.config-features li {
    font-size: 0.82rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.config-features li::before { content: '✓'; color: var(--red); font-weight: 700; font-size: 0.75rem; }

.btn-card {
    width: 100%;
    background: transparent;
    border: 1.5px solid var(--red);
    color: var(--red);
    padding: 0.75rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-secondary);
}

.btn-card:hover {
    background: var(--red);
    color: var(--white);
}

/* =============================================
   AMENITIES
   ============================================= */
#amenities { background: var(--grey-light); }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.amenity-card {
    background: var(--white);
    border: 1px solid var(--grey-mid);
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.amenity-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.amenity-icon { font-size: 2rem; margin-bottom: 0.65rem; display: block; }
.amenity-name { font-size: 0.85rem; font-weight: 700; color: var(--black); margin-bottom: 0.2rem; }
.amenity-desc { font-size: 0.72rem; color: var(--grey); }

/* =============================================
   GALLERY
   ============================================= */
#gallery { background: var(--white); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 0.75rem;
    margin-top: 3rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    background: var(--grey-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--grey); font-size: 1.5rem;
}

.gallery-item:first-child { grid-row: span 2; }

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.45);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--red);
    padding: 0.4rem 0.8rem;
    font-weight: 700;
    border-radius: 2px;
}

/* =============================================
   LOCATION
   ============================================= */
#location { background: var(--cream); }

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.location-map-embed {
    width: 100%;
    height: 420px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--grey-light);
    border: 1px solid var(--grey-mid);
    box-shadow: var(--shadow);
}

.location-map-embed iframe { width: 100%; height: 100%; border: none; }

.location-advantages { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: var(--white);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius);
    transition: var(--transition);
}

.advantage-item:hover { border-color: var(--red); box-shadow: var(--shadow); }

.advantage-distance {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red);
    min-width: 60px;
    text-align: center;
}

.advantage-place { font-size: 0.85rem; font-weight: 700; color: var(--black); }
.advantage-category { font-size: 0.72rem; color: var(--grey); }

/* =============================================
   DEVELOPER
   ============================================= */
#developer { background: var(--white); }

.developer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.developer-logo-wrap {
    background: var(--cream);
    border: 1px solid var(--grey-mid);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.developer-logo-wrap .dev-name {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
}

.developer-logo-wrap .dev-name span { color: var(--red); }
.developer-logo-wrap .dev-tag { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey); margin-top: 0.3rem; }

.dev-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.dev-stat {
    text-align: center;
    padding: 1.25rem;
    background: var(--cream);
    border: 1px solid var(--grey-mid);
    border-radius: var(--radius);
    transition: var(--transition);
}

.dev-stat:hover { border-color: var(--red); }
.dev-stat-number { font-family: var(--font-primary); font-size: 1.9rem; font-weight: 700; color: var(--red); }
.dev-stat-label { font-size: 0.72rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.1em; }

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact-section {
    background: var(--black);
    padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

#contact-section .section-label { color: #FF8FA0; }
#contact-section .section-title { color: var(--white); }
#contact-section .section-title em { color: #FF8FA0; }
#contact-section .section-subtitle { color: rgba(255,255,255,0.65); }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.75);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

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

.modal {
    background: var(--white);
    border-radius: 12px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
    border-top: 4px solid var(--red);
}

.modal-overlay.active .modal { transform: translateY(0); }

.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--grey-light);
    border: none;
    color: var(--grey);
    font-size: 1.3rem;
    cursor: pointer;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover { background: var(--red); color: var(--white); }

.modal-title { font-size: 1.6rem; margin-bottom: 0.25rem; color: var(--black); }
.modal-subtitle { font-size: 0.85rem; color: var(--grey); margin-bottom: 1.5rem; }

/* CF7 Form Styles */
.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.wpcf7-form p { margin-bottom: 1rem; }

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    background: var(--grey-light);
    border: 1.5px solid var(--grey-mid);
    color: var(--black);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    font-family: var(--font-secondary);
    border-radius: var(--radius);
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(227,24,55,0.1);
}

.wpcf7-form textarea { resize: vertical; min-height: 80px; }

.wpcf7-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E31837' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    background-color: var(--grey-light);
}

.wpcf7-form input[type="submit"] {
    width: 100%;
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 0.95rem;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: var(--radius);
    font-family: var(--font-secondary);
    transition: var(--transition);
    text-transform: uppercase;
}

.wpcf7-form input[type="submit"]:hover {
    background: var(--red-dark);
    box-shadow: 0 4px 16px rgba(227,24,55,0.35);
    transform: translateY(-1px);
}

.wpcf7-form .wpcf7-not-valid-tip { color: var(--red); font-size: 0.75rem; margin-top: 0.25rem; display: block; }

.wpcf7-form.sent .wpcf7-response-output {
    background: rgba(91,140,62,0.1);
    border: 1px solid rgba(91,140,62,0.4);
    color: var(--green);
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
    background: rgba(227,24,55,0.06);
    border: 1px solid rgba(227,24,55,0.3);
    color: var(--red);
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 999;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: wa-pulse 2.5s infinite;
    transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.07); }
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
    background: var(--black);
    padding: 3.5rem 0 1.5rem;
    color: rgba(255,255,255,0.75);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: 2.5rem;
}

.footer-brand .project-name { font-family: var(--font-primary); font-size: 1.5rem; color: var(--white); margin-bottom: 0.2rem; }
.footer-brand .dev-by { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 280px; }

.footer-col h4 { font-family: var(--font-secondary); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 0.6rem; }
.footer-contact-item span { color: var(--red); }

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

.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-rera { font-size: 0.7rem; color: rgba(255,255,255,0.35); }

.footer-disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
    border: 1px solid rgba(255,255,255,0.08);
}

/* =============================================
   STICKY CTA
   ============================================= */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    background: var(--white);
    border-top: 2px solid var(--grey-mid);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .sticky-cta { display: flex; }
    .sticky-cta a {
        flex: 1; text-align: center; padding: 0.85rem;
        font-size: 0.88rem; font-weight: 700;
        border-radius: var(--radius);
        min-height: 48px;
        display: flex; align-items: center; justify-content: center;
        text-decoration: none;
    }
    .sticky-cta .cta-call { background: var(--grey-light); color: var(--black); border: 1.5px solid var(--grey-mid); }
    .sticky-cta .cta-visit { background: var(--red); color: var(--white); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .developer-grid { grid-template-columns: 1fr; }
    .location-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-image-badge { right: 1rem; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
    .gallery-item:first-child { grid-row: span 1; }
    .gallery-item { height: 200px; }
}

@media (max-width: 768px) {
    html, body { overflow-x: hidden; }
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .about-features { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .dev-stats { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item:not(:last-child)::after { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .gallery-item { height: 160px; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; box-sizing: border-box; }
    .modal-overlay { align-items: flex-end; padding: 0; }
    .modal { border-radius: 16px 16px 0 0; max-width: 100%; max-height: 90vh; padding-bottom: calc(2rem + env(safe-area-inset-bottom)); }
    .wpcf7-form .form-row { display: block; }
    .wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form input[type="date"], .wpcf7-form select, .wpcf7-form textarea { font-size: 16px !important; box-sizing: border-box; width: 100%; }
    #site-footer { padding-bottom: 5rem; }
    .whatsapp-float { bottom: 5.5rem; right: 1rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 220px; }
    .amenities-grid { grid-template-columns: repeat(2,1fr); }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
