@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* DESIGN SYSTEM VARIABLES */
:root {
    --bg-primary: #05120d;       /* Deep Forest Obsidian */
    --bg-secondary: #0a1f16;     /* Dark Pine Green */
    --bg-card: #0f2c20;          /* Moss Green Card */
    --bg-card-hover: #163f2e;    /* Highlighted Moss */
    
    --accent-gold: #c5a880;      /* Muted Luxury Gold */
    --accent-gold-bright: #e5c8a0; /* Bright Champagne Gold */
    --accent-gold-glow: rgba(197, 168, 128, 0.15);
    
    --text-primary: #f3f7f5;     /* Warm Ivory */
    --text-secondary: #b2c7bd;   /* Muted Sage */
    --text-muted: #728c7f;       /* Dark Sage */
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-luxury: 1px solid rgba(197, 168, 128, 0.12);
    --border-luxury-focus: 1px solid rgba(197, 168, 128, 0.4);
    
    --header-height: 80px;
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

p {
    color: var(--text-secondary);
    font-weight: 300;
}

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

/* LAYOUT UTILITIES */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

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

.gold-text {
    color: var(--accent-gold);
    font-family: var(--font-serif);
    font-style: italic;
}

.section-tag {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-desc {
    max-width: 650px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(197, 168, 128, 0.15);
}

.btn-primary:hover {
    background: var(--accent-gold-bright);
    border-color: var(--accent-gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(197, 168, 128, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: var(--border-luxury);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* HEADER & NAVIGATION */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(5, 18, 13, 0.85);
    backdrop-filter: blur(15px);
    height: 70px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.08);
}

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

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

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: -2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

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

.header-cta {
    display: inline-block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* MOBILE NAV */
@media (max-width: 992px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 4rem;
        gap: 2rem;
        z-index: 999;
        transition: var(--transition-smooth);
        border-left: var(--border-luxury);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    nav.open {
        right: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .header-cta {
        display: none;
    }
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #030a08;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 0.35;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 20%, var(--bg-primary) 85%),
                linear-gradient(to bottom, rgba(5, 18, 13, 0.4) 0%, var(--bg-primary) 95%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 900px;
    text-align: center;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
}

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 10px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 1.5s infinite;
}

/* KEY STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: -4rem;
    position: relative;
    z-index: 5;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
        padding: 0 1rem;
    }
}

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

.stat-card {
    background: var(--bg-secondary);
    border: var(--border-luxury);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    transform: translateX(-100%);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.3);
    box-shadow: 0 20px 40px rgba(197, 168, 128, 0.05);
}

.stat-card:hover::before {
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-serif);
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

/* ABOUT SECTION */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.about-feature {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.feature-text h4 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: var(--border-luxury);
    pointer-events: none;
    border-radius: var(--border-radius);
    margin: 15px;
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
}

/* PORTFOLIO / GALLERY SECTION */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: none;
    border: var(--border-luxury);
    padding: 0.5rem 1.5rem;
    color: var(--text-secondary);
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    transition: var(--transition-smooth);
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: var(--border-luxury);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 18, 13, 0.9), transparent 80%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.gallery-info p {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-more-container {
    text-align: center;
    margin-top: 3rem;
}

/* POTENTIAL / INVESTMENT SECTION */
.potential-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

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

.potential-card {
    background: var(--bg-secondary);
    border: var(--border-luxury);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.potential-card-bg {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.potential-card:hover .potential-card-bg {
    transform: scale(1.1);
    opacity: 0.08;
}

.potential-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
}

.potential-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.potential-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.potential-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.potential-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.potential-features li svg {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.potential-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* TECHNICAL SPECIFICATION SECTION */
.tech-section {
    background-color: var(--bg-secondary);
    position: relative;
}

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

@media (max-width: 992px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-item {
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    padding-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.tech-item:hover {
    border-color: var(--accent-gold);
}

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

.tech-header h3 {
    font-size: 1.25rem;
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--text-primary);
}

.tech-value {
    color: var(--accent-gold);
    font-weight: 500;
    font-size: 1rem;
}

.tech-desc {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tech-visual {
    background: var(--bg-card);
    border: var(--border-luxury);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.tech-visual-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: var(--border-luxury);
    padding-bottom: 1rem;
}

.tech-visual-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.tech-visual-label {
    color: var(--text-muted);
}

.tech-visual-value {
    font-weight: 600;
    color: var(--text-primary);
}

.tech-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 30px;
    font-weight: 600;
}

/* MAP SECTION */
.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: var(--border-luxury);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-card-info {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(5, 18, 13, 0.92);
    backdrop-filter: blur(10px);
    border: var(--border-luxury);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 320px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .map-container {
        height: auto;
        overflow: visible;
        border: none;
        box-shadow: none;
        background: transparent;
    }
    
    #map {
        height: 350px;
        border-radius: var(--border-radius);
        border: var(--border-luxury);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .map-card-info {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        margin-bottom: 1.5rem;
        border-radius: var(--border-radius);
    }
}

.map-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.map-card-text {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.map-route-list {
    list-style: none;
    padding: 0;
}

.map-route-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
    padding: 0.5rem 0;
}

.map-route-item:last-child {
    border-bottom: none;
}

/* CONTACT & AGENT SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.agent-card {
    background: var(--bg-secondary);
    border: var(--border-luxury);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.agent-avatar-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    border: 2px solid var(--accent-gold);
    padding: 5px;
    position: relative;
}

.agent-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background-color: var(--bg-card);
}

.agent-name {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

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

.agent-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.agent-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.agent-detail-item a {
    color: inherit;
    display: inline-block;
    transition: var(--transition-smooth);
}

.agent-detail-item a:hover {
    color: var(--accent-gold);
    transform: scale(1.05);
}

.agent-detail-item svg {
    color: var(--accent-gold);
    width: 18px;
    height: 18px;
}

.agent-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.agent-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: var(--border-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.agent-social-link:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(197, 168, 128, 0.05);
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    border: var(--border-luxury);
    border-radius: var(--border-radius);
    padding: 4rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

@media (max-width: 576px) {
    .contact-form-wrapper {
        padding: 2.5rem 1.5rem;
    }
}

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

@media (max-width: 576px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: var(--bg-primary);
    border: var(--border-luxury);
    border-radius: 8px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.1);
}

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

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    display: block;
    color: #4cd964;
}

.form-status.error {
    display: block;
    color: #ff3b30;
}

/* LIGHTBOX STYLING */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 8, 0.98);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: var(--border-luxury);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border-radius: 4px;
}

.lightbox-caption {
    color: var(--accent-gold);
    font-family: var(--font-serif);
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -3.5rem;
    right: 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.03);
    border: var(--border-luxury);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2001;
}

.lightbox-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
}

.lightbox-prev {
    left: -4rem;
}

.lightbox-next {
    right: -4rem;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 0;
        top: auto;
        bottom: -4rem;
    }
    .lightbox-next {
        right: 0;
        top: auto;
        bottom: -4rem;
    }
    .lightbox-close {
        top: -3rem;
        right: 1rem;
    }
}

/* SCROLL ANIMATION CLASSES */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

@keyframes scrollAnimation {
    0% {
        top: 6px;
        opacity: 1;
    }
    50% {
        top: 18px;
        opacity: 0;
    }
    100% {
        top: 6px;
        opacity: 1;
    }
}

/* FOOTER */
footer {
    background: #030a08;
    border-top: var(--border-luxury);
    padding: 3rem 0;
    font-size: 0.85rem;
}

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

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.footer-copy {
    color: var(--text-muted);
}

.footer-copy a {
    color: var(--accent-gold);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.footer-copy a:hover {
    color: var(--accent-gold-bright);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.footer-link {
    color: var(--text-secondary);
}

.footer-link:hover {
    color: var(--accent-gold);
}
