/* ========================================
   Main Styles - Elan The Statement Sohna Road
   Design: COPIED FROM WEBSITE 3 (OneArc)
   Domain: elansohnaroads.in
   Theme: LIGHT (White background - Website 3 style)
   ======================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    background: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #666666;
    line-height: 1.6;
}

a {
    color: #b79b6f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #000000;
}

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

ul, ol {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-sm {
    max-width: 900px;
}

.container-lg {
    max-width: 1600px;
}

/* ===== Section Styling ===== */
section {
    padding: 80px 0;
}

.section-light {
    background: #ffffff;
}

.section-gray {
    background: #f5f5f5;
}

.section-dark {
    background: #383736;
    color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
    color: #ffffff;
}

.section-dark p {
    color: #d7d7d7;
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b79b6f;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: #000000;
}

.section-intro {
    font-size: 1.125rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Buttons (Website 3 Style) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: #000000;
    color: #ffffff;
}

.btn-primary:hover {
    background: #3b3b3b;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #000000;
    border: 1px solid #d6d6d6;
}

.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #000000;
}

.btn-gold {
    background: #b79b6f;
    color: #ffffff;
}

.btn-gold:hover {
    background: #a68a5f;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-outline-gold {
    background: transparent;
    color: #b79b6f;
    border: 1px solid #b79b6f;
}

.btn-outline-gold:hover {
    background: #b79b6f;
    color: #ffffff;
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
}

/* ===== Header (Website 3 Style - Transparent on Hero) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: none;
}

.header.scrolled {
    background: #ffffff;
    padding: 14px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #e6e6e6;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
}

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

.logo img {
    height: 42px;
    width: auto;
    transition: all 0.3s ease;
}

/* Logo - White on transparent header, original on scrolled */
.logo .logo-light {
    display: block;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo .logo-dark {
    display: none !important;
}

.header.scrolled .logo .logo-light {
    filter: none;
}

.header.scrolled .logo img {
    height: 38px;
}

.logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    transition: color 0.3s ease;
    display: none;
}

/* Navigation (Website 3 Style - White on transparent, Black on scroll) */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Navigation Pill Container (Website 3 Exact Style) */
.nav-menu {
    display: flex;
    gap: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header.scrolled .nav-menu {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-menu ul,
.nav-links {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu li {
    list-style: none;
}

.nav-menu li a {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 18px;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 0.01em;
}

.nav-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Nav links turn black when header is scrolled */
.header.scrolled .nav-menu li a {
    color: rgba(0, 0, 0, 0.75);
}

.header.scrolled .nav-menu li a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
}

.header.scrolled .nav-menu li a.active {
    background: rgba(0, 0, 0, 0.08);
    color: #000000;
}

/* Website 3 uses pill hover, no underline */
.nav-menu li a::after {
    display: none;
}

/* CTA Button - Website 3 Exact Style */
.nav-cta .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

.nav-cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.header.scrolled .nav-cta .btn {
    background: #000000;
    color: #ffffff;
}

.header.scrolled .nav-cta .btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle - White on transparent, Black on scrolled */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.header.scrolled .nav-toggle span {
    background: #000000;
}

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

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

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

/* ===== Hero Section (Website 3 Style - Light Theme) ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
    background: #f5f5f5;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Light overlay gradient from left */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 35%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0.2) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 650px;
    padding: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #b79b6f;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: 16px;
    color: #000000;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: 1.125rem;
    color: #b79b6f;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.05rem;
    color: #666666;
    max-width: 550px;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding: 24px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.highlight-item {
    text-align: left;
}

.highlight-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin-bottom: 4px;
}

.highlight-label {
    font-size: 0.75rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 28px;
    font-size: 0.875rem;
    border-radius: 6px;
}

.hero-buttons .btn-primary {
    background: #000000;
    color: #ffffff;
}

.hero-buttons .btn-primary:hover {
    background: #b79b6f;
}

.hero-buttons .btn-secondary {
    background: #ffffff;
    color: #000000;
    border: 1px solid #e6e6e6;
}

.hero-buttons .btn-secondary:hover {
    background: #f5f5f5;
    border-color: #b79b6f;
    color: #b79b6f;
}

/* Hero Fact Cards (Website 3 Style - White with Blur at Bottom) */
.hero-facts {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    justify-content: center;
}

/* Hero Fact Cards - Website 3 Exact Style */
.hero-fact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 24px 30px;
    min-width: 220px;
    text-align: left;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.hero-fact-card h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-fact-card .fact-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 14px 0;
}

.hero-fact-card p {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

/* ===== Cards (Website 3 Style) ===== */
.card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Property/Config Cards */
.config-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.config-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.config-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.config-card.featured {
    border-color: #b79b6f;
}

.config-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #b79b6f;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
}

.config-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.config-content {
    padding: 24px;
}

.config-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #000000;
}

.config-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #666666;
}

.spec-item i {
    color: #b79b6f;
    font-size: 0.9rem;
}

.config-price {
    padding: 16px 0;
    border-top: 1px solid #e6e6e6;
    margin-bottom: 16px;
}

.price-label {
    font-size: 0.75rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 1.5rem;
    color: #000000;
    font-weight: 700;
}

.config-buttons {
    display: flex;
    gap: 12px;
}

.config-buttons .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.8rem;
}

/* ===== Highlight Cards ===== */
.highlight-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.highlight-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: #b79b6f;
    transform: translateY(-4px);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    margin: 0 auto 20px;
}

.highlight-icon i {
    font-size: 1.75rem;
    color: #b79b6f;
}

.highlight-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
}

.highlight-card p {
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* ===== Amenities ===== */
.amenities-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.amenity-tab {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid #d6d6d6;
    border-radius: 50px;
    color: #666666;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amenity-tab:hover {
    border-color: #b79b6f;
    color: #b79b6f;
}

.amenity-tab.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.amenity-panel {
    display: none;
}

.amenity-panel.active {
    display: block;
}

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

.amenity-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.amenity-card:hover {
    border-color: #b79b6f;
    transform: translateY(-4px);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    margin: 0 auto 16px;
}

.amenity-icon i {
    font-size: 1.5rem;
    color: #b79b6f;
}

.amenity-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000000;
}

.amenity-card p {
    font-size: 0.8rem;
    color: #666666;
    margin: 0;
}

/* ===== Location Cards ===== */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.location-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: #b79b6f;
}

.location-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 1.25rem;
    color: #b79b6f;
}

.location-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.location-info p {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
}

/* ===== Why Choose Section ===== */
/* Why Cards - Website 3 Exact Style */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 36px 32px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.why-card:hover {
    border-color: #d0d0d0;
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(183, 155, 111, 0.08);
    border-radius: 12px;
    margin-bottom: 24px;
}

.why-icon i {
    font-size: 1.5rem;
    color: #b79b6f;
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000000;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.65;
    margin: 0;
}

/* ===== Stats Section ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Gallery Section ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-caption {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 16px;
    color: #000000;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: #666666;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: #b79b6f;
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000000;
}

.contact-text p,
.contact-text a {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.contact-text a:hover {
    color: #b79b6f;
}

/* Lead Form */
.lead-form-wrapper {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.lead-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    text-align: center;
    color: #000000;
}

.lead-form .form-subtitle {
    text-align: center;
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: #000000;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #d6d6d6;
    border-radius: 10px;
    color: #000000;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b79b6f;
    box-shadow: 0 0 0 3px rgba(183, 155, 111, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a2a2a2;
}

.form-privacy {
    font-size: 0.8rem;
    color: #666666;
    text-align: center;
    margin-top: 16px;
}

/* ===== Footer (Website 3 Style - Dark) ===== */
/* Footer - Website 3 Exact Style */
.footer {
    background: #1a1a1a;
    padding: 80px 0 0;
    color: #ffffff;
}

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

.footer-brand img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.9rem;
    color: #d7d7d7;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #b79b6f;
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: #d7d7d7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #b79b6f;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: #b79b6f;
    margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
    font-size: 0.875rem;
    color: #d7d7d7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #a2a2a2;
    margin: 0;
}

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

.footer-legal a {
    font-size: 0.8rem;
    color: #a2a2a2;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* ===== RERA Banner ===== */
.rera-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 24px;
    background: #f5f5f5;
    border-bottom: 1px solid #e6e6e6;
    font-size: 0.875rem;
    color: #666666;
}

.rera-banner strong {
    color: #000000;
}

/* ===== Background Variations ===== */
.bg-white {
    background: #ffffff;
}

.bg-gray {
    background: #f5f5f5;
}

.bg-dark {
    background: #383736;
    color: #ffffff;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: #b79b6f; }
.text-black { color: #000000; }
.text-muted { color: #666666; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #d6d6d6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b79b6f;
}

/* ===== Selection ===== */
::selection {
    background: rgba(183, 155, 111, 0.3);
    color: #000000;
}

/* ===== 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);
}

/* ===== WEBSITE 3 SPECIFIC SECTIONS ===== */

/* Header Inner */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 16px;
}

.header-phone i {
    color: #b79b6f;
}

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

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

.nav-links li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000000;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b79b6f;
    transition: width 0.3s ease;
}

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

.nav-links li a:hover,
.nav-links li a.active {
    color: #b79b6f;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #000000;
    transition: all 0.3s ease;
}

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

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

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

/* ===== Hero Section (Website 3 Exact Clone) ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 180px;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Address text above title - Website 3 Style */
.hero-address {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-section h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Hero Buttons - Website 3 Style */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    background: #000000;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-light {
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-light:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    color: #000000;
}

/* Hero Fact Cards Wrapper - Website 3 Style */
.hero-facts-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 24px 40px;
}

.hero-facts {
    display: flex;
    gap: 16px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Hero Fact Card - Website 3 Exact Style */
.hero-fact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 24px 28px;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.hero-fact-card .fact-value {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-fact-card .fact-icon {
    width: 24px;
    height: 24px;
    color: #666666;
    flex-shrink: 0;
}

.hero-fact-card .fact-icon svg {
    width: 100%;
    height: 100%;
}

.hero-fact-card .fact-label {
    font-size: 0.85rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.3;
}

/* Legacy support */
.hero-section .hero-buttons .btn-primary {
    background: #000000;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
}

.hero-section .hero-buttons .btn-primary:hover {
    background: #333333;
}

.hero-section .hero-buttons .btn-secondary {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
}

.hero-section .hero-buttons .btn-secondary:hover {
    background: #f5f5f5;
}

.hero-trust {
    display: none; /* Not in Website 3 hero */
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid #e6e6e6;
}

.trust-item img {
    height: 20px;
    width: auto;
    opacity: 0.8;
}

.trust-item span {
    font-size: 0.75rem;
    color: #666666;
    font-weight: 500;
}

/* Page Hero Section (For Inner Pages - Light Theme) */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f5;
}

.page-hero .hero-media img {
    opacity: 1;
}

.page-hero .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 40%,
        rgba(255, 255, 255, 0.5) 70%,
        rgba(255, 255, 255, 0.2) 100%
    );
}

.page-hero .hero-content {
    padding: 140px 24px 80px;
    text-align: left;
    max-width: 600px;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #000000;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.05rem;
    color: #666666;
    max-width: 500px;
    margin: 0;
}

.page-hero .breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.page-hero .breadcrumb a {
    color: #b79b6f;
}

.page-hero .breadcrumb a:hover {
    color: #000000;
}

.page-hero .breadcrumb span {
    color: #666666;
}

.page-hero .breadcrumb .current {
    color: #000000;
}

/* ===== Facts Section (Website 3 Style - Light Theme) ===== */
/* Facts Section - Website 3 Exact Style */
.facts-section {
    padding: 60px 0;
    background: #fafafa;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.facts-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.fact-card {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.fact-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #e0e0e0;
}

.fact-card:last-child::after {
    display: none;
}

.fact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.fact-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 400;
    line-height: 1.4;
}

/* ===== Property Section (Website 3 Style) ===== */
.property-section {
    padding: 100px 0;
    background: #fafafa;
}

/* Section Title - Website 3 Exact Style */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #b79b6f;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(183, 155, 111, 0.08);
    border-radius: 50px;
}

.section-title h2 {
    font-size: clamp(2.25rem, 4.5vw, 3rem);
    margin-bottom: 16px;
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-title p {
    font-size: 1.05rem;
    color: #666666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Property Card - Website 3 Exact Style */
.property-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.property-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: #d0d0d0;
}

.property-card.featured {
    border-color: #b79b6f;
    box-shadow: 0 4px 16px rgba(183, 155, 111, 0.15);
}

.property-card.featured:hover {
    box-shadow: 0 16px 48px rgba(183, 155, 111, 0.2);
}

.property-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.property-badge.gold {
    background: rgba(183, 155, 111, 0.95);
}

.property-content {
    padding: 28px;
}

.property-content h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: #000000;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.property-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.property-specs span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555555;
}

.property-specs i {
    color: #b79b6f;
    width: 18px;
    font-size: 0.85rem;
}

.btn-outline {
    background: transparent;
    color: #000000;
    border: 1px solid #d6d6d6;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-2px);
}

/* Property card buttons */
.property-content .btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
}

/* ===== Room Section (Website 3 Style) ===== */
.room-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.room-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.room-image-large {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.room-image-large img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-image-large:hover img {
    transform: scale(1.03);
}

.room-image-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.room-image-small img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s ease;
}

.room-image-small img:hover {
    transform: scale(1.03);
}

.room-content .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #b79b6f;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(183, 155, 111, 0.08);
    border-radius: 50px;
}

.room-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: #000000;
}

.room-content p {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 28px;
}

.room-features {
    list-style: none;
    margin-bottom: 32px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e6e6e6;
    font-size: 1rem;
    color: #000000;
}

.room-features li:first-child {
    border-top: 1px solid #e6e6e6;
}

.room-features i {
    color: #b79b6f;
}

/* ===== Plan Section (Website 3 Style - Tabs) ===== */
.plan-section {
    padding: 100px 0;
    background: #fafafa;
}

.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.plan-tab {
    padding: 14px 32px;
    background: transparent;
    border: 1px solid #d6d6d6;
    border-radius: 50px;
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-tab:hover {
    border-color: #b79b6f;
    color: #b79b6f;
}

.plan-tab.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.plan-content {
    position: relative;
}

.plan-panel {
    display: none;
}

.plan-panel.active {
    display: block;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.plan-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.plan-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #d0d0d0;
}

.plan-card.featured {
    border-color: #b79b6f;
    box-shadow: 0 4px 16px rgba(183, 155, 111, 0.12);
}

.plan-image {
    position: relative;
    min-height: 280px;
    background: #f5f5f5;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #b79b6f;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
}

.plan-details {
    padding: 28px;
    display: flex;
    flex-direction: column;
}

.plan-details h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #000000;
}

.plan-size {
    font-size: 1.1rem;
    color: #b79b6f;
    font-weight: 600;
    margin-bottom: 16px;
}

.plan-specs {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.plan-specs li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: #666666;
    border-bottom: 1px solid #f0f0f0;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
}

.plan-buttons {
    display: flex;
    gap: 12px;
}

.plan-buttons .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 0.8rem;
}

.plan-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== Location Section (Website 3 Style) ===== */
.location-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.location-content .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #b79b6f;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(183, 155, 111, 0.08);
    border-radius: 50px;
}

.location-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: #000000;
}

.location-content > p {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.nearby-locations {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e6e6e6;
}

.location-item:first-child {
    border-top: 1px solid #e6e6e6;
}

.location-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d6d6d6;
    flex-shrink: 0;
}

.location-bullet.active {
    background: #b79b6f;
}

.location-item .location-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.location-item .location-info h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.location-item .location-info span {
    font-size: 0.875rem;
    color: #b79b6f;
    font-weight: 600;
}

.location-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.map-marker i {
    font-size: 2rem;
    color: #b79b6f;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.map-marker span {
    background: #000000;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== Why Section (Website 3 Style) ===== */
.why-section {
    padding: 100px 0;
    background: #fafafa;
}

/* ===== Quote Section (Website 3 Style) ===== */
.quote-section {
    padding: 100px 0;
    background: #ffffff;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.quote-image {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-content {
    padding: 24px 0;
}

.quote-icon {
    margin-bottom: 24px;
}

.quote-icon i {
    font-size: 3rem;
    color: #b79b6f;
    opacity: 0.5;
}

.quote-content blockquote {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 28px;
    font-style: italic;
}

.quote-author {
    margin-bottom: 20px;
}

.quote-author h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.quote-author span {
    font-size: 0.9rem;
    color: #666666;
}

.quote-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.quote-rating i {
    color: #b79b6f;
    font-size: 1rem;
}

.quote-rating span {
    margin-left: 12px;
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.quote-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
}

.qfact {
    text-align: center;
    position: relative;
}

.qfact::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e6e6e6;
}

.qfact:last-child::after {
    display: none;
}

.qfact-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    margin-bottom: 8px;
}

.qfact-label {
    font-size: 0.875rem;
    color: #666666;
}

/* ===== Video Section (Website 3 Style) ===== */
.video-section {
    position: relative;
}

.video-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #b79b6f;
}

.play-button:hover i {
    color: #ffffff;
}

.play-button i {
    font-size: 1.5rem;
    color: #000000;
    margin-left: 4px;
}

.video-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.video-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 8px;
}

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

/* ===== Contact Section (Website 3 Style) ===== */
.contact-section {
    padding: 100px 0;
    background: #fafafa;
}

.contact-section .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #b79b6f;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(183, 155, 111, 0.08);
    border-radius: 50px;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 16px;
    color: #000000;
}

.contact-info > p {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-section .contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-section .contact-item {
    display: flex;
    gap: 16px;
}

.contact-section .contact-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    color: #b79b6f;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-section .contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 4px;
}

.contact-section .contact-item p,
.contact-section .contact-item a {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-social span {
    font-size: 0.875rem;
    color: #666666;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 12px;
    color: #666666;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b79b6f;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Contact Form - Website 3 Exact Style */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 48px 44px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 8px;
    color: #000000;
    font-weight: 600;
}

.contact-form > p {
    text-align: center;
    color: #666666;
    margin-bottom: 32px;
    font-size: 0.9rem;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    color: #000000;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: #b79b6f;
    box-shadow: 0 0 0 4px rgba(183, 155, 111, 0.1);
}

.contact-form input::placeholder {
    color: #999999;
}

.contact-form .btn {
    width: 100%;
    padding: 18px 24px;
    font-size: 1rem;
    border-radius: 12px;
    margin-top: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888888;
    margin-top: 20px;
}

.form-note i {
    color: #b79b6f;
    margin-right: 6px;
}

/* ===== Footer (Website 3 Style) ===== */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #d7d7d7;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    font-size: 0.875rem;
    color: #d7d7d7;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #b79b6f;
}

.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #d7d7d7;
    margin-bottom: 12px;
}

.footer-contact p i {
    color: #b79b6f;
    margin-top: 3px;
}

.footer-contact p a {
    color: #d7d7d7;
}

.footer-contact p a:hover {
    color: #b79b6f;
}

.rera-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: #a2a2a2;
    margin: 0;
}

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

.footer-legal a {
    font-size: 0.8rem;
    color: #a2a2a2;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* ===== Floating Widgets ===== */
.floating-widgets {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #ffffff;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.call {
    background: #b79b6f;
}

/* ===== Mobile Bottom CTA ===== */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 998;
    background: #ffffff;
    border-top: 1px solid #e6e6e6;
    padding: 12px 16px;
}

.mobile-cta .mcta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.mobile-cta .mcta-btn.call {
    background: #000000;
}

.mobile-cta .mcta-btn.whatsapp {
    background: #25D366;
}
