/* ==========================================================================
   Homington Realty Custom CSS Stylesheet
   Design System: Premium Obsidian & Champagne Gold
   ========================================================================== */

/* --- Custom Variables & Theme Tokens --- */
:root {
    /* Color Palette */
    --color-bg-deep: #050507;         /* Deepest obsidian black */
    --color-bg-base: #0A0A0E;         /* Main background */
    --color-bg-surface: #121217;      /* Primary card & section surface */
    --color-bg-surface-elevated: #1A1A22; /* Elevated cards/menus */
    
    --color-gold-light: #F6E29E;      /* Bright champagne gold */
    --color-gold-primary: #D4AF37;    /* Metallic gold */
    --color-gold-dark: #A67C1E;       /* Deep rich gold */
    --color-gold-dim: rgba(212, 175, 55, 0.15); /* Muted gold transparent border */
    
    --color-text-light: #FFFFFF;      /* Primary headings */
    --color-text-gray: #A0A0AB;       /* Body copy & subtitles */
    --color-text-muted: #6B6B76;      /* Captions & disclaimers */
    
    --color-accent-linkedin: #0077B5; /* LinkedIn signature blue */
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #F6E29E 0%, #D4AF37 50%, #A67C1E 100%);
    --gradient-gold-hover: linear-gradient(135deg, #FFFFFF 0%, #F6E29E 30%, #D4AF37 100%);
    --gradient-dark-card: linear-gradient(180deg, rgba(26, 26, 34, 0.8) 0%, rgba(18, 18, 23, 0.8) 100%);
    --gradient-hero: linear-gradient(180deg, rgba(5, 5, 7, 0.8) 0%, rgba(10, 10, 14, 0.95) 100%);
    
    /* Shadows */
    --shadow-gold-glow: 0 8px 30px rgba(212, 175, 55, 0.15);
    --shadow-gold-subtle: 0 4px 15px rgba(212, 175, 55, 0.08);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-gray);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-primary);
}

/* --- Global Layout Containers --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Typography System --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.15;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

/* --- Helper Component Blocks --- */
.section-header {
    margin-bottom: 4rem;
    max-width: 750px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.header-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 1.25rem auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-gray);
    line-height: 1.7;
}

/* --- Global Button Styles --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--color-bg-deep);
    box-shadow: var(--shadow-gold-subtle);
}

.btn-gold:hover {
    background: var(--gradient-gold-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--color-gold-primary);
    color: var(--color-gold-light);
    background: rgba(212, 175, 55, 0.04);
    transform: translateY(-3px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-linkedin {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(0, 119, 181, 0.4);
}

.btn-linkedin:hover {
    background: var(--color-accent-linkedin);
    border-color: var(--color-accent-linkedin);
    color: var(--color-text-light);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.2);
}

.linkedin-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-arrow {
    margin-left: 8px;
    transition: var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* --- Header / Navigation Bar --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 14, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(5, 5, 7, 0.96);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px; /* High standard size */
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img {
    height: 40px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--color-text-light);
}

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

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

.btn-header {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-light);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* High resolution evening skyline view */
    background-image: url('assets/dubai_hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(10, 10, 14, 0.6) 0%, rgba(5, 5, 7, 0.95) 80%);
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-brand-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50px;
    color: var(--color-gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
    backdrop-filter: blur(8px);
}

.badge-icon {
    margin-right: 8px;
    color: var(--color-gold-primary);
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-gray);
    max-width: 750px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-features-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 18, 23, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1.5rem 3rem;
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow-card);
}

.strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.strip-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold-light);
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.strip-label {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-features-strip .divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 1.5rem;
}

/* --- Why Dubai & Why Homington Sections --- */
.value-proposition-section {
    padding: 8rem 0;
    background: var(--color-bg-base);
    position: relative;
}

.why-sub-section {
    padding: 2rem 2rem 6rem;
    max-width: 1240px;
    margin: 0 auto;
}

.border-top-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 6rem;
}

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

.value-card {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 3rem 2.2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-gold-subtle);
}

.value-card:hover::before {
    opacity: 1;
}

.card-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.value-card:hover .card-icon-container {
    background: var(--gradient-gold);
}

.card-icon {
    font-size: 1.5rem;
    color: var(--color-gold-primary);
    transition: var(--transition-smooth);
}

.value-card:hover .card-icon {
    color: var(--color-bg-deep);
}

.value-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--color-text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Highlight Card Style */
.value-card.highlight-card {
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.05);
}

.value-card.highlight-card .card-icon-container {
    background: var(--gradient-gold);
}

.value-card.highlight-card .card-icon {
    color: var(--color-bg-deep);
}

.value-card.highlight-card::before {
    opacity: 0.6;
}

/* --- Founder Showcase Section --- */
.founder-section {
    padding: 8rem 0;
    background: var(--color-bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}

.founder-image-container {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--color-bg-surface);
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
}

.gold-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    border: 2px dashed var(--color-gold-primary);
    animation: rotateRing 30s linear infinite;
    z-index: 1;
}

.gold-accent-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--color-bg-deep);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--color-bg-deep);
}

.badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.badge-txt {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.founder-info-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

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

.founder-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.founder-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.founder-quote {
    margin-bottom: 2rem;
    position: relative;
}

.quote-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    font-style: normal;
    border-left: 3px solid var(--color-gold-primary);
    padding-left: 1.5rem;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cred-icon {
    color: var(--color-gold-primary);
    font-size: 1.1rem;
}

.cred-item span {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* --- Services Offered Section --- */
.services-section {
    padding: 8rem 0;
    background: var(--color-bg-base);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.15);
    box-shadow: var(--shadow-card);
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--color-gold-primary);
    margin-bottom: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

/* --- Off-Plan Section --- */
.offplan-section {
    padding: 8rem 0;
    background: var(--color-bg-deep);
}

.offplan-card-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.offplan-text h2 {
    font-size: 2.5rem;
    margin: 1rem 0 1.5rem;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Custom Accordion */
.benefits-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background: rgba(18, 18, 23, 0.4);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-title {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-text-light);
    gap: 15px;
    transition: var(--transition-fast);
}

.accordion-title:hover {
    background: rgba(212, 175, 55, 0.03);
}

.accordion-icon {
    color: var(--color-gold-primary);
    font-size: 1.2rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 1.5rem;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

.accordion-item.active {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(18, 18, 23, 0.8);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.hot-badge {
    margin-left: auto;
    font-size: 0.7rem;
    background: var(--gradient-gold);
    color: var(--color-bg-deep);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Highlights Box Overlay */
.offplan-highlights {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-gold-subtle);
    position: sticky;
    top: 120px;
}

.highlight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-intro {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.hl-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hl-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.hl-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hl-desc h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.hl-desc p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.5;
}

/* --- Partnered Builders Section --- */
.builders-section {
    padding: 8rem 0;
    background: var(--color-bg-base);
}

.builders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.builder-card {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 3rem 2.2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.builder-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-card);
}

/* Builder Logo Styles */
.builder-logo-container {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
    width: 100%;
}

.builder-logo-img {
    max-height: 48px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.builder-card:hover .builder-logo-img {
    opacity: 1;
    filter: none;
}

.builder-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.builder-tag {
    font-size: 0.8rem;
    color: var(--color-gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.builder-detail {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.builder-highlight {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1rem;
}

.builder-highlight i {
    color: var(--color-gold-primary);
}

/* --- Contact & Presence Section --- */
.contact-section {
    padding: 8rem 0;
    background: var(--color-bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.6rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.2;
}

.contact-lead {
    font-size: 1.1rem;
    color: var(--color-text-gray);
    margin-bottom: 3rem;
}

/* Presence Box */
.presence-wrapper {
    background: rgba(18, 18, 23, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.presence-wrapper h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.presence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.country-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.location-icon {
    color: var(--color-gold-primary);
    font-size: 1.1rem;
}

.country-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.city-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.city-list li {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-list li i {
    font-size: 0.5rem;
    color: var(--color-gold-primary);
}

/* Direct contact Info */
.direct-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    font-size: 1.2rem;
}

.c-details {
    display: flex;
    flex-direction: column;
}

.c-details span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-link {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-gold-primary);
}

/* Form Container Styling */
.contact-form-container {
    background: var(--gradient-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-container p {
    font-size: 0.95rem;
    color: var(--color-text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

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

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

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
}

input, select, textarea {
    background: rgba(10, 10, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.9rem 1.2rem;
    color: var(--color-text-light);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Dropdown styling adjustment */
select option {
    background: var(--color-bg-surface-elevated);
    color: var(--color-text-light);
}

/* Submission feedback */
.form-feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 0;
    animation: fadeIn 0.5s ease forwards;
}

.feedback-success-icon {
    font-size: 4rem;
    color: var(--color-gold-primary);
    margin-bottom: 1.5rem;
}

.form-feedback h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form-feedback p {
    font-size: 1rem;
    color: var(--color-text-gray);
}

.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Footer --- */
.site-footer {
    background: var(--color-bg-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 6rem 0 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.6;
    max-width: 400px;
}

.footer-links h4, .footer-compliance h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after, .footer-compliance h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links ul a {
    color: var(--color-text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links ul a:hover {
    color: var(--color-gold-primary);
    padding-left: 5px;
}

.footer-compliance p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-gray);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--gradient-gold);
    color: var(--color-bg-deep);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 1rem;
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.1rem; }
    
    .founder-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .founder-image-container {
        order: -1;
    }
    
    .offplan-card-wrapper {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .offplan-highlights {
        position: static;
    }
    
    .footer-top {
        grid-template-columns: 1.2fr 1fr;
    }
    
    .footer-compliance {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    
    .header-container {
        padding: 0.8rem 1.5rem;
    }
    
    .btn-header {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--color-bg-base);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 3rem 2rem;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    /* Mobile Menu Burger Rotation */
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-features-strip {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-features-strip .divider {
        width: 80%;
        height: 1px;
        margin: 0;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .image-wrapper {
        width: 300px;
        height: 300px;
    }
    
    .gold-accent-badge {
        width: 80px;
        height: 80px;
        bottom: 5px;
        right: 5px;
    }
    
    .badge-num { font-size: 1.3rem; }
    .badge-txt { font-size: 0.6rem; }
    
    .presence-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-compliance {
        grid-column: span 1;
    }
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.whatsapp-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-icon {
    font-size: 2.2rem;
    color: #FFFFFF;
}

.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #E31B23;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-bg-base);
    animation: pulseBadge 2s infinite;
}

.whatsapp-tooltip {
    background: rgba(18, 18, 23, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-right: 12px;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
    order: -1;
    backdrop-filter: blur(8px);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(227, 27, 35, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(227, 27, 35, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(227, 27, 35, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        font-size: 1.8rem;
    }
}

