/* =========================================
   RESET
========================================= */

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

body {
    background: #0a0a0a;
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    width: 1280px;
    max-width: 92%;
    margin: 0 auto;
}

/* =========================================
   HEADER
========================================= */

.header {
    padding: 22px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    letter-spacing: 4px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    opacity: 0.8;
}

/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.subtitle {
    letter-spacing: 4px;
    color: #777;
    margin-bottom: 16px;
    font-size: 12px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 22px;
}

.description {
    color: #999;
    max-width: 520px;
    margin: 0 auto 32px;
    font-size: 15px;
    line-height: 1.7;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 34px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 999px;
    transition: 0.3s;
    font-size: 14px;
}

.button:hover {
    opacity: 0.85;
}

/* =========================================
   BOOKING PAGE
========================================= */

.booking-page {
    padding: 110px 0 80px;
}

.booking-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 34px;
}

.back-button {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: 0.3s;
}

.back-button:hover {
    border-color: #555;
}

.booking-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 6px;
}

.month-title {
    color: #8f8f8f;
    font-size: 15px;
}

/* =========================================
   SERVICES
========================================= */

.services-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-item {
    background: #131313;
    border: 1px solid #232323;
    border-radius: 22px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.service-item:hover {
    border-color: #3a3a3a;
}

.service-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-image {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 16px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-meta {
    display: flex;
    gap: 18px;
    color: #888;
    font-size: 14px;
}

.service-right {
    text-align: right;
}

.service-price {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-button {
    width: 170px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: #1da1f2;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.service-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    margin-bottom: 12px;
}

.green {
    background: #1abc9c;
}

.orange {
    background: orange;
}

/* =========================================
   BOOKING DATE
========================================= */

.dates-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 50px;
}

.dates-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


.date-nav {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    background: #131313;
    color: white;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.date-card {
    min-width: 82px;
    height: 82px;
    border-radius: 22px;
    border: 1px solid #2a2a2a;
    background: #131313;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

.date-card span {
    font-size: 14px;
    color: #888;
}

.date-card strong {
    font-size: 22px;
}

.date-card.active {
    border-color: #1da1f2;
    background: #102434;
}

/* =========================================
   TIME
========================================= */

.time-title {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 24px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 36px;
}

.time-slot {
    height: 60px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    background: #131313;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.time-slot.active {
    background: #1da1f2;
    border-color: #1da1f2;
}

.continue-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 18px;
    background: #1da1f2;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/* =========================================
   CLIENT
========================================= */

.small-container {
    max-width: 520px;
    margin: 0 auto;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.booking-form input {
    width: 100%;
    height: 54px;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 0 18px;
    color: white;
    font-size: 15px;
    outline: none;
}

.booking-form input:focus {
    border-color: #1da1f2;
}

.booking-summary {
    background: #111111;
    border-radius: 18px;
    padding: 18px;
}

.booking-summary p {
    margin-bottom: 10px;
    font-size: 15px;
}

.booking-summary p:last-child {
    margin-bottom: 0;
}

.booking-summary strong {
    color: #999;
}

.booking-form button {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: 16px;
    background: #1da1f2;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width: 768px) {

    .container {
        max-width: 94%;
    }

   .menu-toggle{
    display:block;
    background:none;
    border:none;
    color:#fff;
    font-size:32px;
    cursor:pointer;
}

.header-inner{
    position:relative;
}

.nav{
    display:none;
}

.nav.active{
    display:flex;
    flex-direction:column;
    gap:20px;

    position:absolute;
    top:70px;
    left:0;

    width:100%;

    background:#0a0a0a;

    padding:25px;

    border-radius:20px;

    border:1px solid #1f1f1f;

    z-index:999;
}

    .hero h1 {
        font-size: 42px;
    }

    .booking-title {
        font-size: 34px;
    }

    .booking-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .service-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-right {
        width: 100%;
        text-align: left;
    }

    .service-button {
        width: 100%;
    }

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

    .date-card {
        min-width: 82px;
        height: 82px;
    }

    .time-slot {
        height: 56px;
    }

    .continue-btn {
        height: 56px;
    }
}



/* MOBILE */

@media (max-width: 768px) {

    .booking-title {
        font-size: 42px;
    }

    .month-title {
        font-size: 18px;
    }

    .dates-wrapper {
        gap: 10px;
    }

    .date-card {
        min-width: 88px;
        height: 100px;
    }

    .date-card strong {
        font-size: 32px;
    }

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

    .time-slot {
        height: 64px;
        font-size: 18px;
    }

    .continue-btn {
        height: 64px;
        font-size: 20px;
    }
}

.time-slot.disabled {
    opacity: 0.35;
    pointer-events: none;
    background: #222;
    border-color: #333;
    cursor: not-allowed;
}

.time-slot.disabled {

    opacity: 0.35;

    background: #111 !important;

    border: 1px solid #222 !important;

    cursor: not-allowed;

    pointer-events: none;

    -webkit-user-select: none;

    user-select: none;

    filter: grayscale(100%);
}

.time-slot.disabled span {

    color: #555 !important;

    text-decoration: line-through;
}

.service-actions {
    margin-top: 14px;
}

.description-btn {
    height: 38px;
    padding: 0 18px;
    border: none;
    border-radius: 12px;
    background: #1a1a1a;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

/* MODAL */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    z-index: 9999;
}

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

.modal-box{
    width:500px;
    max-width:90%;
    max-height:85vh;
    overflow-y:auto;
    background:#111;
    border-radius:24px;
    padding:30px;
    position:relative;
}

.modal-box h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.modal-box p {
    color: #bdbdbd;
    line-height: 1.7;
    font-size: 18px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: #1a1a1a;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.service-right{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    justify-content:center;
    gap:20px;
}

.service-buttons{
    display:flex;
    align-items:center;
    gap:16px;
}

.description-btn{
    height:56px;
    padding:0 28px;
    border-radius:16px;
    border:1px solid #3a3a3a;
    background:transparent;
    color:white;
    font-size:18px;
    cursor:pointer;
    transition:.2s;
}

.description-btn:hover{
    background:#111;
}

.service-button{
    height:56px;
    padding:0 34px;
}

@media(max-width:768px){

    .service-item{
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
    }

    .service-left{
        width:100%;
    }

    .service-right{
        width:100%;
        align-items:stretch;
    }

    .service-price{
        font-size:28px;
        margin-bottom:10px;
    }

    .service-buttons{
        width:100%;
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .description-btn,
    .service-button{
        width:100%;
        justify-content:center;
    }

}

.service-badge.blue {
    background: #2D9CDB;
    color: white;
}

/* MOBILE SERVICE FIX */

@media(max-width:768px){

    .service-left{
        flex-direction:column;
        align-items:flex-start;
    }

    .service-info{
        width:100%;
    }

    .service-badge{
        display:inline-flex;
        margin-top:12px;
        margin-bottom:14px;
    }

}

@media(max-width:768px){

    .modal-box{
        padding:24px 18px;
        border-radius:20px;
    }

    .modal-close{
        top:14px;
        right:14px;
        font-size:24px;
    }

}

.service-extras {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.extra-item {
    color: #d8d8d8;
    font-size: 14px;
    cursor: pointer;
}

.extra-item:hover {
    color: #fff;
}

@media(max-width:768px){

    .dates-row{
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        padding-bottom: 10px;
    }

    .dates-row::-webkit-scrollbar{
        display:none;
    }

    .date-card{
        flex-shrink:0;
        min-width:88px;
    }

}

.contact-page{
    padding:120px 0;
}

.contact-title{
    font-size:72px;
    font-weight:700;
    margin-bottom:15px;
}

.contact-subtitle{
    color:#999;
    font-size:18px;
    margin-bottom:50px;
}

.contact-layout{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:30px;
}

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

.contact-box{
    background:#0f0f0f;
    border:1px solid #1f1f1f;
    border-radius:24px;
    padding:28px;
}

.contact-label{
    display:block;
    color:#888;
    font-size:14px;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.contact-box h3{
    font-size:28px;
    margin-bottom:10px;
}

.contact-box p{
    color:#cfcfcf;
    line-height:1.7;
}

.contact-button,
.whatsapp-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:54px;
    padding:0 28px;
    border-radius:14px;
    text-decoration:none;
    margin-top:20px;
    transition:.3s;
}

.contact-button{
    background:#1a1a1a;
    color:#fff;
    border:1px solid #2b2b2b;
}

.contact-button:hover{
    background:#222;
}

.whatsapp-button{
    background:#25D366;
    color:#fff;
    font-weight:600;
}

.whatsapp-button:hover{
    transform:translateY(-2px);
}

.contact-map{
    background:#0f0f0f;
    border:1px solid #1f1f1f;
    border-radius:24px;
    overflow:hidden;
    min-height:700px;
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
}

@media(max-width:768px){

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

    .contact-title{
        font-size:52px;
    }

    .contact-map{
        min-height:450px;
    }

}

.voucher-page{
    padding:120px 0;
}

.voucher-hero{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:40px;
    align-items:center;
    margin-bottom:80px;
}

.voucher-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#1d1d1d;
    color:#fff;
    margin-bottom:20px;
}

.voucher-content h1{
    font-size:72px;
    margin-bottom:20px;
}

.voucher-content p{
    font-size:20px;
    color:#a0a0a0;
    margin-bottom:30px;
    line-height:1.6;
}

.voucher-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:60px;
    padding:0 35px;
    background:#2d9cf0;
    color:#fff;
    border-radius:16px;
    text-decoration:none;
    font-weight:600;
}

.voucher-card{
    height:260px;
    border-radius:30px;
    background:linear-gradient(
        135deg,
        #1f1f1f,
        #0d0d0d
    );
    border:1px solid #2a2a2a;
    padding:40px;
    display:flex;
    align-items:center;
}

.voucher-card-inner h3{
    font-size:42px;
    margin:20px 0;
}

.voucher-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-bottom:80px;
}

.voucher-option{
    background:#101010;
    border:1px solid #1f1f1f;
    border-radius:24px;
    padding:30px;
}

.voucher-option h3{
    font-size:34px;
    margin-bottom:10px;
}

.voucher-option p{
    color:#999;
}

.voucher-steps h2{
    font-size:48px;
    margin-bottom:30px;
}

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

.step-card{
    background:#101010;
    border:1px solid #1f1f1f;
    border-radius:24px;
    padding:30px;
}

.step-card span{
    font-size:42px;
    font-weight:700;
    color:#2d9cf0;
}

.step-card p{
    margin-top:15px;
}

@media(max-width:768px){

    .voucher-hero{
        grid-template-columns:1fr;
    }

    .voucher-content h1{
        font-size:52px;
    }

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

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

}

.voucher-summary{
    background:#111;
    border:1px solid #1f1f1f;
    border-radius:20px;
    padding:25px;
    margin-bottom:20px;
}

.voucher-summary span{
    display:block;
    color:#999;
    margin-bottom:10px;
}

.voucher-summary strong{
    font-size:42px;
    color:#fff;
}

/* ==========================
   REVIEWS
========================== */

.reviews-page{
    padding:120px 0;
}

.reviews-header{
    text-align:center;
    margin-bottom:60px;
}

.reviews-header h1{
    font-size:48px;
    margin-bottom:20px;
}

.reviews-header p{
    color:#999;
    font-size:20px;
}

.reviews-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));
    gap:24px;
}

.review-card{

    background:#0d0d0d;

    border:1px solid #1a1a1a;

    border-radius:30px;

    padding:40px;

    min-height:280px;

    transition:.3s;
}

.review-stars{

    color:#f39c12;

    font-size:24px;

    margin-bottom:20px;
}

.review-card h3{

    font-size:24px;
    margin:25px 0 15px;
}

.review-card p{

    font-size:16px;
    line-height:1.8;
}

.review-top{

    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-bottom:25px;
}

.review-stars{

    color:#f5a623;
    font-size:28px;
}

.review-date{

    color:#777;
    font-size:14px;
}

.reviews-pagination{

    display:flex;
    justify-content:center;
    gap:12px;

    margin-top:60px;
}

.reviews-pagination a{

    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:#111;

    color:white;
    text-decoration:none;

    transition:.2s;
}

.reviews-pagination a:hover{

    background:#2d9cdb;
}

.reviews-pagination a.active{

    background:#2d9cdb;
}
