:root {
    --primary: #d3a860;
    /* Gold */
    --primary-light: #e5bd75;
    --primary-dark: #b8914b;
    --bg-dark: #06110b;
    /* Very dark green-black */
    --bg-darker: #030805;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --border: rgba(211, 168, 96, 0.2);
    --glass-blur: blur(12px);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 500;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Base Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.section-tag {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-gold {
    background-color: var(--primary);
    color: var(--bg-darker);
    border: 1px solid var(--primary);
}

.btn-gold:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 168, 96, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: rgba(211, 168, 96, 0.1);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--bg-darker);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(3, 8, 5, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0.8rem 0;
    background: rgba(3, 8, 5, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

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

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

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--primary);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-sub {
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    /* Above mobile menu */
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
    background: url('https://images.unsplash.com/photo-1613490908236-9e17c0d12f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(211, 168, 96, 0.05);
    border: 1px solid rgba(211, 168, 96, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.gallery-video-wrapper iframe {
    position: absolute;
    top: -55px;
    left: 0;
    width: 100%;
    height: calc(100% + 110px);
    pointer-events: auto;
}

/* Founder Portrait Styling */
.founder-image-wrapper {
    height: 100%;
    max-height: 600px;
}

.founder-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top center;
    /* Keeps face in view */
    border-radius: 4px;
    display: block;
}

/* Founder Bio Styling */
.founder-bio {
    margin-top: 1.5rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(211, 168, 96, 0.1);
    border-radius: 8px;
}

.founder-bio h3 {
    font-size: 1.6rem;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}

.bio-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.founder-bio p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

/* Elegant Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-darker);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    /* Gold */
    letter-spacing: 2px;
    opacity: 0;
    text-transform: uppercase;
    animation: simpleFade 1.8s ease-in-out forwards;
}

@keyframes simpleFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    40% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 15px rgba(211, 168, 96, 0.4);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(3, 8, 5, 0.4) 0%, #030805 100%);
}

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

.hero-title {
    font-size: 4.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Reach Statistics */
.social-proof {
    background: var(--bg-dark);
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.wrapper-proof {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.proof-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.proof-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.proof-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.founders-box {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.founder h4 {
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.founder span {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-wrapper {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    border: 1px solid var(--primary);
    z-index: 2;
    border-radius: 4px;
    pointer-events: none;
}

.about-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* Services */
.services {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 8px;
    transition: all 0.4s ease;
    backdrop-filter: var(--glass-blur);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
    font-family: var(--font-body);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Properties Grid */
.properties {
    padding: 8rem 0;
    background: var(--bg-darker);
}

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

.prop-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.prop-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.prop-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.prop-info {
    padding: 2rem;
}

.prop-info h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.prop-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.prop-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(211, 168, 96, 0.1);
    color: var(--primary);
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.test-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.test-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: var(--glass-blur);
}

.stars {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.test-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.test-card h4 {
    color: var(--primary);
    font-size: 1rem;
}

/* Social Community */
.social-community {
    padding: 8rem 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border);
}

.social-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.social-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s ease;
    border: 1px solid transparent;
}

.social-gallery img:hover {
    transform: scale(1.03);
    border-color: var(--primary);
}

@media (max-width: 900px) {
    .test-grid {
        grid-template-columns: 1fr;
    }

    .social-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .social-gallery {
        grid-template-columns: 1fr;
    }
}

/* CTA */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(45deg, var(--bg-darker) 0%, #0a1f14 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-desc {
    margin-top: 1.5rem;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links ul {
    list-style: none;
    margin-top: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer h4 {
    color: var(--text-main);
}

.footer-contact p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.8;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

.insta-link {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
    margin-left: 8px;
    font-weight: normal;
}

.insta-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-darker);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-title {
        font-size: 3rem;
    }

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