@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Bebas+Neue&display=swap');

:root {
    --bg-primary: #0A0A0A;
    --bg-card: #111111;
    --bg-card-hover: #181818;
    --bg-surface: #161616;

    /* Premium Gold Palette */
    --accent: #C9A84C;
    --accent-light: #E8C96B;
    --accent-dark: #A8893A;
    --accent-warm: #D4AF6B;
    --accent-glow: rgba(201, 168, 76, 0.25);

    --text-primary: #F5EDD8;
    --text-secondary: #8A8070;
    --text-muted: #4A4438;
    --border: #2A2520;
    --border-gold: rgba(201, 168, 76, 0.25);

    --success: #4CAF7A;
    --error: #C0392B;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-label: 'DM Sans', system-ui, sans-serif;
    --font-mono: 'Bebas Neue', sans-serif;

    --max-width: 1240px;
    --section-padding: 110px 0;
    --card-radius: 6px;
    --grid-gap: 24px;
}

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

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #0A0A0A;
    border: 1px solid var(--accent);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--accent-glow), 0 4px 12px rgba(0,0,0,0.4);
}

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

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-light) 100%);
    color: #0A0A0A;
    border: none;
    font-weight: 700;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--accent-glow);
}

.btn-gold {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.btn-gold:hover {
    background: var(--accent);
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--accent-glow);
}

.btn-white {
    background: rgba(245, 237, 216, 0.06);
    color: var(--text-primary);
    border: 1px solid rgba(245, 237, 216, 0.2);
}

.btn-white:hover {
    background: rgba(245, 237, 216, 0.12);
    border-color: rgba(245, 237, 216, 0.4);
    transform: translateY(-2px);
}

.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #7B9FE8;
    border: 1px solid rgba(123, 159, 232, 0.35);
    padding: 10px 24px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.btn-google-reviews:hover {
    background: rgba(123, 159, 232, 0.12);
    color: #9DB8EF;
    transform: translateY(-2px);
    border-color: rgba(123, 159, 232, 0.6);
}

.btn-green {
    background: linear-gradient(135deg, #2A6B47, #3A8F60);
    color: var(--text-primary);
    border: none;
    font-weight: 600;
}

.btn-green:hover {
    background: linear-gradient(135deg, #3A8F60, #4AAF78);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(58, 143, 96, 0.35);
}

.btn-google-reviews svg {
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    line-height: 1.05;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 24px auto 0;
}

.section-title span {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 4px;
}

.nav-logo span {
    color: var(--text-primary);
    font-weight: 400;
}

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

.nav-links a {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent);
    opacity: 0.7;
}

.nav-cta {
    margin-left: 20px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 22px;
    height: 1px;
    background: var(--text-secondary);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 8, 0.99);
    backdrop-filter: blur(24px);
    padding: 48px 32px;
    z-index: 999;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu a {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    padding: 16px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--accent);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 72px;
    background: linear-gradient(160deg, rgba(6, 5, 4, 0.96) 0%, rgba(10, 8, 6, 0.88) 60%, rgba(15, 12, 8, 0.82) 100%),
        url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80') center/cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80') center/cover;
    filter: blur(6px) scale(1.08) brightness(0.45) saturate(0.6);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 65%;
    left: 50%;
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
    transform: translate(-50%, -50%);
    animation: pulseGlow 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    position: relative;
    z-index: 1;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 8px 20px;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    text-transform: uppercase;
}

.hero-rating .stars {
    color: var(--accent);
    letter-spacing: 3px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 13vw, 148px);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 28px;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-title .accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-family: var(--font-label);
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
}

.ac-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    background: rgba(201, 168, 76, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 2px;
    margin: 24px auto 20px;
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-warm);
    animation: acPulse 4s ease-in-out infinite;
}

.ac-icon {
    font-size: 14px;
}

@keyframes acPulse {
    0%, 100% { border-color: rgba(201, 168, 76, 0.2); box-shadow: none; }
    50% { border-color: rgba(201, 168, 76, 0.4); box-shadow: 0 0 20px rgba(201, 168, 76, 0.1); }
}

.hero-meta {
    font-family: var(--font-label);
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 52px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.hero-buttons .btn {
    padding: 16px 36px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.services {
    padding: var(--section-padding);
    background: var(--bg-card);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.4;
}

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

/* Center the 7th card on Desktop */
@media (min-width: 1025px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid .service-card:nth-child(7) {
        grid-column: 2;
    }
}

/* Center the 7th card on Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid .service-card:nth-child(7) {
        grid-column: 2 / 4;
        justify-self: center;
    }
}

.service-card {
    background: #141210;
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 36px 32px;
    min-height: 220px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 168, 76, 0.06);
    background: #181510;
}

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

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.35s ease;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.5;
}

.service-card:hover .service-icon {
    background: var(--accent);
    border-color: var(--accent);
}

.service-card:hover .service-icon svg {
    stroke: #0A0A0A;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.1;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
}

.hours-section-wrapper {
    padding: 90px 0;
    background: var(--bg-primary);
    position: relative;
}

.hours-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.hours-card {
    background: #0E0C0A;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.hours-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
}

.hours-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-title h4 {
    font-family: var(--font-label);
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin: 0;
}

.hours-icon {
    font-size: 16px;
    opacity: 0.7;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(76, 175, 122, 0.1);
    color: #4CAF7A;
    border: 1px solid rgba(76, 175, 122, 0.2);
}

.status-badge.closed {
    background: rgba(192, 57, 43, 0.1);
    color: #C0392B;
    border-color: rgba(192, 57, 43, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease-in-out infinite;
}

.status-badge.closed .status-dot {
    animation: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hours-list {
    padding: 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    border-bottom: 1px solid rgba(42, 37, 32, 0.8);
    transition: background 0.2s ease;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.hours-row .time {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    white-space: nowrap;
    font-style: italic;
}

.hours-row .time.closed {
    color: var(--error);
}

.hours-row.today {
    background: rgba(201, 168, 76, 0.04);
}

.hours-row.today .day {
    color: var(--accent);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-row.today .day::after {
    content: 'TODAY';
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-dark);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    padding: 2px 8px;
}

.hours-footer {
    padding: 14px 28px;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px solid var(--border);
}

.location {
    padding: var(--section-padding);
    background: var(--bg-card);
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

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

.location-card {
    background: #0D0B09;
    border-radius: 4px;
    padding: 36px;
    border-left: 1px solid var(--accent);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.location-icon {
    font-size: 20px;
    opacity: 0.7;
}

.location-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.location-address {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.address-icon {
    font-size: 16px;
    margin-top: 3px;
    opacity: 0.6;
}

.location-address p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.9;
}

.location-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.phone-icon {
    font-size: 16px;
    opacity: 0.6;
}

.location-phone a {
    font-size: 18px;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 1px;
}

.location-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4AAF78;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 28px;
}

.whatsapp-icon {
    font-size: 14px;
}

.location-actions {
    display: flex;
    gap: 12px;
}

.btn-dark {
    flex: 1;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    padding: 12px 20px;
    border-radius: 3px;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--accent);
    color: var(--accent);
}

.location-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.location-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.location-cta h3 span {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.cta-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.btn-amber {
    background: var(--accent);
    color: #0A0A0A;
    padding: 16px 24px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-amber:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--accent-glow);
}

.btn-teal-outline {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    padding: 16px 24px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-teal-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(201, 168, 76, 0.05);
}

.cta-helper {
    font-style: italic;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.facilities {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
}

.facilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    justify-items: center;
}

.facility-item {
    background: linear-gradient(160deg, #131110 0%, #0D0B09 100%);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    max-width: 280px;
    position: relative;
    overflow: hidden;
}

.facilities-grid .facility-item:nth-child(7) {
    grid-column: 2 / 4;
}

.facilities-track {
    overflow: hidden;
    width: 100%;
    position: relative;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.facilities-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.marquee-content {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content:hover {
    /* Paused on hover only on desktop */
}

@media (min-width: 769px) {
    .marquee-content:hover {
        animation-play-state: paused;
    }
}

.marquee-content .facility-item {
    flex: 0 0 300px;
    max-width: 300px;
    margin-right: 16px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.facility-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(201, 168, 76, 0.12) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.facility-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(201, 168, 76, 0.08);
}

.facility-item:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .marquee-content .facility-item {
        cursor: default;
        pointer-events: none;
    }

    .marquee-content .facility-item:hover,
    .marquee-content .facility-item:hover::before {
        transform: none;
        border-color: inherit;
        box-shadow: none;
        opacity: 1;
    }
}

.facility-icon {
    font-size: 24px;
    margin-bottom: 12px;
    opacity: 0.85;
}

.facility-item span {
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.facility-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 8px;
    opacity: 0.7;
    font-weight: 300;
}

.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-card) 100%);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    margin: 0 -20px;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 20px;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonials-track::-moz-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: linear-gradient(160deg, #131110 0%, #0D0B09 100%);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 72px;
    font-family: var(--font-display);
    color: var(--accent);
    opacity: 0.15;
    line-height: 1;
    font-style: italic;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 24px rgba(201, 168, 76, 0.06);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: #0A0A0A;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.testimonial-content p {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.author-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.author-rating {
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 3px;
}

@media (max-width: 768px) {
    .testimonials-track {
        gap: 16px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 24px;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .testimonial-content p {
        font-size: 14px;
    }
}

.bottom-cta {
    padding: var(--section-padding);
    background: var(--bg-card);
    position: relative;
}

.bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 24px;
    line-height: 1.05;
    color: var(--text-primary);
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 36px;
}

.cta-link {
    color: var(--accent);
    font-family: var(--font-label);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.cta-link:hover {
    opacity: 0.7;
}

.cta-image {
    border-radius: 2px;
    overflow: hidden;
    height: 440px;
    background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=800&q=80') center/cover;
    filter: brightness(0.5) saturate(0.7);
    position: relative;
    border: 1px solid var(--border);
}

.cta-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(201, 168, 76, 0.08), transparent);
    z-index: 1;
}

.membership-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 72px;
    background: linear-gradient(160deg, rgba(6, 5, 4, 0.95) 0%, rgba(10, 8, 6, 0.85) 100%),
        url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&q=80') center/cover;
}

.membership-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&q=80') center/cover;
    filter: blur(6px) scale(1.08) brightness(0.4) saturate(0.5);
    z-index: -1;
}

.membership-hero .hero-content {
    text-align: center;
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}

.membership-hero .subtitle {
    font-family: var(--font-label);
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 300;
}

.membership-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 10vw, 88px);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--text-primary);
}

.membership-hero h1 .accent {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}

.pricing {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

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

.standards-text {
    text-align: center;
    font-size: 9px;
    color: var(--text-muted);
    opacity: 0.4;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-label);
}

.pricing-card {
    background: #0E0C0A;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 36px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(201, 168, 76, 0.25);
}

.pricing-card.featured {
    border-color: rgba(201, 168, 76, 0.4);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, #0E0C0A 100%);
}

.pricing-card.featured:hover {
    border-color: var(--accent);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 168, 76, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #0A0A0A;
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 2px;
    white-space: nowrap;
}

.pricing-tier {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.pricing-subtitle {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-bio {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 20px 0;
    font-style: italic;
    padding: 16px 20px;
    background: rgba(201, 168, 76, 0.04);
    border-left: 1px solid var(--accent);
    border-radius: 0 2px 2px 0;
    font-weight: 300;
}

@media (max-width: 768px) {
    .pricing-bio {
        font-size: 12px;
        line-height: 1.5;
        padding: 12px;
    }
}

.pricing-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: 2px;
}

.pricing-price span {
    font-size: 15px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 300;
}

.pricing-admission {
    display: inline-block;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--accent-warm);
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 20px;
    font-weight: 400;
}

.duration-options {
    margin: 20px -8px;
    padding: 6px;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 4px;
    position: relative;
}

.duration-options::before {
    display: none;
}

.duration-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 14px;
    border-radius: 3px;
    margin-bottom: 4px;
    background: rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    font-family: var(--font-label);
    font-size: 12px;
}

.duration-row:last-child {
    margin-bottom: 0;
}

.duration-row:hover {
    background: rgba(201, 168, 76, 0.08);
    transform: translateX(3px);
}

.duration-row span:first-child {
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.duration-row span:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.duration-row span:last-child strong {
    font-size: 18px;
    color: var(--accent);
    font-weight: 600;
    font-family: var(--font-display);
}

.duration-row span:last-child small {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 400;
    background: rgba(201, 168, 76, 0.1);
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 0.5px;
}

.duration-row.featured {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.06) 100%);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.duration-row.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--accent);
    color: #0A0A0A;
    font-size: 8px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 0 3px 0 3px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.duration-row.featured span:first-child {
    color: var(--accent-warm);
    font-weight: 500;
}

.duration-row.featured span:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.duration-row.featured span:last-child strong {
    font-size: 22px;
    font-family: var(--font-display);
}

.duration-row.featured span:last-child small {
    font-size: 10px;
    color: var(--text-secondary);
    font-weight: 400;
    background: rgba(201, 168, 76, 0.1);
    padding: 2px 8px;
    border-radius: 2px;
}

.duration-row.featured span:last-child em {
    font-size: 10px;
    color: var(--accent);
    font-weight: 500;
    font-style: normal;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed rgba(201, 168, 76, 0.25);
    width: 100%;
    text-align: center;
    letter-spacing: 0.5px;
}

.duration-row.featured:hover {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.1) 100%);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
}

.pricing-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 24px 0;
}

.pricing-features {
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 300;
    border-bottom: 1px solid rgba(201, 168, 76, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.7;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.highlight {
    color: var(--accent-warm);
    font-weight: 500;
}

.pricing-card .btn {
    width: 100%;
}

.footer {
    padding: 70px 0 36px;
    background: #080806;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 5px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

.footer-social a:hover svg {
    fill: var(--accent);
}

.footer-links {
    display: flex;
    gap: 36px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-family: var(--font-label);
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 1px;
}

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--accent);
    border: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px var(--accent-glow);
    background: var(--accent-light);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: #0A0A0A;
    fill: none;
    stroke-width: 2;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .facilities-grid .facility-item:nth-child(7) {
        grid-column: auto;
    }

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

    .location-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 60px 20px 48px;
    }

    .hero-title {
        font-size: clamp(44px, 14vw, 90px);
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .hero-meta {
        font-size: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: clamp(30px, 9vw, 52px);
        letter-spacing: 3px;
        margin-bottom: 48px;
    }

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

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

    .service-card h3 {
        font-size: 22px;
    }

    .hours-section-wrapper {
        padding: 56px 0;
    }

    .hours-card {
        margin: 0 16px;
    }

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

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

    .location-cta {
        padding: 0;
    }

    .location-cta h3 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .facilities-grid {
        flex-direction: column;
    }

    .facility-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .testimonial-card {
        flex: 0 0 290px;
        padding: 28px 24px;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .testimonial-content p {
        font-size: 13px;
    }

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

    .cta-image {
        height: 280px;
    }

    .cta-content h2 {
        font-size: clamp(30px, 8vw, 44px);
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-logo {
        font-size: 22px;
    }

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

    .pricing-card {
        max-width: 420px;
        margin: 0 auto;
        padding: 32px 24px;
    }

    .pricing-tier {
        font-size: 28px;
    }

    .pricing-price {
        font-size: 44px;
    }

    .membership-hero h1 {
        font-size: clamp(36px, 10vw, 64px);
        letter-spacing: 3px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

.contact-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.contact-trigger {
    width: 100%;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.contact-trigger::after {
    content: '▼';
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.contact-group.expanded .contact-trigger::after {
    transform: rotate(180deg);
}

.contact-options {
    display: none;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--bg-card);
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.contact-group.popup-up .contact-options {
    bottom: calc(100% + 12px);
}

.contact-group.popup-down .contact-options {
    top: calc(100% + 12px);
}

.contact-group.expanded .contact-options {
    display: flex;
}

.contact-group.popup-up.expanded .contact-options {
    animation: slideUp 0.2s ease;
}

.contact-group.popup-down.expanded .contact-options {
    animation: slideDown 0.2s ease;
}

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

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

@media (max-width: 768px) {
    .contact-group.popup-up .contact-options,
    .contact-group.popup-down .contact-options {
        top: auto;
        bottom: calc(100% + 12px);
    }

    .contact-group.popup-up.expanded .contact-options,
    .contact-group.popup-down.expanded .contact-options {
        animation: slideUp 0.2s ease;
    }
}