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

:root {
    --gold: #C9A75D;
    --gold-light: #e0c07a;
    --dark: #0B0B0B;
    --dark-2: #111;
    --dark-3: #141414;
    --dark-4: #1a1a1a;
    --border: #222;
    --text-muted: #aaa;
    --text-dim: #ccc;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: #fff;
    padding-top: 68px;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

em {
    font-style: italic;
    color: var(--gold);
}

/* ======= NAVBAR ======= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 8px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 167, 93, 0.15);
    z-index: 1000;
    transition: background 0.3s;
}

.logo {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 38px;
    mix-blend-mode: screen;
}

.navbar nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.navbar nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s;
}

.navbar nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 0.3s;
}

.navbar nav a:hover {
    color: var(--gold);
}

.navbar nav a:hover::after {
    width: 100%;
}

.book-btn {
    padding: 10px 22px;
    background: var(--gold);
    color: black !important;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s !important;
}

.book-btn:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.book-btn::after {
    display: none !important;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

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

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

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

/* ======= HERO ======= */
.hero {
    height: 100vh;
    margin-top: -68px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: heroFade 1.2s ease forwards;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.btn {
    display: inline-block;
    padding: 13px 30px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ======= SECTIONS ======= */
.section {
    padding: 100px 50px;
    text-align: center;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 12px;
}

.subtitle {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* GOLD DIVIDER */
.gold-divider {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.5;
}

/* ======= SERVICE CARDS ======= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
    text-align: left;
}

.service-card {
    background: var(--dark-3);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.service-info p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 167, 93, 0.12);
    color: var(--gold);
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 167, 93, 0.3);
}

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

.section-cta {
    margin-top: 50px;
}

/* ======= SERVICE PRICE & FOOTER ======= */
.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.service-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

/* ======= MAINTENANCE SECTION ======= */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
    text-align: left;
}

.maintenance-card {
    background: var(--dark-3);
    padding: 36px 30px;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.maintenance-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.maintenance-step {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 16px;
    line-height: 1;
}

.maintenance-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.maintenance-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* ======= ADD-ONS SECTION ======= */
.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
    text-align: left;
}

.addon-card {
    background: var(--dark-3);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.addon-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.addon-price {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 12px;
}

.addon-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.addon-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* ======= REVIEWS ======= */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
    text-align: left;
}

.review-card {
    background: var(--dark-3);
    padding: 30px;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.stars {
    color: var(--gold);
    margin-bottom: 14px;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-card p {
    color: var(--text-dim);
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 14px;
}

.review-card h4 {
    color: var(--text-muted);
    font-weight: normal;
    font-size: 13px;
}

/* ======= FADE-IN ANIMATION ======= */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in:nth-child(2) {
    transition-delay: 0.1s;
}

.fade-in:nth-child(3) {
    transition-delay: 0.2s;
}

.fade-in:nth-child(4) {
    transition-delay: 0.3s;
}

/* ======= FOOTER ======= */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 60px 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 16px;
    mix-blend-mode: screen;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.2s;
}

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

.footer-contact p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #444;
    font-size: 12px;
}

/* ======= BOOKING FORM ======= */
.booking-page {
    padding-bottom: 20px;
}

.booking-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px 60px;
}

#calendar {
    max-width: 860px;
    margin: 20px auto 60px;
    padding: 0 50px;
}

.fc-daygrid-day {
    transition: 0.2s;
    cursor: pointer;
}

.fc-daygrid-day:hover {
    transform: scale(1.02);
}

.fc-daygrid-day-number {
    color: white;
}

.step {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(.22, 1, .36, 1);
    position: absolute;
    width: 100%;
}

.step.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
    position: relative;
}

.loader {
    border: 2px solid #333;
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    animation: spin 0.8s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#successPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 9999;
}

#successPopup.active {
    opacity: 1;
    pointer-events: all;
}

.popup-content {
    background: var(--dark-2);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(201, 167, 93, 0.3);
    transform: scale(0.85);
    transition: 0.3s;
}

#successPopup.active .popup-content {
    transform: scale(1);
}

.popup-content h2 {
    margin-bottom: 12px;
    font-size: 24px;
}

.popup-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

#succesbtn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
}

.booking-form {
    max-width: 420px;
    margin: 40px auto 60px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.booking-form h2 {
    margin-bottom: 28px;
    text-align: center;
    color: var(--gold);
    font-size: 22px;
}

/* ======= FORM INPUTS ======= */
select,
button,
input {
    margin-top: 10px;
    padding: 10px;
    width: 100%;
}

.input-group {
    position: relative;
    margin-bottom: 28px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: var(--dark-4);
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.input-group textarea {
    resize: none;
    height: 130px;
}

.input-group label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.2s;
    font-size: 14px;
    background: transparent;
}

.textarea-group label {
    top: 18px;
    transform: none;
}

.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label {
    top: -10px;
    font-size: 11px;
    color: var(--gold);
    background: var(--dark);
    padding: 0 6px;
    border-radius: 4px;
}

.textarea-group input:focus+label,
.textarea-group textarea:focus+label,
.textarea-group textarea:valid+label {
    top: -10px;
    transform: none;
}

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

#confirm {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: var(--gold);
    color: black;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-family: 'Inter', sans-serif;
}

#confirm:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ======= CONTACT ======= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    font-size: 20px;
    margin-top: 2px;
}

.contact-item h4 {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    background: var(--dark-4);
    border: 1px solid transparent;
    color: white;
    resize: none;
    height: 130px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form button {
    margin-top: 16px;
    padding: 15px;
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--gold);
    color: black;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s, transform 0.2s;
}

.contact-form button:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ======= ABOUT ======= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
    margin-top: 50px;
}

.about-text p {
    margin-bottom: 18px;
    color: var(--text-dim);
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(201, 167, 93, 0.2);
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 70px;
    text-align: center;
}

.stat-card {
    background: var(--dark-3);
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.stat-card h3 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 13px;
}

/* ======= OPTIONS STEP ======= */
.options-wrapper {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 50px 60px;
    text-align: left;
}

.option-block {
    margin-bottom: 38px;
}

.option-block-header h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.option-block-header p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.option-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    user-select: none;
}

.option-card:hover {
    border-color: rgba(201, 167, 93, 0.4);
}

.option-card.selected {
    border-color: var(--gold);
    background: rgba(201, 167, 93, 0.07);
    box-shadow: 0 4px 20px rgba(201, 167, 93, 0.1);
}

.option-card-body {
    display: flex;
    align-items: center;
    gap: 14px;
}

.option-card-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.option-card-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.option-card-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.option-tick {
    font-size: 15px;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.2s;
    flex-shrink: 0;
    margin-left: 12px;
}

.option-card.selected .option-tick,
.addon-option-card.selected .option-tick {
    opacity: 1;
}

.option-included {
    color: var(--gold);
    font-size: 13px;
    padding: 12px 16px;
    background: rgba(201, 167, 93, 0.07);
    border: 1px solid rgba(201, 167, 93, 0.3);
    border-radius: 10px;
}

/* Add-on option cards in booking */
.addon-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    gap: 14px;
}

.addon-option-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    user-select: none;
}

.addon-option-card:hover {
    border-color: rgba(201, 167, 93, 0.4);
}

.addon-option-card.selected {
    border-color: var(--gold);
    background: rgba(201, 167, 93, 0.07);
    box-shadow: 0 4px 20px rgba(201, 167, 93, 0.1);
}

.addon-opt-price {
    font-size: 20px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 6px;
}

.addon-opt-name {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.addon-option-card .option-tick {
    display: block;
}

/* ======= RESPONSIVE — TABLET ======= */
@media (max-width: 1024px) {
    .navbar {
        padding: 8px 30px;
    }

    .navbar nav {
        gap: 20px;
    }

    .section {
        padding: 80px 30px;
    }

    .footer {
        padding: 50px 30px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .booking-grid {
        padding: 0 30px 50px;
    }

    #calendar {
        padding: 0 30px;
    }

    .options-wrapper {
        padding: 0 30px 50px;
    }
}

/* ======= RESPONSIVE — MOBILE ======= */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .navbar {
        display: grid !important;
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 12px 18px;
    }

    .navbar .logo {
        grid-column: 1;
        grid-row: 1;
    }

    .logo img {
        max-height: 32px;
    }

    .hamburger {
        display: flex !important;
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        margin: 0 !important;
    }

    #main-nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        gap: 0;
        padding: 16px 20px;
        border-top: 1px solid var(--border);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    #main-nav.open {
        display: flex;
    }

    #main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
        font-size: 15px;
    }

    #main-nav a:last-child {
        border-bottom: none;
    }

    .book-btn {
        text-align: center;
        border-radius: 8px;
        margin-top: 8px;
    }

    .hero {
        margin-top: -60px;
        height: 90vh;
        min-height: 520px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .section {
        padding: 60px 18px;
    }

    .section h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 36px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image img {
        max-height: 320px;
        object-fit: cover;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-top: 50px;
    }

    .stat-card {
        padding: 22px 12px;
    }

    .stat-card h3 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer {
        padding: 50px 20px 0;
    }

    .service-grid,
    .maintenance-grid,
    .review-grid {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .maintenance-card,
    .review-card,
    .addon-card {
        padding: 26px 22px;
    }

    .booking-grid {
        padding: 0 18px 36px;
        grid-template-columns: 1fr;
    }

    #calendar {
        padding: 0 18px;
        margin: 16px auto 40px;
    }

    .booking-form {
        margin: 24px 18px 40px;
        padding: 26px 22px;
    }

    .options-wrapper {
        padding: 0 18px 40px;
    }

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

    .popup-content {
        margin: 0 20px;
        padding: 36px 26px;
    }
}

/* ======= RESPONSIVE — SMALL PHONES ======= */
@media (max-width: 420px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-content h1 {
        font-size: clamp(36px, 11vw, 52px);
    }

    .section {
        padding: 50px 16px;
    }
}

/* ======= GALLERY ======= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

/* ======= BEFORE / AFTER SLIDER ======= */
.ba-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    user-select: none;
    background: #000;
    cursor: ew-resize;
}

/* Both images fill the full slider — they always align perfectly */
.ba-slider img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-after  { z-index: 1; }

/* Before image clipped via clip-path — no wrapper needed */
.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0s; /* instant = no lag while dragging */
}

/* Divider line */
.ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.9);
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.3),
        0 0 12px 2px rgba(201,167,93,0.6),
        0 0 24px 4px rgba(201,167,93,0.2);
    z-index: 3;
    pointer-events: none;
}

/* Handle circle */
.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    box-shadow:
        0 0 0 3px var(--gold),
        0 4px 20px rgba(0,0,0,0.5);
    z-index: 4;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ba-handle::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid #111;
    margin-right: 4px;
}

.ba-handle::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #111;
    margin-left: 4px;
}

/* Invisible range input — covers full slider for dragging */
.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    margin: 0;
}

/* Labels */
.ba-label {
    position: absolute;
    top: 14px;
    padding: 5px 13px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 4;
    pointer-events: none;
    transition: opacity 0.2s;
}
.ba-label-before { left: 14px; }
.ba-label-after  { right: 14px; }

@media (max-width: 768px) {
    .gallery-grid { padding: 0 20px; }
    .ba-slider    { margin: 0 20px; }
    .ba-handle    { width: 36px; height: 36px; }
    .ba-handle::before { border-right-width: 6px; border-top-width: 5px; border-bottom-width: 5px; }
    .ba-handle::after  { border-left-width: 6px;  border-top-width: 5px; border-bottom-width: 5px; }
}

/* ======= CHOOSE PACKAGE BUTTON ======= */
.choose-pkg-btn {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 13px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.04em;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.choose-pkg-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* ======= NO PLAN BUTTON ======= */
.no-plan-btn {
    display: block;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    border: 1px solid #2a2a2a;
    margin: 0 auto;
}
.no-plan-btn:hover {
    color: #e88;
    background: rgba(220,80,80,0.07);
    border-color: rgba(220,80,80,0.3);
}

/* ======= MAINTENANCE SUMMARY CARD ======= */
.maintenance-chosen {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(201,167,93,0.1);
    border: 1px solid rgba(201,167,93,0.35);
    border-radius: 10px;
    padding: 16px 20px;
    color: var(--gold);
    font-size: 15px;
}
.maintenance-change-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    margin-left: 12px;
}
.maintenance-change-btn:hover { background: rgba(201,167,93,0.15); }

/* ======= PACKAGE DETAILS TOGGLE ======= */
.details-toggle {
    width: 100%;
    margin-top: 12px;
    padding: 8px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 6px;
    color: var(--gold);
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}
.details-toggle:hover { background: rgba(201,167,93,0.1); }

.package-details {
    display: none;
    margin-top: 14px;
    text-align: left;
    border-top: 1px solid #1e1e1e;
    padding-top: 14px;
}
.pkg-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-style: italic;
    line-height: 1.5;
}
.pkg-section h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin: 14px 0 6px;
}
.pkg-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pkg-section ul li {
    font-size: 12px;
    color: var(--text-dim);
    padding: 3px 0 3px 16px;
    position: relative;
    line-height: 1.4;
}
.pkg-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
    top: 4px;
}
.pkg-result {
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(201,167,93,0.07);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ======= MEMBERSHIP CARDS ======= */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 16px;
}
.membership-card {
    background: var(--dark-4);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px 16px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}
.membership-card:hover { border-color: rgba(201,167,93,0.5); }
.membership-card.selected {
    border-color: var(--gold);
    background: rgba(201,167,93,0.08);
}
.membership-card.mem-featured { border-color: rgba(201,167,93,0.35); }
.mem-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}
.mem-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
}
.mem-header h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--gold);
}
.mem-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
.mem-price span { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.membership-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.membership-card ul li {
    font-size: 12px;
    color: var(--text-dim);
    padding: 3px 0 3px 16px;
    position: relative;
    line-height: 1.4;
}
.membership-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
    top: 4px;
}
.mem-value {
    font-size: 11px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 8px;
}
.mem-selected-check {
    display: none;
    position: absolute;
    top: 10px;
    right: 12px;
    color: var(--gold);
    font-size: 16px;
}
.membership-card.selected .mem-selected-check { display: block; }
.mem-none {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}
.mem-none:hover { background: rgba(255,255,255,0.04); color: #fff; }

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

/* ======= SOCIAL BUTTONS ======= */
.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.social-icon-btn::after {
    display: none !important;
}

.social-icon-btn:hover {
    transform: translateY(-2px);
    color: white !important;
}

.social-icon-btn.whatsapp:hover {
    background: #25D366 !important;
}

.social-icon-btn.facebook:hover {
    background: #1877F2 !important;
}

.social-icon-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Nav social */
.nav-social {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Footer social */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

/* Mobile: social row inside hamburger menu */
@media (max-width: 768px) {
    .nav-social {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }

    #main-nav a.social-icon-btn {
        border-bottom: none;
        width: 36px;
        padding: 0;
    }
}