/* --- RESET & VARIABLES --- */
:root {
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --border: #2a2a2a;
    --gold: #d4af37;
    --gold-dim: #aa8c2c;
    --danger: #d9534f;
    --gradient-dark: linear-gradient(145deg, #0a0a0a 0%, #000000 100%);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 40px rgba(212, 175, 55, 0.15);
}

/* --- ACCESSIBILITY UTILITIES --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 12px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 10px;
}

/* Global Focus Indicator */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Remove outline only when not focus-visible (mouse clicks) */
:focus:not(:focus-visible) {
    outline: none;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 10%, #111 0%, #000 60%);
}

body.menu-open {
    overflow: hidden;
}

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

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
.btn,
.nav-links a,
.menu-price,
.btn-full-width,
.slot-btn {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-padding {
    padding: 100px 0;
}

.divider {
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 20px auto;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: 0.3s;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: invert(1);
}

/* --- DESKTOP MENU STYLES (CENTERED) --- */
@media (min-width: 901px) {
    .nav-links {
        display: flex;
        align-items: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        list-style: none;
        /* Removed dots */
    }

    .nav-links a {
        color: #fff;
        text-decoration: none;
        margin: 0 20px;
        font-size: 0.85rem;
        font-weight: 400;
        opacity: 0.85;
        transition: 0.3s;
    }

    .nav-links a.active {
        opacity: 1;
        color: #d4af37;
        /* Gold */
        font-weight: 700;
    }

    .booking-link {
        color: #d4af37 !important;
        /* Gold to match brand */
        font-weight: 700 !important;
        text-transform: uppercase;
    }

    .nav-links .btn {
        margin-left: 20px;
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}

/* Base Hamburger & Close styles (Hidden on Desktop) */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.4s ease-in-out;
    background-color: #fff;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.close-menu-btn {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
}

/* --- DROPDOWN MENU STYLES --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1000;
    top: 100%;
    left: 0;
    border-top: 2px solid var(--gold);
    text-align: left;
}

.dropdown-content a {
    color: #000 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: 'Manrope', sans-serif;
    text-transform: none;
    font-size: 0.9rem !important;
    border-bottom: 1px solid #eee;
    margin: 0 !important;
    opacity: 1 !important;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--gold) !important;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

.dropbtn::after {
    content: " ▼";
    font-size: 0.7em;
    vertical-align: middle;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 90vh;
    background-image: url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-color: #000;
    background-blend-mode: saturation;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 140px 0 80px 0; /* Prevent clipping under navbar */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
    pointer-events: none;
    z-index: 2;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1rem;
    color: #ccc;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

/* --- SHINY LOGO EFFECT --- */
.shiny-logo-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 0 auto 20px auto;
}

.hero-logo {
    display: block;
    width: 250px;
    height: auto;
    filter: invert(1);
    position: relative;
    z-index: 1;
}

.shiny-logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    animation: shine-sweep 4s infinite linear;
}

@keyframes shine-sweep {
    0% {
        left: -150%;
    }

    40% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 15px 40px;
    font-size: 1rem;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #fff;
    transition: 0.3s;
    cursor: pointer;
}

.btn:hover {
    background: #000;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* --- ABOUT SECTION --- */
.about-section {
    background: var(--bg-dark);
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

/* Gold Frame Effect */
.about-img-container {
    position: relative;
    padding: 15px 0 0 15px;
    /* Space for the offset frame */
}

.about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    border: 1px solid #333;
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

.about-img:hover {
    filter: grayscale(0%) contrast(1);
}

.about-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Matches image height roughly */
    border: 2px solid var(--gold);
    z-index: 1;
    transform: translate(-15px, -15px);
    /* Offset to top-left */
    width: calc(100% - 15px);
    /* Adjust width */
    height: 450px;
}

/* Typography Refinements */
.drop-cap {
    float: left;
    font-size: 3.5rem;
    line-height: 0.75;
    margin-right: 12px;
    margin-top: 5px;
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-weight: 700;
}

/* --- PORTFOLIO SECTION --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    overflow: visible;
    cursor: pointer;
    transition: transform 0.3s;
    border: 1px solid #222;
}

.portfolio-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s ease;
    display: block;
}

.portfolio-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* --- TEAM GRID --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.team-card {
    position: relative;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s;
}

.team-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    text-align: center;
}

/* --- REVIEWS SECTION --- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #000;
    border: 1px solid #222;
    padding: 40px;
    text-align: center;
}

.stars {
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
}

.review-author {
    font-family: 'Oswald';
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* --- SERVICES LIST --- */
.menu-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #222;
    padding: 20px 0;
    transition: 0.2s;
}

.menu-item:hover {
    border-color: #555;
    padding-left: 10px;
    padding-right: 10px;
}

.menu-title h3 {
    font-size: 1.3rem;
    font-weight: 400;
}

.menu-title span {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-family: 'Manrope';
    text-transform: none;
    letter-spacing: 0;
    margin-top: 5px;
}

.menu-price {
    font-size: 1.3rem;
    min-width: 70px;
    text-align: right;
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
}

.contact-box {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-dark {
    background: #050505;
    text-align: right;
    border-right: 1px solid var(--border);
}

.contact-light {
    background: #111;
    text-align: left;
}

.contact-label {
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-family: 'Oswald';
}

.hours-list p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 1px solid #222;
    padding-bottom: 5px;
    font-size: 0.9rem;
    color: #ccc;
}

.hours-list span {
    color: #fff;
    font-weight: 700;
}

/* --- LOCATIONS & MAPS --- */
.loc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.loc-item {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: 0.3s;
}

.loc-item:last-child {
    border-right: none;
}

.loc-item:hover {
    background: #111;
}

.loc-item h3 {
    font-size: 1.8rem;
    margin: 15px 0;
}

.loc-item p {
    color: #888;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    background: #222;
}

/* Maps iframe - Full Color */
iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- FOOTER & SOCIAL --- */
/* --- FOOTER & SOCIAL --- */
footer {
    background: #000;
    padding: 80px 0 40px 0;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: 'Oswald';
    text-transform: none;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 20px;
    font-family: 'Manrope';
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

.footer-col p {
    margin-bottom: 5px;
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 60px;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
    font-size: 0.8rem;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    margin: 0 5px;
}

.social-icon-link:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.social-icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* --- MODAL & BOOKING STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

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

.modal-box {
    background: #000;
    border: 1px solid #fff;
    padding: 50px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    line-height: 0.5;
}

/* Form Elements */
.modal-box input,
.modal-box select {
    width: 100%;
    padding: 12px;
    background: #111;
    color: #fff;
    border: 1px solid #333;
    margin-top: 5px;
}

.modal-box input:focus,
.modal-box select:focus {
    border-color: #fff;
}

/* Slot Buttons */
.slot-btn {
    background: #fff;
    color: #000;
    border: 1px solid #ccc;
    padding: 10px 15px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    min-width: 70px;
    transition: 0.2s;
    margin-bottom: 5px;
}

.slot-btn:hover {
    background: #000;
    color: #fff;
    border-color: #fff;
}

.slot-btn.taken {
    background: #222;
    color: #555;
    border-color: #333;
    text-decoration: line-through;
    cursor: not-allowed;
}

.slot-btn.selected {
    background: #000;
    color: #fff;
    border-color: var(--gold);
    transform: scale(1.1);
}

/* --- STICKY MOBILE BUTTON --- */
.mobile-sticky-btn {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 2000;
    display: none;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.5);
}

.btn-full-width {
    width: 100%;
    background: #fff;
    color: #000;
    padding: 18px 0;
    border: none;
    font-weight: 700;
    cursor: pointer;
    border-radius: 2px;
    font-size: 1.1rem;
}

/* --- RESPONSIVE / MOBILE MENU STYLES --- */
@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 900px) {
    .section-padding {
        padding: 60px 0;
    }

    /* Hamburger shown on mobile */
    .hamburger {
        display: block;
        z-index: 1001;
    }

    /* Mobile Menu - Slide In */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: #000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        border-left: 1px solid #333;
        display: flex;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.5rem;
        color: #fff;
        text-decoration: none;
    }

    .nav-links .btn {
        margin: 20px 0 0 0;
    }

    /* FIX: Lower z-index so the menu (z=2000) covers it */
    .hamburger {
        display: block;
        z-index: 1500;
    }

    .close-menu-btn {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        font-size: 2.5rem;
        color: #fff;
        cursor: pointer;
        z-index: 2001;
        transition: 0.3s;
        background: transparent;
        border: none;
        padding: 0;
    }

    .close-menu-btn:hover {
        color: #d4af37;
    }

    /* Sticky Button & Footer */
    .mobile-sticky-btn {
        display: block;
    }

    footer {
        padding-bottom: 100px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-logo {
        width: 200px;
    }

    .about-grid,
    .contact-grid,
    .loc-grid {
        grid-template-columns: 1fr;
    }

    .contact-dark {
        text-align: center;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .contact-light {
        padding: 40px 20px;
    }

    .loc-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .menu-item {
        flex-wrap: wrap;
    }

    .menu-price {
        margin-left: auto;
    }
}

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

    .btn {
        padding: 12px 30px;
    }

    .container {
        padding: 0 15px;
    }
}

/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: #0a0a0a;
    border: 1px solid #222;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    background: #222;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #050505;
}

.faq-answer p {
    padding: 20px;
    color: #ccc;
    font-size: 0.95rem;
    border-top: 1px solid #222;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Adjust if content is longer */
.faq-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    transition: 0.3s;
    color: var(--gold);
}

/* --- NEW PREMIUM SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.service-img {
    width: 100%;
    aspect-ratio: 8 / 10;
    display: block;
    object-fit: cover;
    background: #0a0a0a;
    transition: 0.5s ease;
    transform: scale(1.04);
}

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

.service-info {
    padding: 25px;
    background: var(--gradient-dark);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

.service-title span {
    color: var(--gold);
}

/* --- BENEFIT CARDS (New Why Choose Us) --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: #111;
    border: 1px solid #222;
    padding: 40px 30px;
    text-align: center;
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: 0.3s;
    transform-origin: left;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: #151515;
    border-color: #333;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-title {
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Oswald';
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.benefit-desc {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    transition: 0.3s;
}

.service-link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* --- WHY CHOOSE US (PREMIUM) --- */
#why-choose-us {
    background: #080808;
    color: #fff;
    border-top: 1px solid var(--border);
    position: relative;
}

#why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, #151515 0%, transparent 40%);
    pointer-events: none;
}

.why-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.why-title {
    font-size: 2.2rem;
    font-family: 'Oswald';
    color: #fff;
    margin-bottom: 25px;
}

.why-intro {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.why-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-list li {
    margin-bottom: 0;
    font-size: 1rem;
    color: #ddd;
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: 0.3s;
}

.why-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #333;
    transform: translateX(5px);
}

.why-icon-sm {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .why-list {
        grid-template-columns: 1fr;
    }
}

/* --- CONTACT PAGE STYLES --- */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1503951914875-befbb64918d3?q=80&w=2080&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-hero p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section {
    padding: 60px 0;
    background: #050505;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

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

.form-label {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background: #fff;
    /* Design has white inputs? Looks like white/light gray inputs */
    border: 1px solid #ccc;
    color: #333;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    /* Slight rounded based on image */
}

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

.submit-btn {
    background: #d4af37;
    color: #000;
    font-weight: 700;
    border: none;
    padding: 15px 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #b5952f;
    transform: translateY(-2px);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.location-card {
    background: #fff;
    /* Cards look white in design */
    color: #000;
    border-radius: 4px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.location-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #000;
}

.location-card p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.4;
}

.location-rating {
    font-size: 0.8rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.book-btn-sm {
    display: block;
    width: 100%;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-family: 'Oswald';
    font-size: 0.9rem;
    margin-top: 15px;
    border-radius: 4px;
    text-transform: uppercase;
}

.book-btn-sm:hover {
    background: #333;
}

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

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

    .contact-hero h1 {
        font-size: 2.2rem;
    }
}

/* Social Media Icons */
.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon-link {
    display: inline-flex;
    /* Fix for rendering */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 40px;
    /* Minimum touch target */
    height: 40px;
}

.social-icon-svg {
    font-size: 1.5rem;
    color: #d4af37;
    /* Gold */
    transition: 0.3s;
}

.social-icon-svg:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}