// FILE: style.css

/*
Theme Name: Purva Codename Flow
Theme URI: https://puravankara.com
Author: Puravankara
Author URI: https://puravankara.com
Description: Luxury Real Estate Landing Page Theme for Purva Codename Flow
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: real-estate, luxury, one-page, landing-page
Text Domain: purva-flow
*/

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

:root {
    --gold: #C9A84C;
    --gold-light: #E2C47A;
    --gold-dark: #A07830;
    --dark: #0A0A0A;
    --dark-mid: #141414;
    --dark-card: #1A1A1A;
    --dark-border: #2A2A2A;
    --white: #FFFFFF;
    --white-70: rgba(255,255,255,0.7);
    --white-40: rgba(255,255,255,0.4);
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);
}

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

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

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

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(3rem, 8vw, 6rem) 0;
}

.gold { color: var(--gold); }
.text-center { text-align: center; }

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

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

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

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--white-70);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    max-width: 560px;
}

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

/* =============================================
   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(10,10,10,0.97);
    backdrop-filter: blur(12px);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--dark-border);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.nav-logo .project-name {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.nav-logo .developer-name {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--white-70);
}

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

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--white-70);
    position: relative;
}

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

.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }

.btn-nav {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 2px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.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);
}

.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 */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(10,10,10,0.98);
    padding: 1.5rem var(--container-pad, 1.5rem);
    gap: 1.2rem;
    border-top: 1px solid var(--dark-border);
}

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

.mobile-nav a {
    font-size: 1rem;
    color: var(--white-70);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dark-border);
}

.mobile-nav a:hover { color: var(--gold); }

/* =============================================
   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(10,10,10,0.88) 0%,
        rgba(10,10,10,0.55) 50%,
        rgba(10,10,10,0.75) 100%
    );
}

/* Fallback gradient if no image */
.hero-bg.no-image {
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1208 40%, #2a1f08 70%, #0A0A0A 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(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    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 .accent {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--white-70);
    margin-bottom: 0.75rem;
    font-style: italic;
    font-family: var(--font-primary);
}

.hero-location {
    font-size: 0.85rem;
    color: var(--white-40);
    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(--gold);
}

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

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

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.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.05em;
    border-radius: 2px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-secondary);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero scroll indicator */
.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: var(--white-40);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

@keyframes scroll-line {
    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(--dark-card);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 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: 40px;
    width: 1px;
    background: var(--dark-border);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-70);
}

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

.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(280px, 45vw, 520px);
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1f08 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 3rem;
}

.about-image-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--dark);
    padding: 1rem 1.25rem;
    border-radius: 2px;
    text-align: center;
}

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

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

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 2px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201,168,76,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
}

.feature-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}

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

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

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

.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--shadow-gold);
}

.pricing-card.featured {
    border-color: var(--gold);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
}

.pricing-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, #1a1a1a, #2a1f08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
    font-family: var(--font-primary);
}

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

.config-type {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.config-area {
    font-size: 0.8rem;
    color: var(--white-70);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.config-price {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.config-price-note {
    font-size: 0.72rem;
    color: var(--white-40);
    margin-bottom: 1.25rem;
}

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

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

.config-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.6rem;
}

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

.btn-card:hover {
    background: var(--gold);
    color: var(--dark);
}

/* =============================================
   AMENITIES SECTION
   ============================================= */
#amenities {
    background: var(--dark);
}

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

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

.amenity-card:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.05);
}

.amenity-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.amenity-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.amenity-desc {
    font-size: 0.72rem;
    color: var(--white-40);
}

/* =============================================
   GALLERY SECTION
   ============================================= */
#gallery {
    background: var(--dark-mid);
}

.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: 2px;
    cursor: pointer;
    position: relative;
    background: var(--dark-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
}

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

.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(10,10,10,0.4);
    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: rgba(201,168,76,0.9);
    color: var(--dark);
    padding: 0.4rem 0.8rem;
    font-weight: 700;
}

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

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

.location-map-embed {
    width: 100%;
    height: 400px;
    border-radius: 2px;
    overflow: hidden;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
}

.location-map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.8) invert(0.9) contrast(0.9);
}

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

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 2px;
}

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

.advantage-place {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

.advantage-category {
    font-size: 0.72rem;
    color: var(--white-40);
}

/* =============================================
   DEVELOPER SECTION
   ============================================= */
#developer {
    background: var(--dark-mid);
}

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

.developer-logo-wrap {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    padding: 2.5rem;
    border-radius: 2px;
    text-align: center;
}

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

.developer-logo-wrap .dev-tag {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-40);
    margin-top: 0.25rem;
}

.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(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 2px;
}

.dev-stat-number {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.dev-stat-label {
    font-size: 0.75rem;
    color: var(--white-70);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =============================================
   CONTACT / MODAL SECTION
   ============================================= */
#contact-section {
    background: var(--dark);
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.contact-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    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(--dark-card);
    border: 1px solid var(--dark-border);
    border-top: 3px solid var(--gold);
    border-radius: 4px;
    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;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white-70);
    font-size: 1.5rem;
    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(--dark-border);
    color: var(--white);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--white-70);
    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(--dark);
    border: 1px solid var(--dark-border);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-family: var(--font-secondary);
    border-radius: 2px;
    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(--gold);
    box-shadow: 0 0 0 2px rgba(201,168,76,0.15);
}

.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='%23C9A84C' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.wpcf7-form input[type="submit"]:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.wpcf7-form .wpcf7-not-valid-tip {
    color: #e05555;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
}

.wpcf7-form .wpcf7-response-output {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 2px;
    font-size: 0.85rem;
}

.wpcf7-form.sent .wpcf7-response-output {
    background: rgba(80, 200, 120, 0.1);
    border: 1px solid rgba(80, 200, 120, 0.4);
    color: #50c878;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
    background: rgba(224, 85, 85, 0.1);
    border: 1px solid rgba(224, 85, 85, 0.4);
    color: #e05555;
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.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.08); }
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
    background: var(--dark-mid);
    border-top: 1px solid var(--dark-border);
    padding: 3rem 0 1.5rem;
}

.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.4rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.footer-brand .dev-by {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-40);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--white-70);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-secondary);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: var(--white-70);
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--white-70);
    margin-bottom: 0.6rem;
}

.footer-contact-item span { color: var(--gold); font-size: 1rem; }

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    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: var(--white-40);
}

.footer-rera {
    font-size: 0.72rem;
    color: var(--white-40);
    letter-spacing: 0.05em;
}

/* Disclaimer */
.footer-disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-radius: 2px;
    font-size: 0.7rem;
    color: var(--white-40);
    line-height: 1.7;
    border: 1px solid var(--dark-border);
}

/* =============================================
   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; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item:first-child { grid-row: span 1; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hamburger { display: flex; }

    .about-features { grid-template-columns: 1fr; }
    .dev-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }

    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }

    .stat-item:not(:last-child)::after { display: none; }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }

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

    .modal { padding: 1.25rem; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

@media (max-width: 375px) {
    .hero-badge { font-size: 0.65rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .amenities-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   UTILITY
   ============================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

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

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

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   STICKY CTA BAR (bottom, mobile)
   ============================================= */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .sticky-cta { display: flex; }
    .sticky-cta a {
        flex: 1;
        text-align: center;
        padding: 0.75rem;
        font-size: 0.85rem;
        font-weight: 700;
        border-radius: 2px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sticky-cta .cta-call {
        background: var(--dark-border);
        color: var(--white);
    }
    .sticky-cta .cta-visit {
        background: var(--gold);
        color: var(--dark);
    }
}

// END OF FILE
