:root {
    /* Luxury Color Palette */
    --color-gold: #D4Af37;
    --color-gold-light: #F7E7CE;
    --color-charcoal: #1A1A1A;
    --color-royal-blue: #002366;
    --color-white: #FFFFFF;
    --color-glass: rgba(255, 255, 255, 0.1);
    --color-glass-border: rgba(255, 255, 255, 0.2);
    --color-overlay: rgba(0, 0, 0, 0.6);

    /* Fonts */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 20px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

section {
    scroll-snap-align: start;
    scroll-margin-top: 80px;
}

body {
    background-color: var(--color-charcoal);
    color: var(--color-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    color: var(--color-gold-light);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

p {
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.text-gold {
    color: var(--color-gold);
}

/* Luxury Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.glass-card {
    background: var(--color-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-glass-border);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--color-gold);
}

.btn-luxury {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--color-gold), #B8860B);
    color: var(--color-charcoal);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-luxury:hover {
    background: linear-gradient(45deg, #FFD700, var(--color-gold));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-glass);
    color: var(--color-white);
}

/* Animation Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1s ease-out, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-charcoal);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 80px;
    /* Increased height for visibility */
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-serif);
    color: var(--color-gold);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-tagline {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #aaa;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.btn-luxury {
    color: var(--color-charcoal);
}

.nav-links a.btn-luxury::after {
    display: none;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Glass Logo Box */
.logo-glass-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo-glass-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
}

.hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    /* Blend white background into glass */
    mix-blend-mode: multiply;
    filter: contrast(1.1) brightness(1.1);
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.subheadline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: var(--color-gold);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}


/* Services Section */
.section-padding {
    padding: 100px 0;
}

/* Background Utilities for Seamless Blending */
.hero-bg,
.services-bg,
.vision-bg,
.why-us-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg {
    background-image: linear-gradient(to bottom, #1A1A1A 0%, rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.6) 80%, #1A1A1A 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
}

.services-bg {
    background-image: linear-gradient(to bottom, #1A1A1A 0%, rgba(0, 0, 0, 0.6) 15%, rgba(0, 0, 0, 0.6) 85%, #1A1A1A 100%),
        url('https://images.unsplash.com/photo-1480714378408-67cf0d13bc1b?q=80&w=2070&auto=format&fit=crop');
    /* Futuristic City Grid/Plots */
}

.vision-bg {
    background-image: linear-gradient(to bottom, #1A1A1A 0%, rgba(0, 0, 0, 0.8) 15%, rgba(0, 0, 0, 0.8) 85%, #1A1A1A 100%),
        url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=2053&auto=format&fit=crop');
}

.why-us-bg {
    background-image: linear-gradient(to bottom, #1A1A1A 0%, rgba(0, 0, 0, 0.8) 15%, rgba(0, 0, 0, 0.8) 85%, #1A1A1A 100%),
        url('https://images.unsplash.com/photo-1613545325278-f24b0cae1224?q=80&w=2070&auto=format&fit=crop');
    /* Luxury Villa */
}

.vision-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.luxury-quote {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.4;
    color: var(--color-white);
    margin: 40px 0;
    position: relative;
}

.luxury-quote::before {
    content: '“';
    font-size: 6rem;
    color: var(--color-gold);
    position: absolute;
    top: -40px;
    left: -20px;
    opacity: 0.3;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.value-item h4 {
    color: var(--color-gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us */
.luxury-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.luxury-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03));
    border-left: 4px solid var(--color-gold);
}

.list-icon {
    color: var(--color-gold);
}

/* Contact Section */
.contact-bg {
    background-image: linear-gradient(to bottom, #1A1A1A 0%, rgba(0, 0, 0, 0.4) 15%, rgba(0, 0, 0, 0.4) 85%, #1A1A1A 100%),
        url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=3200&auto=format&fit=crop');
    /* Stunning Green Land/Plots */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--color-white);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-info {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--color-gold);
    max-width: 600px;
    width: 100%;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.detail-item {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: left;
    width: 100%;
}

.contact-details {
    margin-top: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    color: var(--color-gold);
    width: 24px;
    height: 24px;
    margin-top: 5px;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-glass-border);
    color: var(--color-white);
    font-family: var(--font-sans);
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.width-full {
    width: 100%;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--color-glass-border);
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    /* Mobile Menu implementation needed if detailed */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}