/* ============================================
   VANTAGE PROPERTY MEDIA - PORTFOLIO STYLES
   Dark Luxury Theme with Gold Accents
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --color-bg-dark: #0a0a0a;
    --color-bg-card: #111111;
    --color-bg-elevated: #1a1a1a;
    --color-bg-hover: #222222;
    
    --color-gold: #c9a962;
    --color-gold-light: #dfc07f;
    --color-gold-dark: #a88a4a;
    
    --color-text-primary: #ffffff;
    --color-text-secondary: #999999;
    --color-text-muted: #666666;
    
    --color-border: #2a2a2a;
    --color-border-light: #333333;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

.section-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-description {
    margin: 0 auto;
}

.gold-text {
    color: var(--color-gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

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

.btn-secondary:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-medium);
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9), transparent);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-gold);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

.nav-cta {
    padding: 12px 24px;
    background: var(--color-gold);
    color: var(--color-bg-dark) !important;
    border-radius: 2px;
}

.nav-cta:hover {
    background: var(--color-gold-light);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--color-bg-dark) 0%, #050505 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
}

.hero-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 60px 0;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    padding: var(--section-padding) 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.tour-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

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

/* Embedded Tour iframe */
.tour-embed {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--color-bg-elevated);
}

.tour-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tour-badge-inline {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.tour-info {
    padding: 24px;
}

.tour-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tour-info-header .tour-badge-inline {
    margin-bottom: 0;
}

.tour-link-out {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    flex-shrink: 0;
}

.tour-link-out:hover {
    color: var(--color-gold);
}

.tour-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.tour-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.portfolio-cta {
    text-align: center;
    padding: 48px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
}

.portfolio-cta p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}

/* Coming Soon Card */
.tour-card.coming-soon .tour-embed {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-bg-card) 100%);
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.coming-soon-icon {
    width: 64px;
    height: 64px;
    color: var(--color-gold);
    opacity: 0.6;
}

.coming-soon-icon svg {
    width: 100%;
    height: 100%;
}

.coming-soon-text {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    opacity: 0.8;
}

.tour-card.coming-soon:hover {
    transform: none;
    border-color: var(--color-border);
}

.tour-card.coming-soon .tour-info {
    opacity: 0.7;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-card) 50%, var(--color-bg-dark) 100%);
}

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

.service-card {
    position: relative;
    padding: 48px 32px;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: all var(--transition-medium);
}

.service-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-4px);
}

.service-card.featured {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, rgba(201, 169, 98, 0.05) 0%, var(--color-bg-dark) 100%);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--color-gold);
    color: var(--color-bg-dark);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--color-gold);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.375rem;
    margin-bottom: 16px;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.service-features li::before {
    content: '◈';
    color: var(--color-gold);
    font-size: 0.625rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--section-padding) 0;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-gold);
    opacity: 0.5;
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.process-line {
    width: 60px;
    height: 1px;
    background: var(--color-border-light);
    margin-top: 40px;
    flex-shrink: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--color-bg-card);
}

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

.about-content p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-credentials {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
}

.credential svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial {
    padding: 80px 0;
    background: var(--color-bg-dark);
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 24px;
    color: var(--color-text-primary);
}

.testimonial-quote::before {
    content: '"';
    display: block;
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-attribution {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info p {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    font-size: 1rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-primary);
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 2px;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-group select {
    cursor: pointer;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 40px;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .portfolio-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-line {
        width: 1px;
        height: 40px;
        margin: 0 auto;
    }
    
    .process-step {
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

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

/* ============================================
   TOUR MODAL / LIGHTBOX
   ============================================ */
.tour-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.tour-modal.active {
    opacity: 1;
    visibility: visible;
}

.tour-modal-content {
    position: relative;
    width: 95vw;
    height: 90vh;
    max-width: 1600px;
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform var(--transition-medium);
}

.tour-modal.active .tour-modal-content {
    transform: scale(1);
}

.tour-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tour-modal-close:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.tour-modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}

.tour-modal-close:hover svg {
    color: var(--color-bg-dark);
}

.tour-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Tour play button styling for button element */
button.tour-play {
    background: none;
    border: none;
    cursor: pointer;
}

/* ============================================
   PROPERTY SHOWCASE
   ============================================ */
.showcase-block {
    margin-bottom: 72px;
}

.showcase-heading {
    margin-bottom: 20px;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2vw, 1.875rem);
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 6px;
    line-height: 1.2;
}

.showcase-divider {
    color: var(--color-gold);
    margin: 0 12px;
    font-weight: 400;
}

.showcase-meta {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}

.showcase-grid {
    position: relative;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4px;
    height: 520px;
}

.showcase-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.showcase-right .showcase-panel {
    flex: 1;
}

.showcase-panel {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-bg-elevated);
}

.showcase-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-panel:hover img {
    transform: scale(1.04);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition-medium);
}

.showcase-panel:hover .showcase-overlay {
    background: rgba(0, 0, 0, 0.38);
}

.showcase-panel--main .showcase-overlay svg {
    color: #fff;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.showcase-panel--main:hover .showcase-overlay svg {
    opacity: 1;
}

.showcase-badge-360 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    padding: 5px 12px;
    backdrop-filter: blur(4px);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.showcase-panel--tour:hover .showcase-badge-360 {
    background: rgba(201, 169, 98, 0.2);
    border-color: var(--color-gold);
}

.showcase-play-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.showcase-panel--video:hover .showcase-play-btn {
    background: rgba(201, 169, 98, 0.25);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.showcase-count {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.65);
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 2px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.showcase-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.showcase-address {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.showcase-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.showcase-tag {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 4px 10px;
    border-radius: 2px;
}

.showcase-action-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 6px 12px;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.showcase-action-btn:hover {
    background: rgba(201, 169, 98, 0.12);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .showcase-panel--main {
        height: 260px;
    }

    .showcase-right .showcase-panel {
        height: 180px;
    }

    .showcase-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ============================================
   SHOWCASE LIGHTBOX
   ============================================ */
.sc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.sc-lb-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-lb-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
}

.sc-lb-content video {
    max-width: 100%;
    max-height: 90vh;
    outline: none;
}

.sc-lb-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.sc-lb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.sc-lb-close:hover {
    background: rgba(255, 255, 255, 0.18);
}

.sc-lb-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    pointer-events: none;
    white-space: nowrap;
}

.sc-lb-prev,
.sc-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.sc-lb-prev:hover,
.sc-lb-next:hover {
    background: rgba(255, 255, 255, 0.16);
}

.sc-lb-prev { left: 20px; }
.sc-lb-next { right: 20px; }

.sc-tour-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.sc-tour-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.sc-tour-open-link {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: border-color var(--transition-fast), color var(--transition-fast);
}

.sc-tour-open-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ============================================
   PORTFOLIO CAROUSEL
   ============================================ */
.portfolio-carousel {
    position: relative;
    overflow: hidden;
}

.portfolio-pages {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease;
    will-change: transform;
}

.portfolio-page {
    flex: 0 0 100%;
}

.portfolio-page .portfolio-grid {
    margin-bottom: 32px;
}

.portfolio-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 8px 0 48px;
}

.portfolio-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.portfolio-dot.active {
    background: var(--color-gold);
    transform: scale(1.35);
}

.portfolio-dot:hover:not(.active) {
    background: var(--color-gold-dark);
}

