/* ==========================================================================
   Theme 2: Cinematic Elegance — Dark Premium
   Inspired by DAMAC Properties Dubai, The Oppenheim Group, Luxury Presence
   ========================================================================== */

/* -------------------- CSS Custom Properties -------------------- */
:root {
    --deep-black: #1A1A1A;
    --dark-surface: #2D2D2D;
    --brushed-gold: #B8860B;
    --gold-light: #D4AF37;
    --champagne: #F7E7CE;
    --pure-white: #FFFFFF;
    --dark-card: #242424;

    --gold-glow: rgba(212, 175, 55, 0.25);
    --gold-glow-strong: rgba(212, 175, 55, 0.45);
    --gold-gradient: linear-gradient(135deg, #B8860B, #D4AF37, #F7E7CE, #D4AF37, #B8860B);
    --gold-subtle-gradient: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(212, 175, 55, 0.04));

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Prompt', sans-serif;

    --container-max: 1240px;
    --section-pad: 100px;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* -------------------- Reset & Base -------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background-color: var(--deep-black);
    color: var(--pure-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* -------------------- Container -------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------- Section Headers -------------------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--pure-white);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.section-gold-divider {
    width: 80px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 0 auto;
}

/* =====================================================================
   NAVIGATION
   ===================================================================== */
.nav-toggle {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.1);
    transition: filter var(--transition-smooth);
}

.nav-logo:hover img {
    filter: brightness(1.3);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.04em;
    transition: color var(--transition-smooth);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

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

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--gold-light);
    transition: all 0.35s ease;
    transform-origin: center;
}

/* =====================================================================
   HERO SECTION
   ===================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--deep-black);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 49px,
            rgba(212, 175, 55, 0.03) 49px,
            rgba(212, 175, 55, 0.03) 50px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 49px,
            rgba(212, 175, 55, 0.03) 49px,
            rgba(212, 175, 55, 0.03) 50px
        );
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(184, 134, 11, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(26, 26, 26, 0.3) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: heroFadeIn 1.2s ease-out both;
}

.hero-gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold-gradient);
    margin: 16px auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(3.5rem, 8vw, 7rem);
    color: var(--pure-white);
    letter-spacing: 0.2em;
    line-height: 1.1;
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.15);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--champagne);
    letter-spacing: 0.15em;
    margin-top: 24px;
    opacity: 0.85;
}

.breadcrumb {
    margin-top: 40px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb-sep {
    display: inline-flex;
    align-items: center;
    margin: 0 12px;
    vertical-align: middle;
}

.breadcrumb-current {
    color: var(--gold-light);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.6;
}

.scroll-arrow {
    animation: scrollArrow 2s ease-in-out infinite;
}

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

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollArrow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* =====================================================================
   CONTACT INFO CARDS
   ===================================================================== */
.contact-cards-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
    position: relative;
}

.contact-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.3;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--dark-card);
    border-top: 2px solid var(--gold-light);
    border-radius: 2px;
    padding: 40px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    animation: cardFadeUp 0.8s ease-out both;
    animation-delay: var(--card-delay, 0s);
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-subtle-gradient);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px var(--gold-glow),
        inset 0 1px 0 rgba(212, 175, 55, 0.15);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-card-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.contact-card-text {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    color: var(--pure-white);
    margin-bottom: 6px;
}

.contact-card-text a {
    color: var(--pure-white);
}

.contact-card-text a:hover {
    color: var(--gold-light);
}

.contact-card-note {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

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

/* =====================================================================
   CONTACT FORM + MAP
   ===================================================================== */
.form-map-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
    position: relative;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Form */
.form-wrapper {
    background: var(--dark-card);
    padding: 48px;
    border-radius: 2px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--champagne);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.required {
    color: var(--gold-light);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(26, 26, 26, 0.8);
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--pure-white);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    padding: 14px 16px;
    border-radius: 0;
    transition: all var(--transition-smooth);
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--gold-light);
    box-shadow: 0 2px 12px var(--gold-glow);
    background: rgba(26, 26, 26, 1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    padding-right: 40px;
    cursor: pointer;
}

.select-wrapper select option {
    background: var(--dark-card);
    color: var(--pure-white);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Consent */
.form-consent {
    margin-bottom: 32px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.consent-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.consent-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-smooth);
    position: relative;
    margin-top: 2px;
}

.consent-check::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--gold-light);
    border-radius: 1px;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.consent-label input[type="checkbox"]:checked + .consent-check {
    border-color: var(--gold-light);
}

.consent-label input[type="checkbox"]:checked + .consent-check::after {
    transform: scale(1);
}

.consent-text a {
    color: var(--gold-light);
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.4);
}

.consent-text a:hover {
    text-decoration-color: var(--gold-light);
}

/* Submit Button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    padding: 16px 48px;
    border: 1px solid var(--gold-light);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-light);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.btn-submit:hover {
    color: var(--deep-black);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-submit:hover::before {
    left: 0;
}

/* Map */
.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-frame {
    width: 100%;
    height: 480px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    position: relative;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    filter: brightness(0.85) contrast(1.1) saturate(0.8);
    transition: filter var(--transition-smooth);
}

.map-frame:hover iframe {
    filter: brightness(1) contrast(1) saturate(1);
}

.map-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--dark-card);
    border-left: 2px solid var(--gold-light);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.map-info-icon {
    flex-shrink: 0;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-light);
    font-size: 0.85rem;
    margin-left: auto;
    flex-shrink: 0;
    white-space: nowrap;
}

.map-link:hover {
    color: var(--champagne);
}

/* =====================================================================
   OFFICE HOURS & DIRECTIONS
   ===================================================================== */
.hours-directions-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
    position: relative;
}

.hours-directions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.3;
}

.hours-directions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.block-header h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    color: var(--pure-white);
}

.gold-accent-line {
    width: 50px;
    height: 1px;
    background: var(--gold-gradient);
    margin-bottom: 32px;
}

/* Hours Table */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-table td {
    padding: 16px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    vertical-align: middle;
}

.hours-table td:first-child {
    font-weight: 400;
    color: var(--pure-white);
}

.hours-time {
    color: var(--gold-light) !important;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.hours-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.hours-badge.open {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.hours-badge.closed {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Directions */
.direction-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.direction-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.direction-number {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--gold-light);
    opacity: 0.4;
    line-height: 1;
    min-width: 36px;
}

.direction-content h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--pure-white);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.direction-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.faq-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 2px;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

.faq-item[open] {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 15px var(--gold-glow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--pure-white);
    letter-spacing: 0.02em;
    list-style: none;
    transition: color var(--transition-smooth);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold-light);
    transition: transform 0.35s ease;
}

.faq-icon::before {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 1px;
    transform: translateY(-50%);
}

.faq-icon::after {
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 1px;
    transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 28px 24px;
    animation: faqSlideDown 0.35s ease-out;
}

.faq-answer p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    padding-top: 8px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================================
   NEWSLETTER
   ===================================================================== */
.newsletter-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: var(--deep-black);
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, transparent 50%),
        linear-gradient(315deg, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    letter-spacing: 0.06em;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
}

.newsletter-input-group {
    display: flex;
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.newsletter-input-group input {
    flex: 1;
    background: rgba(26, 26, 26, 0.8);
    border: none;
    color: var(--pure-white);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    padding: 16px 20px;
    outline: none;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.newsletter-input-group button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-light);
    color: var(--deep-black);
    border: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 16px 24px;
    cursor: pointer;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: all var(--transition-smooth);
}

.newsletter-input-group button:hover {
    background: var(--champagne);
    box-shadow: 0 4px 20px var(--gold-glow-strong);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer {
    background: #111111;
    padding-top: 0;
}

.footer-gold-line {
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 64px 0 48px;
}

.footer-logo {
    height: 46px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.footer-tagline {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--gold-light);
    font-style: italic;
    margin-bottom: 12px;
}

.footer-experience {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold-light);
    opacity: 0.5;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-smooth);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-light);
    box-shadow: 0 0 15px var(--gold-glow);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-bottom: 28px;
}

.footer-bottom-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.footer-bottom p {
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.04em;
}

/* =====================================================================
   ANIMATIONS - Generic
   ===================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes goldGlow {
    0%, 100% {
        box-shadow: 0 0 10px var(--gold-glow);
    }
    50% {
        box-shadow: 0 0 25px var(--gold-glow-strong);
    }
}

/* =====================================================================
   RESPONSIVE - Tablet (max-width: 1024px)
   ===================================================================== */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-map-grid {
        grid-template-columns: 1fr;
    }

    .map-frame {
        height: 400px;
    }

    .hours-directions-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* =====================================================================
   RESPONSIVE - Mobile (max-width: 768px)
   ===================================================================== */
@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

    /* Mobile Nav */
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(26, 26, 26, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: 0;
        padding: 40px;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        border-left: 1px solid rgba(212, 175, 55, 0.15);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-toggle:checked ~ .nav-links,
    .nav-toggle:checked ~ nav .nav-links,
    #nav-toggle:checked ~ nav .nav-links {
        right: 0;
    }

    /* Checkbox hack: toggle is sibling of nav */
    .nav-toggle:checked ~ .navbar .nav-links {
        right: 0;
    }

    .nav-toggle:checked ~ .navbar .nav-hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle:checked ~ .navbar .nav-hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked ~ .navbar .nav-hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .hero-title {
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        letter-spacing: 0.05em;
    }

    /* Cards */
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        padding: 28px 24px;
    }

    /* Form */
    .form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-frame {
        height: 300px;
    }

    .map-info {
        flex-wrap: wrap;
    }

    .map-link {
        margin-left: 0;
        margin-top: 8px;
        width: 100%;
    }

    /* Newsletter */
    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-group button {
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 0 36px;
    }

    /* FAQ */
    .faq-question {
        padding: 18px 20px;
        font-size: 0.88rem;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    /* Scroll indicator */
    .scroll-indicator {
        bottom: 24px;
    }
}

/* =====================================================================
   Focus Styles for Accessibility
   ===================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

/* =====================================================================
   Selection Color
   ===================================================================== */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--pure-white);
}

::-moz-selection {
    background: rgba(212, 175, 55, 0.3);
    color: var(--pure-white);
}

/* =====================================================================
   Scrollbar Styling
   ===================================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-black);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.25);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.45);
}

/* =====================================================================
   HOMEPAGE - HERO
   ===================================================================== */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--deep-black);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: heroFadeIn 1.2s ease-out both;
}

.home-hero-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.home-hero-title {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(3.5rem, 10vw, 8rem);
    color: var(--pure-white);
    letter-spacing: 0.25em;
    line-height: 1.05;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.15);
}

.home-hero-tagline {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--gold-light);
    font-style: italic;
    letter-spacing: 0.1em;
    margin-top: 28px;
}

.home-hero-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--champagne);
    letter-spacing: 0.08em;
    margin-top: 12px;
    opacity: 0.75;
}

.home-hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

/* -------------------- Shared Buttons -------------------- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-light);
    color: var(--deep-black);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    padding: 16px 40px;
    border: 1px solid var(--gold-light);
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.btn-gold:hover {
    background: var(--champagne);
    border-color: var(--champagne);
    box-shadow: 0 8px 30px var(--gold-glow-strong);
    transform: translateY(-2px);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    padding: 16px 40px;
    border: 1px solid var(--gold-light);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    text-decoration: none;
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-light);
    transition: left var(--transition-smooth);
    z-index: -1;
}

.btn-outline-gold:hover {
    color: var(--deep-black);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-outline-gold:hover::before {
    left: 0;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.82rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* =====================================================================
   HOMEPAGE - STATS
   ===================================================================== */
.stats-section {
    padding: 80px 0;
    background: var(--dark-surface);
    position: relative;
}

.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.3;
}

.stats-section::before { top: 0; }
.stats-section::after { bottom: 0; }

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 20px 48px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-light);
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-shadow: 0 0 30px var(--gold-glow);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
    opacity: 0.3;
}

/* =====================================================================
   HOMEPAGE - ABOUT PREVIEW
   ===================================================================== */
.about-preview-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-preview-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-preview-content .btn-outline-gold {
    margin-top: 20px;
}

.about-preview-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: var(--dark-card);
    border-left: 2px solid var(--gold-light);
    transition: all var(--transition-smooth);
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateX(4px);
}

.feature-number {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.6rem;
    color: var(--gold-light);
    opacity: 0.4;
    line-height: 1;
    min-width: 36px;
}

.feature-item h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--pure-white);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.feature-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* =====================================================================
   HOMEPAGE - FEATURED PROJECTS
   ===================================================================== */
.featured-projects-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.project-card {
    background: var(--dark-card);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all var(--transition-smooth);
}

.project-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--gold-glow);
    transform: translateY(-6px);
}

.project-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

.project-badge {
    background: var(--gold-light);
    color: var(--deep-black);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 4px 16px;
}

.project-card-info {
    padding: 24px;
}

.project-card-info h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--pure-white);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.project-card-type {
    font-size: 0.8rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.project-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-card-specs span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2px;
}

.new-badge {
    display: inline-block;
    background: var(--gold-light);
    color: var(--deep-black);
    font-size: 0.6rem;
    font-weight: 500;
    padding: 2px 8px;
    letter-spacing: 0.1em;
    vertical-align: middle;
    margin-left: 8px;
}

.projects-cta {
    text-align: center;
    margin-top: 48px;
}

/* =====================================================================
   HOMEPAGE - WHY CHOOSE US
   ===================================================================== */
.why-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--dark-card);
    padding: 40px 28px;
    text-align: center;
    border-top: 2px solid transparent;
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.why-card:hover {
    border-top-color: var(--gold-light);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--gold-glow);
}

.why-card-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.why-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
}

/* =====================================================================
   HOMEPAGE - LOCATION
   ===================================================================== */
.location-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

.location-map-wrapper .map-frame {
    height: 500px;
}

.location-nearby h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--pure-white);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.nearby-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nearby-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.nearby-item svg {
    flex-shrink: 0;
}

.nearby-distance {
    margin-left: auto;
    color: var(--gold-light);
    font-weight: 400;
    font-size: 0.85rem;
}

.location-address {
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* =====================================================================
   HOMEPAGE - PROMOTION BANNER
   ===================================================================== */
.promo-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--deep-black);
}

.promo-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(184, 134, 11, 0.12) 0%, transparent 50%),
        linear-gradient(315deg, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.promo-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.promo-content h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    letter-spacing: 0.06em;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.promo-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 36px;
}

.promo-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================================
   ABOUT PAGE - COMPANY STORY
   ===================================================================== */
.about-story-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-story-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-story-image {
    position: relative;
}

.story-image-frame {
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.story-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.story-image-frame:hover img {
    transform: scale(1.05);
}

.story-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--dark-card);
    border: 2px solid var(--gold-light);
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    color: var(--gold-light);
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    line-height: 1.4;
}

/* =====================================================================
   ABOUT PAGE - VISION & MISSION
   ===================================================================== */
.vision-mission-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.vm-card {
    background: var(--dark-card);
    padding: 48px 40px;
    border-top: 2px solid var(--gold-light);
    text-align: center;
    transition: all var(--transition-smooth);
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--gold-glow);
}

.vm-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.vm-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.vm-card .gold-accent-line {
    margin: 0 auto 24px;
}

.vm-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
}

/* =====================================================================
   ABOUT PAGE - CORE VALUES
   ===================================================================== */
.values-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.value-card {
    background: var(--dark-card);
    padding: 40px 36px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.value-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--gold-glow);
}

.value-number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--gold-light);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 16px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--pure-white);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

/* =====================================================================
   ABOUT PAGE - TIMELINE
   ===================================================================== */
.timeline-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
    opacity: 0.4;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
}

.timeline-left {
    left: 0;
    text-align: right;
    padding-right: 60px;
}

.timeline-right {
    left: 50%;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold-glow-strong);
}

.timeline-left .timeline-dot {
    right: -7px;
}

.timeline-right .timeline-dot {
    left: -7px;
}

.timeline-card {
    background: var(--dark-card);
    padding: 28px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.timeline-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--gold-glow);
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 8px;
}

.timeline-card h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* =====================================================================
   ABOUT PAGE - MATERIALS
   ===================================================================== */
.materials-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.materials-intro {
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: -30px auto 48px;
    line-height: 1.8;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.material-card {
    background: var(--dark-card);
    padding: 36px 24px;
    text-align: center;
    border-top: 2px solid transparent;
    border-radius: 2px;
    transition: all var(--transition-smooth);
}

.material-card:hover {
    border-top-color: var(--gold-light);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px var(--gold-glow);
}

.material-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.material-card h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.material-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* =====================================================================
   ABOUT PAGE - CTA
   ===================================================================== */
.about-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-surface);
}

/* =====================================================================
   PRODUCTS PAGE - FILTER TABS
   ===================================================================== */
.products-filter-section {
    padding: 48px 0 0;
    background: var(--deep-black);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-tab {
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 12px 32px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border-radius: 2px;
}

.filter-tab:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
}

.filter-tab.active {
    background: var(--gold-light);
    color: var(--deep-black);
    border-color: var(--gold-light);
    font-weight: 500;
}

/* =====================================================================
   PRODUCTS PAGE - PRODUCT CARDS
   ===================================================================== */
.products-grid-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--dark-card);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: all var(--transition-smooth);
}

.product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--gold-glow);
    transform: translateY(-6px);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-light);
    color: var(--deep-black);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    z-index: 2;
}

.product-card-badge.new {
    background: var(--brushed-gold);
}

.product-card-body {
    padding: 28px;
}

.product-card-type {
    font-size: 0.75rem;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-card-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--pure-white);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.product-card-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* =====================================================================
   PRODUCTS PAGE - COMPARISON TABLE
   ===================================================================== */
.comparison-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
    background: var(--dark-card);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 400;
    color: var(--pure-white);
    background: rgba(26, 26, 26, 0.5);
}

.comparison-table td {
    color: rgba(255, 255, 255, 0.6);
}

.comparison-table td.highlight {
    color: var(--gold-light);
    font-weight: 500;
}

.comparison-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.03);
}

/* =====================================================================
   PRODUCTS PAGE - CTA
   ===================================================================== */
.products-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--deep-black);
}

/* =====================================================================
   PRODUCT DETAIL - GALLERY
   ===================================================================== */
.detail-hero {
    min-height: 60vh;
}

.detail-gallery-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.detail-gallery {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 16px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: all var(--transition-smooth);
}

.gallery-thumb.active {
    border-color: var(--gold-light);
    opacity: 1;
}

.gallery-thumb:hover {
    opacity: 0.8;
    border-color: rgba(212, 175, 55, 0.4);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================================
   PRODUCT DETAIL - SPECS
   ===================================================================== */
.detail-specs-section {
    padding: 60px 0;
    background: var(--dark-surface);
}

.detail-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.detail-spec-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--dark-card);
    border-top: 2px solid var(--gold-light);
    transition: all var(--transition-smooth);
}

.detail-spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--gold-glow);
}

.detail-spec-card svg {
    margin-bottom: 12px;
}

.detail-spec-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--gold-light);
    line-height: 1.1;
}

.detail-spec-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
}

/* =====================================================================
   PRODUCT DETAIL - DESCRIPTION
   ===================================================================== */
.detail-description-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.detail-description-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.detail-main-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 20px;
}

.detail-main-content h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--pure-white);
    letter-spacing: 0.04em;
    margin: 36px 0 16px;
}

.detail-features-list {
    padding-left: 0;
}

.detail-features-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 8px;
}

.detail-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0.6;
}

.detail-materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.detail-material-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--dark-card);
    border-left: 2px solid var(--gold-light);
}

.material-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.material-value {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 400;
}

.floor-plan-placeholder {
    text-align: center;
    padding: 60px 40px;
    background: var(--dark-card);
    border: 2px dashed rgba(212, 175, 55, 0.2);
    margin-top: 16px;
}

.floor-plan-placeholder p {
    font-size: 1rem;
    color: var(--pure-white);
    margin-top: 16px;
    margin-bottom: 4px;
}

.floor-plan-placeholder span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================================
   PRODUCT DETAIL - SIDEBAR
   ===================================================================== */
.detail-inquiry-card {
    background: var(--dark-card);
    padding: 36px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 24px;
}

.detail-inquiry-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.detail-inquiry-card .gold-accent-line {
    margin-bottom: 16px;
}

.detail-inquiry-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 24px;
}

.detail-inquiry-card .btn-gold,
.detail-inquiry-card .btn-outline-gold {
    margin-bottom: 12px;
}

.detail-location-card {
    background: var(--dark-card);
    padding: 36px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.detail-location-card h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--pure-white);
    margin-bottom: 12px;
}

.detail-location-card .gold-accent-line {
    margin-bottom: 16px;
}

.detail-location-card > p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.location-note {
    font-size: 0.8rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.nearby-mini-list {
    display: flex;
    flex-direction: column;
}

.nearby-mini {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.nearby-mini span:last-child {
    color: var(--gold-light);
}

/* =====================================================================
   PRODUCT DETAIL - SIMILAR MODELS
   ===================================================================== */
.similar-models-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* =====================================================================
   PRODUCT DETAIL - CTA
   ===================================================================== */
.detail-cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--deep-black);
}

/* =====================================================================
   ARTICLES PAGE - TAGS
   ===================================================================== */
.articles-tags-section {
    padding: 48px 0 0;
    background: var(--deep-black);
}

.article-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.article-tag {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 24px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border-radius: 2px;
}

.article-tag:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
}

.article-tag.active {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-light);
    color: var(--gold-light);
}

/* =====================================================================
   ARTICLES PAGE - ARTICLE CARDS
   ===================================================================== */
.articles-grid-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: var(--dark-card);
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.06);
    transition: all var(--transition-smooth);
}

.article-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 0 20px var(--gold-glow);
    transform: translateY(-6px);
}

.article-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.article-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(26, 26, 26, 0.85);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.article-card-body {
    padding: 28px;
}

.article-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 14px;
}

.article-date,
.article-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.article-card-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--pure-white);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color var(--transition-smooth);
}

.article-card:hover .article-card-title {
    color: var(--gold-light);
}

.article-card-excerpt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: all var(--transition-smooth);
}

.article-read-more:hover {
    color: var(--champagne);
    gap: 14px;
}

/* =====================================================================
   RESPONSIVE - NEW PAGES (Tablet)
   ===================================================================== */
@media (max-width: 1024px) {
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .projects-grid,
    .products-grid,
    .articles-grid,
    .similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .location-map-wrapper .map-frame {
        height: 400px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .materials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .detail-description-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .detail-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-line { display: none; }
    .timeline-item { width: 100%; left: 0 !important; padding: 0 0 40px; text-align: left; }
    .timeline-left { padding-right: 0; }
    .timeline-right { padding-left: 0; }
    .timeline-dot { display: none; }
}

/* =====================================================================
   RESPONSIVE - NEW PAGES (Mobile)
   ===================================================================== */
@media (max-width: 768px) {
    .home-hero-title {
        letter-spacing: 0.12em;
    }

    .home-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        padding: 16px 24px;
    }

    .stat-divider {
        display: none;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid,
    .products-grid,
    .articles-grid,
    .similar-grid {
        grid-template-columns: 1fr;
    }

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

    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .detail-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-description-grid {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        grid-template-columns: 1fr;
    }

    .detail-materials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .promo-ctas {
        flex-direction: column;
        align-items: center;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-tab {
        padding: 10px 20px;
        font-size: 0.82rem;
    }

    .story-exp-badge {
        bottom: -12px;
        right: -12px;
        padding: 16px;
    }

    .exp-number {
        font-size: 2rem;
    }
}

/* ==========================================================================
   ENHANCED PRODUCTS PAGE — MEGA CARDS & NEW SECTIONS
   ========================================================================== */

/* Hero Label */
.hero-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
}

/* Filter Count Badge */
.filter-count {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

/* Container Wide */
.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== MEGA PRODUCT CARDS ===== */
.products-mega-section {
    padding: 60px 0 80px;
    background: var(--deep-black);
}

.mega-card {
    display: flex;
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 48px;
    transition: all var(--transition-smooth);
    position: relative;
}

.mega-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.mega-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--gold-glow);
    transform: translateY(-4px);
}

.mega-card:hover::before {
    opacity: 1;
}

.mega-card-image {
    width: 50%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.mega-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.mega-card:hover .mega-card-image img {
    transform: scale(1.05);
}

.mega-card-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.mega-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: 2px;
    text-transform: uppercase;
}

.mega-badge.bestseller {
    background: var(--brushed-gold);
    color: var(--deep-black);
}

.mega-badge.vt {
    background: rgba(26, 26, 26, 0.85);
    color: var(--gold-light);
    border: 1px solid var(--gold-light);
    backdrop-filter: blur(10px);
}

.mega-badge.new-badge-mega,
.mega-badge-inline.new-badge-mega {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    font-weight: 500;
}

.mega-badge-inline {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: 2px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 8px;
}

.mega-card-body {
    width: 50%;
    padding: 48px 48px 40px;
    display: flex;
    flex-direction: column;
}

.mega-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mega-type-badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    border-radius: 2px;
}

.mega-type-badge.townhome { border-color: #27ae60; color: #27ae60; }
.mega-type-badge.duplex { border-color: #3498db; color: #3498db; }
.mega-type-badge.modern { border-color: #e67e22; color: #e67e22; }

.mega-area {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: auto;
}

.mega-card-name {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 2.5rem;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.mega-card-tagline {
    font-family: var(--font-heading);
    font-weight: 300;
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.mega-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.mega-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

.mega-spec svg {
    flex-shrink: 0;
}

.mega-card-desc {
    font-size: 0.92rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.mega-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.mega-tag {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.75rem;
    background: rgba(212, 175, 55, 0.08);
    color: var(--champagne);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    letter-spacing: 0.04em;
}

.mega-card-price {
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold-light);
    border-radius: 0 4px 4px 0;
}

.mega-price-main {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}

.mega-price-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.mega-price-value {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--gold-light);
    letter-spacing: 0.04em;
}

.mega-price-monthly {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.mega-card-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.mega-card-actions .btn-gold,
.mega-card-actions .btn-outline-gold {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
}

.mega-brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--gold-light);
    opacity: 0.7;
    transition: opacity var(--transition-smooth);
}

.mega-brochure-link:hover {
    opacity: 1;
}

/* Reverse layout for alternating */
.mega-card-reverse {
    flex-direction: row-reverse;
}

/* ===== FINANCING SECTION ===== */
.financing-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
    position: relative;
}

.financing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.3;
}

.financing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.financing-card {
    background: var(--dark-card);
    border-top: 2px solid var(--gold-light);
    border-radius: 2px;
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.financing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--gold-glow);
}

.financing-icon {
    margin-bottom: 20px;
}

.financing-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.financing-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ===== STICKY SPECS BAR ===== */
.sticky-specs-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 0;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.sticky-specs-bar.visible {
    transform: translateY(0);
}

.sticky-specs-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sticky-model-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.sticky-specs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.sticky-sep {
    color: rgba(212, 175, 55, 0.4);
}

.sticky-price {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--champagne);
    white-space: nowrap;
}

.sticky-price strong {
    color: var(--gold-light);
    font-weight: 500;
}

/* ===== PRICE BANNER ===== */
.detail-price-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    padding: 24px 32px;
    margin-bottom: 40px;
}

.price-banner-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.price-banner-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2rem;
    color: var(--gold-light);
    letter-spacing: 0.04em;
}

.price-banner-right {
    text-align: right;
}

.price-banner-monthly {
    display: block;
    font-size: 1rem;
    color: var(--champagne);
    margin-bottom: 2px;
}

.price-banner-note {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== GALLERY ZOOM ===== */
.gallery-main {
    position: relative;
}

.gallery-zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(26, 26, 26, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-zoom-btn:hover {
    background: var(--brushed-gold);
    border-color: var(--gold-light);
}

.gallery-new-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 18px;
    letter-spacing: 0.1em;
    border-radius: 2px;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-smooth);
}

.lightbox-close:hover {
    color: #fff;
}

/* ===== ROOM BY ROOM ===== */
.room-by-room-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.room-card {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 4px;
    padding: 32px 24px;
    transition: all var(--transition-smooth);
}

.room-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.room-card-icon {
    margin-bottom: 16px;
}

.room-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.room-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ===== MATERIALS SHOWCASE ===== */
.materials-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.materials-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.material-showcase-item {
    background: var(--dark-card);
    border-top: 2px solid var(--gold-light);
    border-radius: 2px;
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.material-showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.material-brand {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.material-type {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.material-showcase-item p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ===== FLOOR PLAN ===== */
.floorplan-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

/* ===== LOCATION ===== */
.location-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-placeholder {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    padding: 60px 40px;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
}

.map-placeholder span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.nearby-places h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.nearby-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nearby-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nearby-name {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

.nearby-dist {
    font-size: 0.85rem;
    color: var(--gold-light);
    font-weight: 400;
}

/* ===== LIFESTYLE ===== */
.lifestyle-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lifestyle-card {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 4px;
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition-smooth);
}

.lifestyle-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 20px var(--gold-glow);
}

.lifestyle-icon {
    margin-bottom: 20px;
}

.lifestyle-card h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.lifestyle-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ===== VIDEO ===== */
.video-section {
    padding: var(--section-pad) 0;
    background: var(--deep-black);
}

.video-placeholder {
    background: var(--dark-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    padding: 80px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-placeholder p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.video-placeholder span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 8px;
}

/* ===== FAQ ===== */
.faq-section {
    padding: var(--section-pad) 0;
    background: var(--dark-surface);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    color: var(--pure-white);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition-smooth);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

details[open] .faq-question::after {
    content: '-';
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-answer {
    padding: 0 0 24px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

/* ===== SIMILAR MODELS PRICE ===== */
.project-card-price {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gold-light);
    margin-top: 8px;
}

/* ===== COMPARISON TABLE PRICE ROW ===== */
.comparison-table .price-row td {
    color: var(--gold-light);
    font-weight: 500;
}

.comparison-table thead a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color var(--transition-smooth);
}

.comparison-table thead a:hover {
    color: var(--champagne);
}

/* ==========================================================================
   RESPONSIVE — ENHANCED SECTIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .mega-card,
    .mega-card-reverse {
        flex-direction: column;
    }

    .mega-card-image {
        width: 100%;
        min-height: 300px;
    }

    .mega-card-body {
        width: 100%;
        padding: 32px 24px;
    }

    .materials-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 768px) {
    .mega-card-name {
        font-size: 1.8rem;
    }

    .mega-card-specs {
        gap: 10px;
    }

    .mega-card-actions {
        flex-direction: column;
    }

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

    .materials-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .detail-price-banner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .price-banner-right {
        text-align: center;
    }

    .sticky-specs-list {
        display: none;
    }

    .sticky-specs-inner {
        gap: 12px;
    }

    .mega-card-image {
        min-height: 250px;
    }
}

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

    .mega-card-body {
        padding: 24px 16px;
    }

    .mega-card-tags {
        gap: 6px;
    }

    .mega-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .price-banner-value {
        font-size: 1.5rem;
    }
}
