
/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* ========================================
   NAVIGATION
======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: auto;

    padding: 18px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo span {
    color: #D4AF37;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    position: relative;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #d0d0d0;

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: linear-gradient(135deg, #D4AF37, #F4D03F);

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-button {
    padding: 12px 20px;

    background: linear-gradient(135deg, #D4AF37, #F4D03F);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;

    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.nav-button:hover {
    background: linear-gradient(135deg, #F4D03F, #FFE66D);
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.menu-toggle {
    display: none;

    border: none;
    background: none;

    color: white;
    font-size: 28px;

    cursor: pointer;
}


/* ========================================
   HERO
======================================== */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 140px 8% 100px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.25)
        ),
        url("../images/hero.jpg") center/cover no-repeat;

    background-color: #171717;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(229, 57, 53, 0.12),
            transparent 40%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.hero-small {
    margin-bottom: 15px;

    color: #D4AF37;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 3px;
}

.hero h1 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(60px, 8vw, 110px);
    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -2px;
}

.hero h1 span {
    color: #D4AF37;
}

.hero-description {
    max-width: 600px;

    margin-top: 30px;

    color: #d0d0d0;

    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 15px;

    margin-top: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 28px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;

    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F4D03F, #FFE66D);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    animation: goldShimmer 0.6s ease-in-out;
}

.btn-secondary {
    border: 2px solid #D4AF37;
    background: transparent;
    color: white;
}

.btn-secondary:hover {
    background: #D4AF37;
    color: #111;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 8%;

    display: flex;
    align-items: center;
    gap: 15px;

    color: #aaa;

    font-size: 10px;
    letter-spacing: 2px;
}

.scroll-line {
    width: 60px;
    height: 1px;

    background: linear-gradient(135deg, #D4AF37, #F4D03F);
}


/* ========================================
   STATS
======================================== */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid #252525;
    border-bottom: 1px solid #252525;

    background: #111;
}

.stat {
    padding: 35px 20px;

    text-align: center;

    border-right: 1px solid #252525;
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;

    font-family: "Oswald", sans-serif;

    font-size: 36px;

    color: #D4AF37;
}

.stat span {
    color: #aaa;

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ========================================
   GENERAL SECTIONS
======================================== */

.section {
    padding: 110px 8%;
}

.section-container {
    max-width: 1250px;
    margin: auto;
}

.section-label {
    margin-bottom: 12px;

    color: #D4AF37;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.section h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(45px, 5vw, 70px);
    line-height: 1;

    margin-bottom: 25px;
}

.section h2 span {
    color: #D4AF37;
}


/* ========================================
   ABOUT
======================================== */

.about {
    background: #0b0b0b;
}

.about .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.about-image {
    min-height: 500px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #242424,
            #111
        );

    border: 1px solid #292929;

    color: #555;

    font-family: "Oswald", sans-serif;
    letter-spacing: 2px;
}

.about-content p:not(.section-label) {
    margin-bottom: 20px;

    color: #aaa;

    font-size: 15px;
}

.text-button {
    display: inline-block;

    margin-top: 15px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.text-button:hover {
    color: #D4AF37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}


/* ========================================
   SERVICES
======================================== */

.services {
    background: #111;
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-heading > p:last-child {
    color: #888;
}

.service-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    padding: 45px 35px;

    background: linear-gradient(135deg, #1a1a1a 0%, #171717 100%);

    border: 1px solid #292929;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);

    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.service-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: #333;

    font-family: "Oswald", sans-serif;
    font-size: 40px;
}

.service-icon {
    margin-bottom: 20px;

    font-size: 38px;
}

.service-card h3 {
    margin-bottom: 15px;

    font-family: "Oswald", sans-serif;

    font-size: 28px;
}

.service-card p {
    margin-bottom: 25px;

    color: #999;

    font-size: 14px;
}

.service-card a {
    color: #D4AF37;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card a:hover {
    color: #F4D03F;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
}


/* ========================================
   CTA
======================================== */

.cta {
    padding: 120px 8%;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.85)
        ),
        #242424;
}

.cta-content {
    max-width: 700px;
    margin: auto;
}

.cta h2 {
    margin-bottom: 10px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(50px, 7vw, 85px);
}

.cta p:not(.section-label) {
    margin-bottom: 30px;

    color: #aaa;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    background: #080808;
}

.footer-container {
    max-width: 1250px;

    margin: auto;

    padding: 70px 8%;

    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;

    gap: 50px;
}

.footer-brand p {
    margin-top: 15px;

    color: #777;

    font-size: 13px;
}

.footer h4 {
    margin-bottom: 20px;

    font-size: 12px;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #888;

    font-size: 13px;

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-links a:hover {
    color: #D4AF37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-contact p {
    margin-bottom: 8px;

    color: #888;

    font-size: 13px;
}

.footer-bottom {
    padding: 20px;

    text-align: center;

    border-top: 1px solid #1d1d1d;

    color: #555;

    font-size: 11px;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 900px) {

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-container {
        padding: 16px 20px;
    }

    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about .section-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image {
        min-height: 350px;
    }

    .image-placeholder {
        min-height: 350px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .hero h1 {
        font-size: 60px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 25px 10px;
    }

    .stat strong {
        font-size: 28px;
    }

    .section {
        padding: 80px 6%;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 900px) {

    .nav-links.mobile-open {
        display: flex;

        position: absolute;
        top: 70px;
        left: 0;

        width: 100%;

        padding: 25px;

        flex-direction: column;
        align-items: flex-start;

        background: #111;

        border-bottom: 1px solid #292929;
    }

}

/* ========================================
   PAGE HERO
======================================== */

.page-hero {
    min-height: 55vh;

    padding: 170px 8% 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.9)
        ),
        #191919;
}

.page-hero-content {
    max-width: 800px;
}

.page-hero h1 {
    margin-bottom: 20px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(65px, 9vw, 110px);

    line-height: 0.95;
}

.page-hero-content > p:last-child {
    color: #aaa;
    font-size: 16px;
}


/* ========================================
   PRICING SECTION
======================================== */

.pricing-section {
    padding: 110px 8%;

    background: #0b0b0b;
}

/* ========================================
   PRICING GRID
======================================== */

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 35px;

    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    flex-wrap: wrap;
}


/* ========================================
   PRICING CARDS
======================================== */

.pricing-card {
    width: 100%;
    max-width: 400px;

    min-height: 430px;

    padding: 45px 40px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    background: #151515;

    border: 1px solid #292929;

    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);

    border-color: #e53935;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 700px) {

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        max-width: 100%;

        min-height: 400px;

        padding: 35px 25px;
    }

}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
}

.pricing-card.featured {
    border: 2px solid #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.popular-badge {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translate(-50%, -50%);

    padding: 7px 16px;

    background: linear-gradient(135deg, #D4AF37, #F4D03F);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;
}

.pricing-label {
    margin-bottom: 8px;

    color: #D4AF37;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.pricing-card h3 {
    font-family: "Oswald", sans-serif;

    font-size: 32px;
}

.price {
    margin: 20px 0 5px;

    font-family: "Oswald", sans-serif;

    font-size: 65px;

    line-height: 1;
}

.price span {
    font-size: 30px;
    color: #D4AF37;
}

.price-description {
    color: #777;

    font-size: 13px;
}

.pricing-features {
    margin: 30px 0;

    padding-top: 25px;

    border-top: 1px solid #292929;

    list-style: none;
}

.pricing-features li {
    margin-bottom: 13px;

    color: #aaa;

    font-size: 13px;
}

.pricing-button {
    display: block;

    padding: 14px;

    text-align: center;

    background: #252525;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.pricing-button:hover,
.pricing-card.featured .pricing-button {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}


/* ========================================
   MEMBERSHIPS
======================================== */

.membership-section {
    padding: 110px 8%;

    background: #111;
}

.membership-grid {
    max-width: 1200px;

    margin: 60px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.membership-card {
    position: relative;

    padding: 40px 35px;

    background: linear-gradient(135deg, #1a1a1a 0%, #171717 100%);

    border: 1px solid #292929;

    text-align: center;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.membership-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.membership-featured {
    border-color: #D4AF37;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.membership-badge {
    position: absolute;

    top: 0;
    left: 50%;

    transform: translate(-50%, -50%);

    padding: 7px 15px;

    background: linear-gradient(135deg, #D4AF37, #F4D03F);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    white-space: nowrap;
}

.membership-icon {
    margin-bottom: 15px;

    font-size: 40px;
}

.membership-card h3 {
    font-family: "Oswald", sans-serif;

    font-size: 30px;
}

.membership-price {
    margin: 15px 0;

    font-family: "Oswald", sans-serif;

    font-size: 45px;
}

.membership-price span {
    color: #777;

    font-family: "Poppins", sans-serif;

    font-size: 13px;
}

.membership-card > p {
    min-height: 45px;

    margin-bottom: 25px;

    color: #888;

    font-size: 13px;
}

.membership-card ul {
    padding: 20px 0;

    border-top: 1px solid #292929;

    list-style: none;

    text-align: left;
}

.membership-card li {
    margin-bottom: 12px;

    color: #aaa;

    font-size: 13px;
}

.membership-button {
    display: block;

    padding: 13px;

    background: #252525;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.membership-button:hover {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}


/* ========================================
   PRICING CTA
======================================== */

.pricing-cta {
    padding: 110px 8%;

    background: #0b0b0b;

    text-align: center;
}

.pricing-cta > div {
    max-width: 700px;

    margin: auto;
}

.pricing-cta h2 {
    margin-bottom: 15px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(45px, 6vw, 75px);

    line-height: 1;
}

.pricing-cta p:not(.section-label) {
    margin-bottom: 30px;

    color: #888;
}


/* ========================================
   PRICING MOBILE
======================================== */

@media (max-width: 900px) {

    .pricing-grid,
    .membership-grid {
        grid-template-columns: 1fr;

        max-width: 550px;
    }

    .pricing-card,
    .membership-card {
        width: 100%;
    }

}

@media (max-width: 600px) {

    .page-hero {
        min-height: 45vh;

        padding-top: 140px;
    }

    .pricing-section,
    .membership-section,
    .pricing-cta {
        padding: 80px 6%;
    }

}

/* ========================================
   BOOKING PAGE
======================================== */

.booking-hero {
    min-height: 75vh;

    padding: 170px 8% 100px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.3)
        ),
        url("../images/hero.jpg") center/cover no-repeat;

    background-color: #171717;
}

.booking-hero-content {
    max-width: 800px;
}

.booking-hero h1 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(60px, 8vw, 105px);

    line-height: 0.95;

    margin-bottom: 25px;
}

.booking-hero h1 span {
    color: #D4AF37;
}

.booking-hero-content > p:not(.hero-small) {
    max-width: 600px;

    margin-bottom: 30px;

    color: #aaa;

    font-size: 16px;
}

.booking-main-button {
    min-width: 190px;
}


/* ========================================
   BOOKING STEPS
======================================== */

.booking-info {
    padding: 110px 8%;

    background: #111;
}

.booking-steps {
    max-width: 1100px;

    margin: 60px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.booking-step {
    position: relative;

    padding: 45px 30px;

    background: linear-gradient(135deg, #1a1a1a 0%, #171717 100%);

    border: 1px solid #292929;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.booking-step:hover {
    transform: translateY(-10px) scale(1.02);

    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.step-number {
    position: absolute;

    top: 15px;
    right: 20px;

    color: #333;

    font-family: "Oswald", sans-serif;

    font-size: 40px;
}

.step-icon {
    margin-bottom: 15px;

    font-size: 35px;
}

.booking-step h3 {
    margin-bottom: 12px;

    font-family: "Oswald", sans-serif;

    font-size: 27px;
}

.booking-step p {
    color: #888;

    font-size: 13px;
}


/* ========================================
   BOOKING FEATURES
======================================== */

.booking-features {
    padding: 110px 8%;

    background: #0b0b0b;
}

.booking-features-container {
    max-width: 1200px;

    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.booking-feature-content > p:not(.section-label) {
    max-width: 550px;

    margin-bottom: 25px;

    color: #999;

    font-size: 15px;
}

.booking-feature-content h2 {
    margin-bottom: 25px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(45px, 5vw, 70px);

    line-height: 1;
}

.booking-feature-content h2 span {
    color: #D4AF37;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 15px;
}

.feature-item span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #D4AF37, #F4D03F);

    font-weight: 700;
}

.feature-item p {
    color: #bbb;

    font-size: 13px;
}

.booking-feature-image {
    min-height: 500px;
}

.booking-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #242424,
            #111
        );

    border: 1px solid #292929;

    color: #555;

    font-family: "Oswald", sans-serif;

    letter-spacing: 2px;
}


/* ========================================
   BOOKING CTA
======================================== */

.booking-cta {
    padding: 120px 8%;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.9)
        ),
        #222;
}

.booking-cta > div {
    max-width: 700px;

    margin: auto;
}

.booking-cta h2 {
    margin-bottom: 10px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(50px, 7vw, 85px);

    line-height: 1;
}

.booking-cta p:not(.section-label) {
    margin-bottom: 30px;

    color: #999;
}


/* ========================================
   BOOKING MOBILE
======================================== */

@media (max-width: 900px) {

    .booking-steps {
        grid-template-columns: 1fr;

        max-width: 550px;
    }

    .booking-features-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .booking-feature-image {
        min-height: 350px;
    }

    .booking-image-placeholder {
        min-height: 350px;
    }

}

@media (max-width: 600px) {

    .booking-hero {
        min-height: 70vh;

        padding: 140px 6% 80px;
    }

    .booking-info,
    .booking-features,
    .booking-cta {
        padding: 80px 6%;
    }

}

/* ========================================
   LESSONS PAGE
======================================== */

.lessons-hero {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.9)
        ),
        url("../images/hero.jpg") center/cover no-repeat;

    background-color: #191919;
}


/* ========================================
   LESSONS INTRO
======================================== */

.lessons-intro {
    padding: 110px 8%;

    background: #0b0b0b;
}

.lessons-intro-container {
    max-width: 1200px;

    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}

.lessons-intro h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(50px, 6vw, 80px);

    line-height: 0.95;
}

.lessons-intro h2 span {
    color: #D4AF37;
}

.lessons-intro-text p {
    margin-bottom: 20px;

    color: #999;

    font-size: 15px;
}


/* ========================================
   LESSON TYPES
======================================== */

.lesson-types {
    padding: 110px 8%;

    background: #111;
}

.lesson-grid {
    max-width: 1200px;

    margin: 60px auto 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.lesson-card {
    position: relative;

    padding: 45px 40px;

    background: linear-gradient(135deg, #1a1a1a 0%, #171717 100%);

    border: 1px solid #292929;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lesson-card:hover {
    transform: translateY(-12px) scale(1.02);

    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.lesson-card-number {
    position: absolute;

    top: 20px;
    right: 25px;

    color: #333;

    font-family: "Oswald", sans-serif;

    font-size: 45px;
}

.lesson-icon {
    margin-bottom: 15px;

    font-size: 40px;
}

.lesson-card h3 {
    margin-bottom: 15px;

    font-family: "Oswald", sans-serif;

    font-size: 32px;
}

.lesson-card > p {
    margin-bottom: 25px;

    color: #888;

    font-size: 14px;
}

.lesson-card ul {
    padding-top: 20px;

    border-top: 1px solid #292929;

    list-style: none;
}

.lesson-card li {
    margin-bottom: 10px;

    color: #aaa;

    font-size: 13px;
}


/* ========================================
   LESSON OPTIONS
======================================== */

.lesson-options {
    padding: 110px 8%;

    background: #0b0b0b;
}

.lesson-options-grid {
    max-width: 1200px;

    margin: 50px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.lesson-option {
    position: relative;

    padding: 40px 35px;

    background: linear-gradient(135deg, #1a1a1a 0%, #151515 100%);

    border: 1px solid #292929;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lesson-option:hover {
    border-color: #D4AF37;

    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 45px rgba(212, 175, 55, 0.25);
}

.option-number {
    display: block;

    margin-bottom: 25px;

    color: #D4AF37;

    font-family: "Oswald", sans-serif;

    font-size: 35px;
}

.lesson-option h3 {
    margin-bottom: 15px;

    font-family: "Oswald", sans-serif;

    font-size: 27px;
}

.lesson-option p {
    min-height: 80px;

    margin-bottom: 25px;

    color: #888;

    font-size: 13px;
}

.lesson-option a {
    color: #D4AF37;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lesson-option a:hover {
    color: #F4D03F;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.6);
}


/* ========================================
   LESSON CTA
======================================== */

.lessons-cta {
    padding: 120px 8%;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.9)
        ),
        #222;
}

.lessons-cta > div {
    max-width: 700px;

    margin: auto;
}

.lessons-cta h2 {
    margin-bottom: 20px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(55px, 7vw, 90px);

    line-height: 0.9;
}

.lessons-cta h2 span {
    color: #D4AF37;
}

.lessons-cta p:not(.section-label) {
    margin-bottom: 30px;

    color: #999;
}


/* ========================================
   LESSONS MOBILE
======================================== */

@media (max-width: 900px) {

    .lessons-intro-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .lesson-grid {
        grid-template-columns: 1fr;

        max-width: 600px;
    }

    .lesson-options-grid {
        grid-template-columns: 1fr;

        max-width: 600px;
    }

}

@media (max-width: 600px) {

    .lessons-intro,
    .lesson-types,
    .lesson-options,
    .lessons-cta {
        padding: 80px 6%;
    }

}

/* ========================================
   GALLERY PAGE
======================================== */

.gallery-hero {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.9)
        ),
        url("../images/hero.jpg") center/cover no-repeat;

    background-color: #191919;
}


/* ========================================
   GALLERY INTRO
======================================== */

.gallery-intro {
    padding: 100px 8% 50px;

    background: #0b0b0b;
}

.gallery-intro .section-heading {
    max-width: 750px;
}

.gallery-intro h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(50px, 6vw, 80px);

    line-height: 0.9;
}

.gallery-intro h2 span {
    color: #D4AF37;
}


/* ========================================
   GALLERY GRID
======================================== */

.gallery-section {
    padding: 50px 6% 110px;

    background: #0b0b0b;
}

.gallery-grid {
    max-width: 1400px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    grid-auto-rows: 300px;

    gap: 12px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    background: linear-gradient(135deg, #1a1a1a 0%, #171717 100%);

    border: 1px solid #252525;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item.gallery-large {
    grid-row: span 2;
}

.gallery-item.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 45px 25px 22px;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.9)
        );

    opacity: 0;

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;

    font-family: "Oswald", sans-serif;

    font-size: 20px;

    letter-spacing: 1px;
}


/* ========================================
   GALLERY FEATURES
======================================== */

.gallery-features {
    padding: 110px 8%;

    background: #111;
}

.gallery-feature-grid {
    max-width: 1100px;

    margin: 50px auto 0;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.gallery-feature {
    padding: 40px 30px;

    background: linear-gradient(135deg, #1a1a1a 0%, #171717 100%);

    border: 1px solid #292929;

    text-align: center;

    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-feature:hover {
    transform: translateY(-10px) scale(1.03);

    border-color: #D4AF37;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.gallery-feature-icon {
    margin-bottom: 18px;

    font-size: 38px;
}

.gallery-feature h3 {
    margin-bottom: 12px;

    font-family: "Oswald", sans-serif;

    font-size: 27px;
}

.gallery-feature p {
    color: #888;

    font-size: 13px;
}


/* ========================================
   GALLERY CTA
======================================== */

.gallery-cta {
    padding: 120px 8%;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.92)
        ),
        #222;
}

.gallery-cta > div {
    max-width: 700px;

    margin: auto;
}

.gallery-cta h2 {
    margin-bottom: 20px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(55px, 7vw, 90px);

    line-height: 0.9;
}

.gallery-cta h2 span {
    color: #D4AF37;
}

.gallery-cta p:not(.section-label) {
    margin-bottom: 30px;

    color: #999;
}


/* ========================================
   GALLERY MOBILE
======================================== */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 250px;
    }

    .gallery-item.gallery-wide {
        grid-column: span 2;
    }

    .gallery-feature-grid {
        grid-template-columns: 1fr;

        max-width: 550px;
    }

}

@media (max-width: 600px) {

    .gallery-intro,
    .gallery-section,
    .gallery-features,
    .gallery-cta {
        padding-left: 6%;
        padding-right: 6%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-auto-rows: 300px;
    }

    .gallery-item.gallery-large {
        grid-row: span 1;
    }

    .gallery-item.gallery-wide {
        grid-column: span 1;
    }

}

/* ========================================
   CONTACT PAGE
======================================== */

.contact-hero {
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.92)
        ),
        url("../images/hero.jpg") center/cover no-repeat;

    background-color: #191919;
}


/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
    padding: 110px 8%;

    background: #0b0b0b;
}

.contact-container {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 80px;

    align-items: start;
}


/* ========================================
   CONTACT INFO
======================================== */

.contact-info h2 {
    margin-bottom: 25px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(50px, 5vw, 70px);

    line-height: 0.95;
}

.contact-info h2 span {
    color: #D4AF37;
}

.contact-intro {
    max-width: 500px;

    margin-bottom: 40px;

    color: #999;

    font-size: 14px;
}

.contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #191919;

    border: 1px solid #292929;

    font-size: 18px;
}

.contact-detail h3 {
    margin-bottom: 5px;

    font-family: "Oswald", sans-serif;

    font-size: 17px;

    letter-spacing: 0.5px;
}

.contact-detail p {
    color: #888;

    font-size: 13px;
}

.contact-detail a {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-detail a:hover {
    color: #D4AF37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}


/* ========================================
   CONTACT FORM
======================================== */

.contact-form-wrapper {
    padding: 45px;

    background: #151515;

    border: 1px solid #292929;
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    margin-bottom: 8px;

    font-family: "Oswald", sans-serif;

    font-size: 32px;
}

.contact-form-header p:last-child {
    color: #777;

    font-size: 13px;
}

.contact-form {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: #bbb;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.form-group label span {
    color: #555;

    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #303030;

    outline: none;

    background: #0e0e0e;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group select {
    color: #777;

    cursor: pointer;
}

.form-group select option {
    background: #111;

    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #D4AF37;

    box-shadow:
        0 0 0 2px rgba(255, 215, 0, 0.08);
}

.form-group textarea {
    resize: vertical;

    min-height: 140px;
}

.contact-submit {
    width: 100%;

    padding: 16px 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    border: none;

    background: linear-gradient(135deg, #D4AF37, #F4D03F);

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.contact-submit:hover {
    background: linear-gradient(135deg, #F4D03F, #FFE66D);

    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    animation: goldShimmer 0.6s ease-in-out;
}

.contact-submit span {
    font-size: 18px;
}

.form-note {
    text-align: center;

    color: #555;

    font-size: 11px;
}


/* ========================================
   CONTACT CTA
======================================== */

.contact-cta {
    padding: 120px 8%;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.92)
        ),
        #222;
}

.contact-cta > div {
    max-width: 700px;

    margin: auto;
}

.contact-cta h2 {
    margin-bottom: 20px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(55px, 7vw, 90px);

    line-height: 0.9;
}

.contact-cta h2 span {
    color: #D4AF37;
}

.contact-cta p:not(.section-label) {
    margin-bottom: 30px;

    color: #999;
}


/* ========================================
   CONTACT MOBILE
======================================== */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 60px;

        max-width: 700px;
    }

}

@media (max-width: 600px) {

    .contact-section,
    .contact-cta {
        padding: 80px 6%;
    }

    .contact-form-wrapper {
        padding: 30px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}

/* ========================================
   PAGE LOADER
======================================== */

@keyframes goldShimmer {
    0% {
        text-shadow: 0 0 0 rgba(255, 230, 109, 0);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 230, 109, 0.8);
    }
    100% {
        text-shadow: 0 0 0 rgba(255, 230, 109, 0);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
    }
}

#page-loader {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0d0d0d;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;

    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-ball {
    font-size: 55px;

    margin-bottom: 15px;

    animation:
        loaderSpin 1s linear infinite;
}

.loader-content p {
    margin: 0;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: 14px;

    letter-spacing: 3px;
}

@keyframes loaderSpin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

/* ========================================
   404 PAGE
======================================== */

.error-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background:
        radial-gradient(
            circle at center,
            #191919 0%,
            #0d0d0d 65%
        );

    text-align: center;
}

.error-content {
    max-width: 750px;
}

.error-ball {
    margin-bottom: 25px;

    font-size: 70px;

    animation:
        errorFloat 2s ease-in-out infinite;
}

.error-content h1 {
    margin-bottom: 25px;

    font-family: "Oswald", sans-serif;

    font-size: clamp(60px, 9vw, 110px);

    line-height: 0.88;
}

.error-content h1 span {
    color: #D4AF37;
}

.error-content > p:not(.section-label) {
    max-width: 550px;

    margin: 0 auto 35px;

    color: #888;

    font-size: 14px;
}

@keyframes errorFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}

/* ========================================
   MOBILE NAVIGATION
======================================== */

.menu-toggle {
    display: none;

    width: 45px;
    height: 45px;

    padding: 10px;

    border: 1px solid #333;

    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 23px;
    height: 2px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 900px) {

    .nav-container {
        position: relative;
    }

    .nav-links {
        position: absolute;

        top: calc(100% + 1px);
        left: 0;
        right: 0;

        display: flex;

        flex-direction: column;

        gap: 0;

        background: rgba(13, 13, 13, 0.98);

        border-top: 1px solid #292929;
        border-bottom: 1px solid #292929;

        overflow: hidden;

        max-height: 0;

        opacity: 0;

        visibility: hidden;

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }


    .nav-links.active {
        max-height: 500px;

        opacity: 1;

        visibility: visible;
    }


    .nav-links a {
        width: 100%;

        padding: 17px 25px;

        border-bottom: 1px solid #222;

        font-size: 13px;

        text-align: left;
    }


    .nav-links a:last-child {
        border-bottom: none;
    }


    .nav-links a:hover {
        background: #181818;

        color: #D4AF37;
        text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }


    .nav-button {
        display: none;
    }


    .menu-toggle {
        display: flex;

        margin-left: auto;
    }


    /* HAMBURGER → X */

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

}

/* ========================================
   SOCIAL LINKS
======================================== */

.social-links {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.social-links a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #333;

    background: #151515;

    color: #ffffff;

    font-family: "Oswald", sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.5px;

    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.social-links a:hover {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);

    border-color: #D4AF37;

    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ========================================
   GOOGLE MAP
======================================== */

.map-section {
    padding: 0 8% 110px;

    background: #0b0b0b;
}

.map-container {
    max-width: 1200px;

    margin: auto;
}

.map-heading {
    margin-bottom: 35px;
}

.map-heading h2 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(50px, 5vw, 70px);

    line-height: 0.9;
}

.map-heading h2 span {
    color: #D4AF37;
}

.map-wrapper {
    width: 100%;

    height: 450px;

    overflow: hidden;

    border: 1px solid #292929;

    background: #151515;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* MOBILE */

@media (max-width: 600px) {

    .map-section {
        padding: 0 6% 80px;
    }

    .map-wrapper {
        height: 350px;
    }

}

/* ========================================
   FOOTER
======================================== */

.footer {
    background: #080808;

    border-top: 1px solid #222;

    padding: 75px 8% 0;
}

.footer-container {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1.2fr
        1fr;

    gap: 50px;

    padding-bottom: 65px;
}


/* BRAND */

.footer-brand .logo {
    display: inline-block;

    margin-bottom: 15px;
}

.footer-brand > p {
    max-width: 220px;

    color: #666;

    font-size: 13px;

    line-height: 1.7;
}


/* SOCIALS */

.social-links {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.social-links a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #292929;

    background: #111;

    color: #fff;

    font-family: Arial, sans-serif;

    font-size: 19px;
    font-weight: bold;

    text-decoration: none;

    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.social-links a:hover {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);

    border-color: #D4AF37;

    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}


/* FOOTER HEADINGS */

.footer h4 {
    margin: 5px 0 20px;

    color: #fff;

    font-family: "Oswald", sans-serif;

    font-size: 17px;

    letter-spacing: 1px;
}


/* FOOTER LINKS */

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-links a {
    margin-bottom: 10px;

    color: #777;

    font-size: 13px;

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-links a:hover {
    color: #D4AF37;

    padding-left: 8px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}


/* CONTACT */

.footer-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-contact p,
.footer-contact a {
    margin-bottom: 10px;

    color: #777;

    font-size: 13px;

    line-height: 1.6;

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-contact a:hover {
    color: #D4AF37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}


/* BOOKING */

.footer-book p {
    max-width: 230px;

    margin-bottom: 20px;

    color: #777;

    font-size: 13px;

    line-height: 1.6;
}

.footer-book-button {
    display: inline-block;

    padding: 13px 20px;

    background: linear-gradient(135deg, #D4AF37, #F4D03F);

    color: #fff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.footer-book-button:hover {
    background: linear-gradient(135deg, #F4D03F, #FFE66D);

    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}


/* ========================================
   FOOTER BOTTOM
======================================== */

.footer-bottom {
    max-width: 1250px;

    margin: auto;

    padding: 22px 0;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top: 1px solid #202020;
}

.footer-bottom p {
    color: #555;

    font-size: 11px;
}

.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-bottom-links a {
    color: #555;

    font-size: 11px;

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-bottom-links a:hover {
    color: #D4AF37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.footer-bottom-links span {
    color: #333;
}


/* ========================================
   FOOTER MOBILE
======================================== */

@media (max-width: 950px) {

    .footer-container {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 45px;
    }

}


@media (max-width: 600px) {

    .footer {
        padding: 60px 7% 0;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 45px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

}
