:root {
    --color-primary: #1a1a2e;
    --color-secondary: #16213e;
    --color-accent: #c9a962;
    --color-accent-light: #d4b978;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-dark: #0f0f1a;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--color-dark); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(26,26,46,0.95); backdrop-filter: blur(10px); }
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 2rem; max-width: 1400px; margin: 0 auto; }
.logo-text { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); font-weight: 600; }
.logo-text span { color: var(--color-accent); }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.nav-menu { display: flex; list-style: none; gap: 0.5rem; }
.nav-menu > li > a { display: block; padding: 0.75rem 1rem; color: var(--color-white); font-size: 0.95rem; font-weight: 500; border-radius: 4px; }
.nav-menu > li > a:hover { color: var(--color-accent); background: rgba(201,169,98,0.1); }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.mobile-toggle span { width: 25px; height: 2px; background: var(--color-white); }

.btn { display: inline-block; padding: 0.875rem 1.75rem; font-size: 0.95rem; font-weight: 600; border-radius: 4px; cursor: pointer; transition: var(--transition); border: none; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary { background: var(--color-accent); color: var(--color-primary); }
.btn-primary:hover { background: var(--color-accent-light); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(201,169,98,0.4); }
.btn-outline { background: transparent; color: var(--color-white); border: 2px solid var(--color-accent); }
.btn-outline:hover { background: var(--color-accent); color: var(--color-primary); }

.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(26,26,46,0.4) 0%, rgba(26,26,46,0.6) 50%, rgba(26,26,46,0.8) 100%); z-index: 2; }
.hero-content { position: relative; z-index: 3; text-align: center; color: var(--color-white); max-width: 900px; padding: 0 2rem; }
.hero-subtitle { font-size: 1rem; text-transform: uppercase; letter-spacing: 3px; color: var(--color-accent); margin-bottom: 1rem; }
.hero-title { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 600; line-height: 1.2; margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--color-accent); }
.hero-description { font-size: 1.25rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.quick-links { background: var(--color-primary); padding: 1.5rem 0; border-bottom: 1px solid rgba(201,169,98,0.2); }
.quick-links-inner { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.quick-link { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--color-white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; transition: var(--transition); }
.quick-link:hover { opacity: 1; color: var(--color-accent); transform: translateY(-3px); }
.quick-link-icon { font-size: 1.5rem; }

.section { padding: 6rem 0; }
.section-dark { background: var(--color-primary); color: var(--color-white); }
.section-light { background: var(--color-light); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-subtitle { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 3px; color: var(--color-accent); margin-bottom: 1rem; }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 1rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; border-radius: 16px; overflow: hidden; }
.about-image img { width: 100%; height: auto; display: block; }
.about-content h3 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--color-primary); }
.about-content p { color: var(--color-gray); margin-bottom: 1.5rem; font-size: 1.1rem; line-height: 1.8; }

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

.site-footer { background: var(--color-dark); color: var(--color-white); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-description { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--color-accent); }
.footer-column h4 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--color-accent); }
.footer-contact p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-toggle { display: flex; }
    .about-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
}

/* Hero Search Bar Styling */
.hero-search .gas-search-widget {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
}

.hero-search .gas-search-widget label,
.hero-search .gas-search-widget .gas-search-label {
    color: white !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.hero-search .gas-search-widget input,
.hero-search .gas-search-widget select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.hero-search .gas-search-widget input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.hero-search .gas-search-widget select option {
    background: #1e293b;
    color: white;
}

.hero-search .gas-search-widget .gas-search-btn {
    background: #c9a227 !important;
    color: #1e293b !important;
    font-weight: 600;
}

.hero-search .gas-search-widget .gas-search-btn:hover {
    background: #b8911f !important;
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Full bleed about section */
.about-section-fullbleed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}
.about-section-fullbleed .about-image-full {
    background-size: cover;
    background-position: center;
    min-height: 500px;
}
.about-section-fullbleed .about-content-full {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-section-fullbleed .about-content-full h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-style: italic;
    color: #1e293b;
    margin-bottom: 2rem;
}
.about-section-fullbleed .about-content-full p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .about-section-fullbleed {
        grid-template-columns: 1fr;
    }
    .about-section-fullbleed .about-content-full {
        padding: 40px 20px;
    }
}

/* Override about section for full bleed */
.section .about-grid {
    gap: 0;
}
.section .about-image {
    border-radius: 0;
    margin-left: calc(-50vw + 50%);
    width: 50vw;
}
.section .about-image img {
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}
.section .about-content {
    padding: 60px;
}

/* Fix full bleed image */
.section .container {
    max-width: 100%;
    padding: 0;
}
.section .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.section .about-image {
    margin: 0;
    width: 100%;
}
.section .about-content {
    padding: 80px 80px 80px 60px;
}

/* Remove section padding */
.section {
    padding: 0 !important;
}

/* Image full height */
.section .about-image img {
    min-height: 600px;
    width: 100%;
    object-fit: cover;
}
.section .about-grid {
    align-items: stretch;
}

/* Feature cards scroll animation */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.4s; }

/* Feature cards scroll animation */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.4s; }
