/* Pattaya VR Tours - Professional Design */

:root {
    --primary: #B91C1C;
    --primary-dark: #991B1B;
    --primary-light: #DC2626;
    --secondary: #C2410C;
    --accent: #EA580C;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #B91C1C 0%, #C2410C 100%);
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.25s ease;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.875rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main header logo - no styling, natural display */
.main-header .logo {
    text-decoration: none;
}

.main-header .logo-img {
    height: 52px;
    width: auto;
    max-height: 52px;
    display: block;
}

/* Agent site: larger logo (default 72px; overridden per-agent via site_logo_height) */
.agent-site .main-header .logo-img {
    height: 72px;
    max-height: 72px;
    width: auto;
    object-fit: contain;
}

/* Agent site: nav menu styling for header links */
.agent-site .agent-contact-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.agent-site .agent-contact-nav .contact-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.agent-site .agent-contact-nav .contact-link:hover {
    background: rgba(0, 0, 0, 0.08);
}
.agent-site .agent-contact-nav .btn {
    margin-left: 0.5rem;
}
@media (max-width: 768px) {
    .agent-site .agent-contact-nav {
        gap: 0.4rem;
    }
    .agent-site .agent-contact-nav .contact-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
    .agent-site .agent-contact-nav .btn {
        margin-left: 0;
    }
}

.logo {
    text-decoration: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    display: none;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-gradient);
    transition: var(--transition);
}

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

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

.nav-cta {
    background: var(--bg-gradient);
    color: white !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .nav-cta {
        margin-top: 0.5rem;
        display: inline-block;
    }
}

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

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Promo Banner */
section.promo-banner {
    width: 100%;
    background: linear-gradient(90deg, #B91C1C 0%, #C2410C 100%) !important;
    padding: 0.875rem 1rem;
    text-align: center;
}

section.promo-banner .container {
    max-width: none;
    padding: 0 1.5rem;
}

section.promo-banner a.promo-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
    justify-content: center;
    text-decoration: none !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity 0.2s;
}

section.promo-banner a.promo-banner-link:hover {
    opacity: 0.95;
}

section.promo-banner .promo-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
}

section.promo-banner .promo-text {
    font-size: 1rem;
}

section.promo-banner .promo-cta {
    font-size: 0.9rem;
    opacity: 0.95;
}

@media (max-width: 480px) {
    section.promo-banner a.promo-banner-link {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--bg-gradient);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: right;
    color: white;
    padding: 4rem 2rem;
    max-width: 600px;
    margin-right: 5%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text-content {
    opacity: 0;
    position: absolute;
    width: 100%;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-text-content.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

/* Hero Slide Indicators */
.hero-slide-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: white;
    border-color: white;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin-right: 0;
        max-width: 100%;
        padding: 3rem 1.5rem;
    }
    
    .hero-section {
        justify-content: center;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.7) 100%);
    }
    
    .hero-slide-indicators {
        bottom: 1rem;
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-shadow: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Get Quote button - red/orange gradient to match nav CTA */
.get-quote-btn,
.pricing-action .btn-primary {
    background: var(--bg-gradient) !important;
    color: white !important;
    border: none;
}

.get-quote-btn:hover,
.pricing-action .btn-primary:hover {
    opacity: 0.95;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

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

.btn-small {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, #f1f5f9 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(185, 28, 28, 0.06);
    border-color: rgba(185, 28, 28, 0.15);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.1) 0%, rgba(194, 65, 12, 0.08) 100%);
    border-radius: 14px;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.12);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Tours Section */
.featured-tours-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.tour-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

a.tour-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    width: 100%;
    height: 280px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--bg-secondary);
}

.tour-placeholder {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.08) 0%, rgba(194, 65, 12, 0.08) 100%);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tour-placeholder.show {
    display: flex;
}

.tour-image img,
.tour-thumb-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Tour thumbnail carousel (multiple images) */
.tour-thumbnails-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tour-thumbnails-carousel .tour-thumb-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.tour-thumbnails-carousel .tour-thumb-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.tour-card:hover .tour-image > img {
    transform: scale(1.1);
}

.tour-card:hover .tour-image .tour-thumbnails-carousel .tour-thumb-slide.active {
    transform: scale(1.1);
}

/* tour-overlay removed – buttons now in tour-actions at bottom */

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-info {
    padding: 1.5rem 2rem 1.25rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.tour-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary);
    margin-top: auto;
    flex-shrink: 0;
}
.tour-actions .btn {
    flex: 1;
    min-width: 120px;
    background: var(--bg-gradient);
    color: white;
    border: none;
}
.tour-actions .btn:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}
.tour-actions .btn:first-child {
    flex: 1.2;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-location .location-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--text-secondary);
}

.tour-type {
    display: inline-block;
    background: rgba(185, 28, 28, 0.08);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-listing-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 0.5rem;
}

.tour-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

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

.tour-location {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-listing-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

/* Tour details modal (portfolio/index/agent site) */
.tour-details-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.tour-details-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.tour-details-modal-inner {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}
.tour-details-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-secondary);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-secondary);
    transition: background 0.2s, color 0.2s;
}
.tour-details-modal-close:hover {
    background: var(--border);
    color: var(--text-primary);
}
.tour-details-modal-body {
    padding: 2rem 2rem 2rem 1.5rem;
}
.tour-details-modal-body h3 {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    color: var(--text-primary);
}
.tour-details-modal-body .detail-row {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.tour-details-modal-body .detail-row strong {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}
.tour-details-modal-body .detail-description,
.tour-details-modal-body .detail-property {
    white-space: pre-wrap;
    line-height: 1.6;
    margin: 1rem 0;
}
.tour-details-modal-body .detail-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tour-listing-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Floorplan Section */
.floorplan-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.floorplan-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.floorplan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.floorplan-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.floorplan-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.floorplan-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.floorplan-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.floorplan-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(185, 28, 28, 0.08);
    border-radius: var(--radius);
    color: var(--primary);
}

.floorplan-feature-icon svg {
    width: 24px;
    height: 24px;
}

.floorplan-feature .feature-text h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.floorplan-feature .feature-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 968px) {
    .floorplan-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .floorplan-image {
        order: 2;
    }
    
    .floorplan-content {
        order: 1;
    }
}

/* SEO Locations Section */
.seo-locations-section {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.seo-locations-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-primary);
}

.seo-lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.seo-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.seo-location-block {
    background: white;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.seo-location-block h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.seo-location-block p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Page Header */
.page-header {
    background: var(--bg-gradient);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g2" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23g2)"/></svg>');
}

.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Legal Pages (Privacy, Cookies) */
.legal-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.legal-table th {
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--text-primary);
}

.legal-table td {
    color: var(--text-secondary);
}

/* Portfolio Section */
.portfolio-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.portfolio-filters {
    margin-bottom: 3rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.search-input,
.filter-select,
.filter-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.filter-group.filter-price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
}

.filter-group.filter-price-range .filter-input {
    flex: 1;
    min-width: 0;
}

.filter-price-sep {
    color: var(--text-secondary);
    font-weight: 500;
    flex-shrink: 0;
}

.search-input:focus,
.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.no-results p {
    font-size: 1.125rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.promo-code-box {
    margin-bottom: 2rem;
}

.promo-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.promo-form label {
    font-weight: 500;
    color: var(--text-primary);
}

.promo-input-row {
    display: flex;
    gap: 0.5rem;
}

.promo-form input {
    width: 140px;
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
}

.promo-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.promo-message {
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.promo-message.promo-success {
    color: var(--primary);
    font-weight: 500;
}

.promo-message.promo-error {
    color: var(--primary);
}

.pricing-price.promo-applied .amount-original {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9em;
    margin-right: 0.35rem;
}

.pricing-table-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: var(--bg-gradient);
    color: white;
}

.pricing-table th {
    padding: 1.5rem 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.pricing-table tbody tr:hover {
    background: var(--bg-secondary);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table td {
    padding: 1.5rem 1.25rem;
    vertical-align: top;
}

.pricing-type {
    min-width: 180px;
}

.pricing-type strong {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-sqm {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-type-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.pricing-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
}

.pricing-features-cell {
    min-width: 250px;
}

.pricing-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-features-list li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}

.pricing-features-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.pricing-price-cell {
    text-align: center;
    min-width: 140px;
}

.pricing-price-range .price-range {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1rem;
    color: var(--text-secondary);
    vertical-align: baseline;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-action {
    text-align: center;
    min-width: 120px;
}

.text-muted {
    color: var(--text-secondary);
    font-style: italic;
}

@media (max-width: 968px) {
    .pricing-table-wrapper {
        overflow-x: auto;
    }
    
    .pricing-table {
        min-width: 800px;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 1rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .pricing-type,
    .pricing-desc,
    .pricing-features-cell {
        min-width: 150px;
    }
}

/* Pricing Add-ons Section */
.pricing-addons-section {
    padding: 4rem 0;
    background: var(--bg-gradient);
    text-align: center;
}

.addons-section-title {
    margin: 0 0 0.5rem;
    font-size: 2rem;
    font-weight: 600;
    color: white;
    font-family: var(--font-serif);
}

.addons-section-intro {
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-addons-section .addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-addons-section .addon-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
}

.pricing-addons-section .addon-name {
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

.pricing-addons-section .addon-range {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.pricing-note {
    margin-top: 3rem;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.note-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-serif);
}

.note-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.contact-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Renew / Extension page */
.renew-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.renew-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.renew-intro {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.renew-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.renew-option {
    display: block;
    cursor: pointer;
}

.renew-option input {
    position: absolute;
    opacity: 0;
}

.renew-option-inner {
    display: block;
    padding: 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}
.renew-option input:checked + .renew-option-inner,
.renew-option:hover .renew-option-inner {
    border-color: var(--primary);
    background: rgba(185, 28, 28, 0.05);
}

.renew-option-inner strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.renew-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.renew-option-inner small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.renew-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .promo-code-field {
    max-width: 200px;
}

.contact-form .promo-applied-msg {
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 0.35rem;
}

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

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group select {
    background: white;
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.alert-success {
    background: #f0fdf4;
    color: #166534;
    border-color: #86efac;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fca5a5;
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

/* Agent mini-site: main-site-style footer uses .footer-content grid; bottom row matches main site */
.agent-site .agent-footer-copyright-line {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.65;
}

.agent-site .agent-footer-copyright-only {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* Legacy: inline legal row */
.agent-site .agent-footer-legal-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    line-height: 1.65;
}

.agent-site .agent-footer-legal-row a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.agent-site .agent-footer-legal-row a:hover {
    color: white;
}

.agent-site .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-site .footer-bottom .agent-footer-copyright-only {
    padding-top: 0;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.btn-footer {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-footer:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .agent-site .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        border-top: 1px solid var(--border);
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .renew-options {
        grid-template-columns: 1fr;
    }

    .tours-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-content {
        padding: 3rem 1.5rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* VR tour viewer: expired overlay + public extension request form */
.tour-expired-overlay .tour-renew-panel {
    max-width: 26rem;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.tour-renew-panel h2 {
    text-align: center;
}

.tour-renew-lead {
    text-align: center;
}

.tour-renew-form {
    margin-top: 0.25rem;
}

.tour-renew-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tour-renew-option {
    display: block;
    cursor: pointer;
}

.tour-renew-option input {
    position: absolute;
    opacity: 0;
    clip: rect(0, 0, 0, 0);
}

.tour-renew-option span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.tour-renew-option input:focus-visible + span {
    outline: 2px solid var(--tour-primary, var(--primary));
    outline-offset: 2px;
}

.tour-renew-option input:checked + span {
    border-color: var(--tour-primary, var(--primary));
    background: rgba(255, 255, 255, 0.12);
}

.tour-renew-price {
    font-weight: 600;
    opacity: 0.95;
}

.tour-renew-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.tour-renew-field span:first-child {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.tour-renew-field input {
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1rem;
}

.tour-renew-field input:focus {
    outline: none;
    border-color: var(--tour-primary, var(--primary));
}

.tour-renew-optional {
    font-weight: 400;
    opacity: 0.75;
}

.tour-renew-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--tour-primary, var(--primary));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.tour-renew-submit:hover:not(:disabled) {
    background: var(--tour-primary-dark, var(--primary-dark));
}

.tour-renew-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.tour-renew-feedback {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.tour-renew-fallback {
    text-align: center;
    margin-top: 0.5rem;
}

/* Agent mini-site: language switcher in header (shared with all agent pages) */
.agent-site .nav-lang-dropdown {
    position: relative;
}
.agent-site .lang-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-primary);
    font-family: inherit;
}
.agent-site .lang-dropdown-trigger:hover {
    border-color: var(--agent-button, var(--primary));
    color: var(--agent-button, var(--primary));
}
.agent-site .lang-flag {
    font-size: 1.05rem;
    line-height: 1;
}
.agent-site .lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.35rem;
    min-width: 150px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    list-style: none;
    padding: 0.35rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 100;
}
.agent-site .nav-lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.agent-site .lang-dropdown-menu button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-align: left;
    border-radius: 6px;
    font-family: inherit;
    color: var(--text-primary);
}
.agent-site .lang-dropdown-menu button:hover {
    background: var(--bg-secondary);
}
.agent-site .lang-dropdown-menu button.active {
    background: rgba(185, 28, 28, 0.08);
    color: var(--agent-button, var(--primary));
}
