/* =====================================================
   XELAR - Premium Real Estate Design 2025
   Unique Color Palette & Modern Layout
   ===================================================== */

/* ==================== CSS CUSTOM PROPERTIES ==================== */
:root {
    /* Unique Color Palette - Deep Purple & Warm Accents */
    --color-primary: #1a0f2e;
    --color-primary-light: #2d1b4e;
    --color-primary-dark: #0d0717;
    
    --color-accent-gold: #f4a261;
    --color-accent-coral: #e76f51;
    --color-accent-mint: #2a9d8f;
    --color-accent-teal: #264653;
    
    --color-bg-dark: #0f0a1c;
    --color-bg-medium: #1a1333;
    --color-bg-light: #f8f7fc;
    --color-bg-card: #ffffff;
    
    --color-text-primary: #1a0f2e;
    --color-text-secondary: #6b5c7a;
    --color-text-light: #ffffff;
    --color-text-muted: #9e8fb3;
    
    --color-border: rgba(107, 92, 122, 0.15);
    --color-border-light: rgba(248, 247, 252, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
    --gradient-secondary: linear-gradient(135deg, #2a9d8f 0%, #264653 100%);
    --gradient-dark: linear-gradient(180deg, #1a0f2e 0%, #0f0a1c 100%);
    --gradient-mesh: radial-gradient(at 20% 30%, rgba(244, 162, 97, 0.15) 0%, transparent 50%),
                     radial-gradient(at 80% 70%, rgba(42, 157, 143, 0.15) 0%, transparent 50%),
                     radial-gradient(at 50% 50%, rgba(231, 111, 81, 0.1) 0%, transparent 50%);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-unit: 1rem;
    --space-xs: calc(var(--space-unit) * 0.5);
    --space-sm: calc(var(--space-unit) * 0.75);
    --space-md: var(--space-unit);
    --space-lg: calc(var(--space-unit) * 1.5);
    --space-xl: calc(var(--space-unit) * 2);
    --space-2xl: calc(var(--space-unit) * 3);
    --space-3xl: calc(var(--space-unit) * 4);
    --space-4xl: calc(var(--space-unit) * 6);
    --space-5xl: calc(var(--space-unit) * 8);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 15, 46, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 15, 46, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 15, 46, 0.16);
    --shadow-xl: 0 16px 48px rgba(26, 15, 46, 0.2);
    
    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --container-width: 1280px;
    --container-padding: 2rem;
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    background: var(--color-bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: var(--color-accent-gold);
    color: var(--color-text-light);
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: var(--space-md);
}

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

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

/* ==================== LAYOUT ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==================== HEADER / NAVIGATION ==================== */
.header-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    background: rgba(248, 247, 252, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--color-border);
    transition: all var(--transition-base);
}

.header-floating.scrolled {
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-md);
}

.nav-floating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.logo-unique {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: transform var(--transition-fast);
}

.logo-unique:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--color-accent-gold);
    transition: color var(--transition-fast);
}

.logo-unique:hover .logo-icon {
    color: var(--color-accent-coral);
}

.nav-menu-unique {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link-unique {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    position: relative;
    padding: var(--space-xs) 0;
}

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

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

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

.btn-cta-nav {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--color-text-light);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.3);
    transition: all var(--transition-base);
}

.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 162, 97, 0.4);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ==================== HERO SECTION ==================== */
.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-5xl) + 60px) 0 var(--space-4xl);
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: var(--color-accent-gold);
    animation-delay: 0s;
}

.shape-2 {
    top: 50%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: var(--color-accent-mint);
    animation-delay: 5s;
}

.shape-3 {
    bottom: 10%;
    left: 30%;
    width: 350px;
    height: 350px;
    background: var(--color-accent-coral);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 40px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

.mesh-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
}

.hero-content-center {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-text-light);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
}

.eyebrow-icon {
    color: var(--color-accent-gold);
}

.hero-headline {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.headline-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
}

.hero-actions-unique {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--color-text-light);
    box-shadow: 0 8px 24px rgba(244, 162, 97, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(244, 162, 97, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
}

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

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-light);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-3xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(12px); }
}

/* ==================== FEATURED PROPERTIES ==================== */
.featured-properties {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-light);
}

.section-header-modern {
    text-align: left;
    margin-bottom: var(--space-4xl);
}

.section-header-modern.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(244, 162, 97, 0.1);
    border: 1px solid rgba(244, 162, 97, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-accent-gold);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-label.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-text-light);
}

.section-title-modern {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--space-md);
}

.section-title-modern.light {
    color: var(--color-text-light);
}

.section-description-modern {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.properties-grid-unique {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.property-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.property-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.property-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-text-light);
    color: var(--color-accent-coral);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.property-badge.premium {
    background: var(--gradient-primary);
    color: var(--color-text-light);
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 15, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.btn-property-view {
    padding: 0.75rem 1.5rem;
    background: var(--color-text-light);
    color: var(--color-primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.btn-property-view:hover {
    transform: scale(1.05);
}

.property-info {
    padding: var(--space-xl);
}

.property-location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-accent-mint);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.property-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.property-description {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.property-features {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.feature-item svg {
    color: var(--color-accent-gold);
}

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

.property-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.btn-property-contact {
    padding: 0.625rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--color-text-light);
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    transition: all var(--transition-base);
}

.btn-property-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 162, 97, 0.4);
}

.section-cta-center {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.btn-view-all:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
}

/* ==================== SERVICES TIMELINE ==================== */
.services-timeline {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-medium);
}

.services-timeline .section-title-modern,
.services-timeline .section-label,
.services-timeline .section-description-modern {
    color: var(--color-text-light);
}

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-4xl);
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(180deg, 
        var(--color-accent-gold) 0%, 
        var(--color-accent-coral) 50%,
        var(--color-accent-mint) 100%
    );
    opacity: 0.3;
}

.timeline-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text-light);
    box-shadow: 0 8px 24px rgba(244, 162, 97, 0.4);
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.timeline-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.timeline-icon svg {
    color: var(--color-text-light);
}

.timeline-title {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.timeline-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ==================== LOCATIONS ==================== */
.locations-section {
    padding: var(--space-5xl) 0;
    background: var(--color-bg-light);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
}

.location-card {
    background: var(--color-bg-card);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-base);
}

.location-card:hover {
    border-color: var(--color-accent-gold);
    transform: translateY(-8px) rotateY(5deg);
    box-shadow: var(--shadow-lg);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.location-name {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.location-address {
    color: var(--color-text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.location-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    font-weight: 600;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.location-link:hover {
    background: var(--color-accent-gold);
    color: var(--color-text-light);
}

/* ==================== CONTACT FORM UNIQUE ==================== */
.contact-section-unique {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(244, 162, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(42, 157, 143, 0.1) 0%, transparent 50%);
}

.contact-layout {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-info-side {
    position: sticky;
    top: 120px;
}

.contact-intro-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--space-3xl);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.method-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.method-icon svg {
    color: var(--color-accent-gold);
}

.method-details {
    flex: 1;
}

.method-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.method-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light);
}

/* Floating Form */
.contact-form-side {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.floating-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.floating-input-group {
    position: relative;
}

.floating-input,
.floating-select,
.floating-textarea {
    width: 100%;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-light);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: all var(--transition-base);
}

.floating-textarea {
    min-height: 120px;
    resize: vertical;
}

.floating-select {
    appearance: none;
    cursor: pointer;
}

.floating-label {
    position: absolute;
    left: 0;
    top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    pointer-events: none;
    transition: all var(--transition-base);
}

.floating-input:focus,
.floating-select:focus,
.floating-textarea:focus {
    border-bottom-color: var(--color-accent-gold);
}

.floating-input:focus + .floating-label,
.floating-input:not(:placeholder-shown) + .floating-label,
.floating-select:focus + .floating-label,
.floating-select:valid + .floating-label,
.floating-textarea:focus + .floating-label,
.floating-textarea:not(:placeholder-shown) + .floating-label {
    top: -0.5rem;
    font-size: 0.75rem;
    color: var(--color-accent-gold);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.floating-input:focus ~ .input-border,
.floating-select:focus ~ .input-border,
.floating-textarea:focus ~ .input-border {
    width: 100%;
}

.form-checkbox-unique {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.form-checkbox-unique input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--color-accent-gold);
}

.form-checkbox-unique label {
    flex: 1;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.form-checkbox-unique a {
    color: var(--color-accent-gold);
    text-decoration: underline;
}

.btn-submit-unique {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 8px 24px rgba(244, 162, 97, 0.4);
}

.btn-submit-unique:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(244, 162, 97, 0.5);
}

/* ==================== FOOTER ==================== */
.footer-modern {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-modern {
    max-width: 350px;
}

.footer-brand-modern .logo-unique {
    margin-bottom: var(--space-lg);
}

.footer-brand-modern .logo-icon {
    color: var(--color-accent-gold);
}

.footer-brand-modern .logo-text {
    color: var(--color-text-light);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-column-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links-list a:hover {
    color: var(--color-accent-gold);
    padding-left: var(--space-xs);
}

.footer-bottom-modern {
    text-align: center;
}

.footer-bottom-modern p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom-modern a {
    color: var(--color-accent-gold);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .properties-grid-unique {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .contact-info-side {
        position: static;
    }
    
    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu-unique {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-bg-card);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-5xl) var(--space-xl) var(--space-xl);
        gap: var(--space-lg);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: 999;
    }
    
    .nav-menu-unique.active {
        right: 0;
    }
    
    .btn-cta-nav {
        width: 100%;
        justify-content: center;
    }
    
    .burger-menu {
        display: flex;
        z-index: 1001;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .hero-immersive {
        min-height: auto;
        padding: calc(var(--space-4xl) + 60px) 0 var(--space-3xl);
    }
    
    .hero-actions-unique {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats-modern {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }
    
    .stat-divider {
        display: none;
    }
    
    .properties-grid-unique {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: var(--space-lg);
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .timeline-item:not(:last-child)::before {
        left: 30px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-side {
        padding: var(--space-xl);
    }
    
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* ==================== ANIMATIONS & UTILITIES ==================== */
[data-aos] {
    transition: all var(--transition-slow);
}

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

/* ==================== LOADING ANIMATIONS ==================== */
.loading-shimmer {
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.1) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
