@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
    color-scheme: dark;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

}

:root {
    --primary-color: #0A0A0A;
    --secondary-color: #F4AF76;
    --accent-gold: #D88F57;
    --font-primary: "Barlow", sans-serif;
    --font-secondary: "Barlow Condensed", sans-serif;
    --font-accent: "Anton", sans-serif;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --nav-height: 90px;
}

body {
    background-color: var(--primary-color);
    color: var(--text-white);
    font-family: var(--font-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 3.5px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/*NAVBAR STYLE */
.celsius-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: #0A0A0A;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 78px;
    display: block;
}

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

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 22px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-phone {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.nav-phone i {
    font-size: 17px;
}

.nav-phone:hover {
    color: var(--secondary-color);
}

.btn-book {
    background: linear-gradient(90deg, #c26d34 0%, #d98d56 20%, #f4af76 40%, #e9cca8 50%, #f4af76 60%, #d98d56 80%, #b3632d 100%);
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 1.5px;
    padding: 16px 28px;
    border: none;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 143, 87, 0.4);
}

.burger-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* ==========================================================================
   MOBILE MENU PANEL STYLE
   ========================================================================== */
.mobile-menu-panel {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 75vh;
    background-color: #0E0E0E;
    z-index: 200;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    padding: 24px 24px 32px 24px;
    transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.mobile-menu-panel.open {
    top: 0;
}

body.menu-open .celsius-nav {
    display: none;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.menu-logo {
    height: 38px;
}

.menu-close-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 28px;
    cursor: pointer;
}

.menu-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

.menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-links a {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.menu-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white) !important;
}

.mobile-menu-phone i {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.mobile-menu-book-btn {
    display: inline-block;
    background: linear-gradient(90deg, #B26B38 0%, #D88F57 100%);
    color: var(--text-white) !important;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    margin-top: 10px;
}

.menu-bottom-image {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 24px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.menu-bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-image-track {
    display: flex;
    gap: 12px;
    width: max-content;
    height: 100%;
    animation: menuImageSlideStep 12s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.menu-image-track:hover {
    animation-play-state: paused;
}

.menu-image-item {
    flex: 0 0 250px;
    width: 250px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.menu-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes menuImageSlideStep {
    0%, 20% {
        transform: translateX(0);
    }
    23%, 43% {
        transform: translateX(-262px);
    }
    46%, 66% {
        transform: translateX(-524px);
    }
    69%, 89% {
        transform: translateX(-786px);
    }
    92%, 100% {
        transform: translateX(-1048px);
    }
}

/* HERO SECTION STYLE*/
.celsius-hero-section {
    position: relative;
    height: calc(100vh - var(--nav-height));
    margin-top: var(--nav-height);
    background-image: url('../assets/celcius-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 30%, rgba(10, 10, 10, 0.5) 60%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 40px;
}

.hero-content {
    max-width: 780px;
    margin-bottom: 40px;
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.tag-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 100px;
    line-height: 1.05;
    letter-spacing: 6px;
    color: var(--text-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    font-weight: 500;
}

.highlight-text {
    color: var(--secondary-color);
}

.hero-desc {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 780px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: linear-gradient(90deg, #c26d34 0%, #d98d56 20%, #f4af76 40%, #e9cca8 50%, #f4af76 60%, #d98d56 80%, #b3632d 100%);
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1.5px;
    padding: 18px 36px;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 143, 87, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1.5px;
    padding: 18px 36px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.scroll-text {
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-white);
    writing-mode: vertical-lr;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    animation: scrollAnimation 2s infinite ease-in-out;
}

@keyframes scrollAnimation {
    0% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(0);
    }

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

/* ==========================================================================
   TRACK / RUNNING BANNER STYLE
   ========================================================================== */
.celsius-track {
    background: linear-gradient(90deg, #c26d34 0%, #d98d56 20%, #f4af76 40%, #d1a773 50%, #f4af76 60%, #d98d56 80%, #b3632d 100%);
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
    display: flex;
}

.track-wrapper {
    display: flex;
    width: max-content;
}

.track-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 30s linear infinite;
    padding-left: 20px;
}

.track-content span {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
}

.track-plus {
    margin: 0 30px;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 400;
}

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

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


/* ==========================================================================
   COUNTERS SECTION STYLE
   ========================================================================== */
.celcius-counters-section {
    background-color: var(--primary-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0;
}

.counters-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-value {
    font-family: var(--font-secondary);
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #c26d34 0%, #d98d56 20%, #f4af76 40%, #e9cca8 50%, #f4af76 60%, #d98d56 80%, #b3632d 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.counter-number-static {
    font-family: var(--font-secondary);
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #c26d34 0%, #d98d56 20%, #f4af76 40%, #e9cca8 50%, #f4af76 60%, #d98d56 80%, #b3632d 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.counter-label {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================================================
   WHO WE ARE SECTION STYLE
   ========================================================================== */
.celcius-who-we-are-section {
    background-color: var(--primary-color);
    padding: 120px 0;
}

.who-we-are-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.who-we-are-left {
    flex: 1;
    position: relative;
}

.who-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.15;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.eco-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #B26B38 0%, #D88F57 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(216, 143, 87, 0.4);
    z-index: 2;
}

.eco-icon {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.eco-text {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
    margin-top: 4px;
    letter-spacing: 1px;
}

.who-we-are-right {
    flex: 1.2;
}

.who-tagline {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.who-title {
    font-family: var(--font-accent);
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.who-desc {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: #121212;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    border-color: rgba(244, 175, 118, 0.2);
}

.feature-icon-container {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-container img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.feature-info h3 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.feature-info p {
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-gray);
}

/* ==========================================================================
   PRICING SECTION STYLE
   ========================================================================== */
.celcius-pricing-section {
    background-color: var(--primary-color);
    padding: 0 0 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header-container {
    max-width: 1700px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
    text-align: center;
}

.pricing-tag {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    display: block;
}

.pricing-title {
    font-family: var(--font-accent);
    font-size: 64px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.pricing-desc {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-gray);
}

.pricing-cards-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    width: 100%;
    max-width: 100%;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(244, 175, 118, 0.12);
}

.badge-best-value {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(90deg, #c26d34 0%, #d98d56 20%, #f4af76 40%, #e9cca8 50%, #f4af76 60%, #d98d56 80%, #b3632d 100%);
    color: var(--primary-color);
    font-family: var(--font-secondary);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-duration {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    margin-bottom: 25px;
}

.card-period {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.duration-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
}

.duration-pill {
    background: rgba(244, 175, 118, 0.08);
    border: 1px solid rgba(244, 175, 118, 0.25);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.duration-pill:hover {
    background: rgba(244, 175, 118, 0.18);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.card-features {
    list-style: none;
    width: 100%;
    margin-bottom: 25px;
    flex: 1;
}

.card-features li {
    font-size: 16px;
    color: var(--text-gray);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-features li i {
    color: var(--secondary-color);
    font-size: 16px;
}

.annual-exclusive {
    color: var(--secondary-color) !important;
    font-weight: 600;
    background-color: rgba(244, 175, 118, 0.05);
    padding: 12px 16px;
    border-bottom: none !important;
    border-left: 3px solid var(--secondary-color);
    font-size: 16px;
    margin-bottom: 24px;
    margin-top: 24px;
}

.btn-card-action {
    width: 100%;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.pricing-card:hover .btn-card-action {
    background: linear-gradient(90deg, #c26d34 0%, #d98d56 20%, #f4af76 40%, #e9cca8 50%, #f4af76 60%, #d98d56 80%, #b3632d 100%);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(216, 143, 87, 0.4);
}

/* ==========================================================================
   SIX ZONES (WHAT'S INSIDE) STYLE
   ========================================================================== */
.celcius-inside-section {
    background-color: var(--primary-color);
    padding: 120px 0;
}

.inside-header-container {
    max-width: 1700px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.inside-header-left {
    flex: 1;
}

.inside-tag {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    display: block;
}

.inside-title {
    font-family: var(--font-accent);
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
}

.inside-header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.inside-desc {
    max-width: 500px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    text-align: right;
}

.zones-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 280px 280px 280px;
    gap: 30px;
}

/* Enable display contents on desktop so items position relative to grid parent */
.zones-swipe-wrapper {
    display: contents;
}

.zone-box {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.zone-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.zone-box-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(10, 10, 10, 0.1) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.zone-box:hover .zone-bg-img {
    transform: scale(1.05);
}

.zone-box:hover .zone-box-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.5) 60%, rgba(10, 10, 10, 0.2) 100%);
}

.zone-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100%;
}

.zone-number {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.zone-title {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.zone-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 16px;
}

.zone-badge {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    background: rgba(244, 175, 118, 0.05);
}

.badge-addon {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    background: rgba(226, 106, 106, 0.05);
}

.badge-eco {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    background: rgba(163, 217, 201, 0.05);
}

/* Grid Coordinates for 6-column Grid Desktop */
.zone-box-1 {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.zone-box-2 {
    grid-column: 5 / 7;
    grid-row: 1;
}

.zone-box-3 {
    grid-column: 5 / 7;
    grid-row: 2;
}

.zone-box-4 {
    grid-column: 1 / 3;
    grid-row: 3;
}

.zone-box-5 {
    grid-column: 3 / 5;
    grid-row: 3;
}

.zone-box-6 {
    grid-column: 5 / 7;
    grid-row: 3;
}

/* ==========================================================================
   CO-WORK SECTION STYLE
   ========================================================================== */
.celcius-work-section {
    background-color: var(--primary-color);
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.work-container {
    display: flex;
    width: 100%;
    min-height: 700px;
}

.work-left {
    flex: 1;
    position: relative;
}

.work-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.work-right {
    flex: 1;
    background-color: #0A0A0A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 2%;
}

.work-tag {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    display: block;
}

.work-title {
    font-family: var(--font-accent);
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.work-desc {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.work-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.work-bullets li {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bullet-star {
    color: var(--secondary-color);
    font-size: 18px;
}

/*CLASSES SLIDER SECTION STYLE*/
.celcius-classes-section {
    background-color: var(--primary-color);
    padding: 120px 0;
    overflow: hidden;
}

.classes-header-container {
    max-width: 1700px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
}

.classes-tag {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    display: block;
}

.classes-title {
    font-family: var(--font-accent);
    font-size: 80px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
}

.classes-slider-window {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
    position: relative;
}

.classes-slider-track {
    display: flex;
    gap: 30px;
    cursor: grab;
    user-select: none;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.class-card {
    flex: 0 0 calc(33.333% - 20px);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 30px;
    text-decoration: none;
    color: var(--text-white);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.class-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(244, 175, 118, 0.12);
}

.class-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.class-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.5) 60%, rgba(10, 10, 10, 0.1) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

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

.class-card:hover .class-card-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.6) 60%, rgba(10, 10, 10, 0.2) 100%);
}

.class-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.class-title-text {
    font-family: var(--font-secondary);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.class-desc-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.class-book-btn {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.class-card:hover .class-book-btn {
    color: var(--text-white);
}

.class-book-btn::after {
    content: "→";
    transition: transform 0.3s ease;
}

.class-card:hover .class-book-btn::after {
    transform: translateX(5px);
}


.celcius-games-section {
    position: relative;
    background-image: url('../assets/games3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-image 0.5s ease-in-out;
}

.games-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 10, 10, 0.623) 0%, rgba(10, 10, 10, 0.938) 80%);
    z-index: 1;
}

.games-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.games-nav-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.game-nav-btn {
    background: transparent;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.game-nav-btn i {
    color: var(--text-white);
    font-size: 40px;
    transition: color 0.4s ease;
}

.game-nav-btn:hover {
    transform: scale(1.1);
}



.game-nav-btn.active i {
    color: var(--secondary-color);
}

.games-content-block {
    max-width: 800px;
    margin: 0 auto;
    min-height: 150px;
}

.games-content-title {
    font-family: var(--font-accent);
    font-size: 80px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.games-content-desc {
    font-size: 24px;
    line-height: 1.6;
    /* color: var(--text-gray); */
    transition: opacity 0.3s ease, transform 0.3s ease;
}


/* ==========================================================================
   WHY CELSIUS SECTION STYLE
   ========================================================================== */
.celcius-why-section {
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('../assets/fitness1.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.why-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-tag {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    display: block;
}

.why-title {
    font-family: var(--font-accent);
    font-size: 80px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 60px;
    text-transform: uppercase;
    max-width: 1100px;
}

.why-content-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.why-left-media {
    flex: 1.1;
}

.why-left-media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.why-right-content {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-main-desc {
    font-size: 20px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.why-grid-item {
    background-color: #1A1A1A;
    border-radius: 16px;
    padding: 20px;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-grid-item h3 {
    font-family: var(--font-secondary);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.why-grid-item p {
    font-size: 20px;
    line-height: 1.3;
    color: var(--text-gray);
}

/*BOOKINGS SECTION STYLE*/
.celcius-booking-section {
    background-color: var(--primary-color);
    padding: 120px 0;
}

.booking-header {
    max-width: 1700px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
    text-align: center;
}

.booking-tag {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #c28336 50%,
            #a55c20 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    display: block;
}

.booking-title {
    font-family: var(--font-accent);
    font-size: 80px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    line-height: 1.2;
}

.booking-desc {
    font-size: 18px;
    color: #777777;
    max-width: 700px;
    margin: 0 auto;
}

.booking-grid {
    max-width: 1700px;
    margin: 0 auto 60px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.booking-box {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    position: relative;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.booking-box:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 25px rgba(244, 175, 118, 0.08);
    transform: translateY(-4px);
}

.booking-box-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    height: 36px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
}

.booking-box-info h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 6px;
    text-transform: uppercase;
    max-width: calc(100% - 40px);
}

.booking-box-info p {
    font-size: 16px;
    color: var(--text-gray);
}

.btn-book-slot {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    margin-top: 20px;
}

.booking-box:hover .btn-book-slot {
    color: var(--text-white);
}

.btn-book-slot span {
    transition: transform 0.3s ease;
}

.booking-box:hover .btn-book-slot span {
    transform: translateX(4px);
}

.booking-callout-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.booking-callout {
    background-color: #121212;
    border: 1px solid var(--secondary-color);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 20px auto;
    text-align: left;
}

.callout-text-block h3 {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-white);
    margin-bottom: 6px;
}

.callout-text-block p {
    font-size: 18px;
    color: var(--text-gray);
}

.callout-phone-number i {
    color: var(--secondary-color);
}

.callout-phone-block a {
    font-family: var(--font-secondary);
    font-size: 30px;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s ease;
}

.callout-phone-block a:hover {
    color: var(--text-white);
}

.callout-subtext {
    font-size: 15px;
    color: var(--text-gray);
}


/* INSTAGRAM SECTION STYLE */
.celcius-insta-section {
    background-color: #000000;
    padding: 100px 0;
    border-bottom: 1px solid rgb(0, 0, 0);
}

.insta-header {
    max-width: 1700px;
    margin: 0 auto 50px auto;
    padding: 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.insta-tag {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    display: block;
}

.insta-title {
    font-family: var(--font-accent);
    font-size: 64px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.insta-link {
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.insta-link:hover {
    color: var(--text-white);
}

.insta-marquee-window {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.insta-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: insta-marquee 45s linear infinite;
}

.insta-marquee-track:hover {
    animation-play-state: paused;
}

.insta-marquee-track .insta-post-wrapper {
    flex: 0 0 326px !important;
    min-width: 326px !important;
    max-width: 326px !important;
    height: 326px !important;
    margin: 0 !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3) !important;
    border-radius: 8px !important;
    overflow: hidden;
    position: relative;
}

.insta-marquee-track .insta-post-wrapper iframe,
.insta-marquee-track .insta-post-wrapper blockquote {
    position: absolute !important;
    top: -54px !important;
    left: 0 !important;
    width: 326px !important;
    min-width: 326px !important;
    max-width: 326px !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
}


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

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

/* ==========================================================================
   CTA SECTION STYLE
   ========================================================================== */
.celcius-cta-section {
    position: relative;
    padding: 160px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url('../assets/fitness5.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-title {
    font-family: var(--font-accent);
    font-size: 100px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 24px;
    text-transform: uppercase;

    /* Gradient text */
    background: linear-gradient(90deg,
            #c26d34 0%,
            #d98d56 20%,
            #f4af76 40%,
            #e9cca8 50%,
            #f4af76 60%,
            #d98d56 80%,
            #b3632d 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.cta-desc {
    font-size: 32px;
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.btn-cta-trial {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-gold) 100%);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 10px 20px rgba(244, 175, 118, 0.2);
}

.btn-cta-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(244, 175, 118, 0.3);
}

.btn-cta-phone {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-cta-phone:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER SECTION STYLE
   ========================================================================== */
.celcius-footer-section {
    background-color: #0A0A0A;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-row {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.brand-col {
    flex: 2;
    min-width: 320px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 30px;
    display: block;
}

.brand-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 500px;
}

.footer-col h3 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col ul a {
    font-size: 16px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--secondary-color);
}

.contact-col p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-col a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-col a:hover {
    color: var(--secondary-color);
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 28%;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-bottom-left p {
    font-size: 16px;
    color: var(--text-gray);
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.feel-the-burn {
    font-family: var(--font-accent);
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
}


/*MEDIA QUERIES (AS REQUESTED)*/

/* 1. LARGE SCREEN ADJUSTMENTS */
@media (min-width: 1200px) and (max-width: 1439px) {

    .nav-container,
    .hero-container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 72px;
    }

    .hero-content {
        max-width: 680px;
    }

    .phone-nav {
        display: none;
    }

    .nav-links a {
        font-size: 16px;
    }

    .nav-logo img {
        height: 46px;
    }

    .btn-book {
        font-size: 18px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .btn-book {
        padding: 12px 28px;
    }

    .who-tagline,
    .pricing-tag,
    .inside-tag,
    .work-tag,
    .classes-tag,
    .booking-tag,
    .why-tag {
        font-size: 13px;
    }

    .who-title,
    .pricing-title,
    .card-duration,
    .inside-title,
    .work-title,
    .classes-title,
    .games-content-title,
    .booking-title,
    .insta-title {
        font-size: 48px;
    }

    .why-title {
        font-size: 48px;
        max-width: 700px;
    }

    .who-desc,
    .pricing-desc,
    .inside-desc,
    .work-desc,
    .why-main-desc {
        font-size: 17px;
    }

    .feature-info h3 {
        font-size: 17px;
    }

    .feature-info p {
        font-size: 17px;
    }

    .pricing-cards-container {
        gap: 14px;
    }

    .annual-exclusive {
        font-size: 10px;
        padding: 12px 10px;
        border-left: 2px solid var(--secondary-color);
    }

    .btn-card-action {
        font-size: 17px;
    }

    .card-features li,
    .booking-box-info p {
        font-size: 14px;
    }

    .zone-title {
        font-size: 28px;
    }

    .zone-desc {
        font-size: 16px;
    }

    .zone-number {
        font-size: 14px;
    }

    .work-bullets li {
        font-size: 16px;
    }

    .why-grid-item h3 {
        font-size: 19px;
    }

    .why-grid-item p {
        font-size: 15px;
    }

    .booking-box-info h3,
    .callout-phone-block a {
        font-size: 21px;
    }

    .btn-book-slot {
        font-size: 18px;
    }

    .booking-box-icon {
        height: 25px;
    }

    .callout-text-block h3 {
        font-size: 25px;
    }

    .cta-title {
        font-size: 78px;
    }

    .cta-desc {
        font-size: 28px;
    }

    .btn-cta-trial,
    .btn-cta-phone {
        font-size: 20px;
    }

    .feel-the-burn {
        font-size: 24px;
    }
}

/* 2. MINI DESKTOPS & LANDSCAPE TABLETS */
@media (min-width: 992px) and (max-width: 1199px) {

    .nav-container,
    .hero-container {
        padding: 0 24px;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-right {
        gap: 20px;
    }

    .btn-book {
        padding: 12px 20px;
        font-size: 13px;
    }

    .celsius-hero-section {
        height: auto;
        min-height: calc(100vh - var(--nav-height));
        padding: 80px 0 40px 0;
    }

    .hero-container {
        height: auto;
        align-items: center;
    }

    .hero-title {
        font-size: 64px;
    }

    .hero-content {
        max-width: 600px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .who-title {
        font-size: 56px;
    }

    .who-desc {
        font-size: 18px;
    }

    .pricing-cards-container {
        gap: 20px;
        padding: 0 24px;
    }

    .pricing-card {
        padding: 40px 20px;
    }

    .card-title-price {
        font-size: 52px;
    }
}

/* 3. PORTRAIT TABLETS */
@media (min-width: 577px) and (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .burger-btn {
        display: block;
    }

    .nav-container,
    .hero-container {
        padding: 0 24px;
    }

    .celsius-hero-section {
        height: auto;
        min-height: calc(100vh - var(--nav-height));
        padding: 80px 0 40px 0;
    }

    .hero-container {
        height: auto;
        align-items: center;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-content {
        max-width: 520px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-outline {
        padding: 15px 30px;
        font-size: 14px;
        width: auto;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .who-we-are-container {
        flex-direction: column;
        gap: 40px;
    }

    .who-title {
        font-size: 44px;
    }

    .who-desc {
        font-size: 16px;
    }

    .pricing-cards-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 24px;
    }

    .pricing-card {
        width: 100%;
        max-width: 100%;
        padding: 30px 24px;
    }
}


/* 4. MOBILE */
@media (max-width: 576px) {
    :root {
        --nav-height: 70px;
    }

    .celsius-hero-section {
        margin-top: var(--nav-height);
        height: auto;
        min-height: calc(100vh - var(--nav-height));
        padding-top: 40px;
        display: flex;
        align-items: center;
    }

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

    .nav-logo img {
        height: 48px;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .burger-btn {
        display: block;
    }

    .hero-container {
        padding: 0 20px 40px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 43px;
    }

    .hero-desc {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 18px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .celsius-track {
        padding: 12px 0;
    }

    .track-content span {
        font-size: 13px;
    }

    .track-plus {
        margin: 0 15px;
        font-size: 14px;
    }

    .counters-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
        padding: 0 20px;
    }

    .counter-value,
    .counter-number-static {
        font-size: 44px;
    }

    .counter-label {
        font-size: 12px;
    }

    .celcius-who-we-are-section {
        padding: 60px 0;
    }

    .who-we-are-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .who-title {
        font-size: 38px;
    }

    .who-desc {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .feature-item {
        padding: 16px;
        gap: 16px;
    }

    .feature-icon-container {
        width: 48px;
        height: 48px;
    }

    .feature-icon-container img {
        height: 24px;
    }

    .feature-info h3 {
        font-size: 16px;
    }

    .feature-info p {
        font-size: 13px;
    }

    /* Pricing Section Mobile swipability and hidden scrollbars */
    .celcius-pricing-section {
        padding: 60px 0;
    }

    .pricing-header-container {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .pricing-title {
        font-size: 38px;
    }

    .pricing-desc {
        font-size: 15px;
    }

    .pricing-cards-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 20px 20px 20px;
        scrollbar-width: none;
        /* Firefox */
        justify-content: flex-start;
    }

    .pricing-cards-container::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Edge */
    }

    .pricing-card {
        flex: 0 0 92%;
        scroll-snap-align: center;
        padding: 40px 24px;
    }

    /* Six Zones Section Mobile swipability and layout */
    .celcius-inside-section {
        padding: 60px 0;
    }

    .inside-header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 20px 40px 20px;
    }

    .inside-title {
        font-size: 38px;
    }

    .inside-desc {
        text-align: left;
        font-size: 16px;
    }

    .zones-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .zone-box-1 {
        width: 100%;
        height: 380px;
    }

    .zones-swipe-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        width: 100%;
        padding-bottom: 20px;
        scrollbar-width: none;
        /* Firefox */
    }

    .zones-swipe-wrapper::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Edge */
    }

    .zones-swipe-wrapper .zone-box {
        flex: 0 0 85%;
        height: 300px;
        scroll-snap-align: center;
    }

    /* Co-work Section Mobile */
    .work-container {
        flex-direction: column;
        min-height: auto;
    }

    .work-left {
        width: 100%;
        height: 350px;
    }

    .work-right {
        width: 100%;
        padding: 60px 20px;
    }

    .work-title {
        font-size: 38px;
    }

    .work-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .work-bullets li {
        font-size: 16px;
    }

    /* Add-on Classes Mobile */
    .celcius-classes-section {
        padding: 60px 0;
    }

    .classes-header-container {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .classes-title {
        font-size: 38px;
    }

    .classes-slider-window {
        padding: 0 20px;
    }

    .classes-slider-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        scrollbar-width: none;
        /* Firefox */
        cursor: default;
    }

    .classes-slider-track::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Edge */
    }

    .class-card {
        flex: 0 0 100%;
        height: 450px;
        scroll-snap-align: center;
        padding: 30px 24px;
    }

    .class-title-text {
        font-size: 26px;
    }

    .class-desc-text {
        font-size: 14px;
    }

    /* Games Section Mobile */
    .celcius-games-section {
        padding: 60px 0;
        min-height: auto;
    }

    .games-container {
        gap: 30px;
        padding: 0 20px;
    }

    .games-nav-icons {
        gap: 15px;
        width: 100%;
        justify-content: center;
    }

    .game-nav-btn {
        width: 50px;
        height: 50px;
    }

    .game-nav-btn i {
        font-size: 20px;
    }

    .games-content-title {
        font-size: 38px;
        margin-bottom: 16px;
    }

    .games-content-desc {
        font-size: 16px;
    }

    /* Why Celsius Mobile */
    .celcius-why-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

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

    .why-title {
        font-size: 38px;
        margin-bottom: 40px;
    }

    .why-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .why-main-desc {
        font-size: 16px;
    }

    .why-grid {
        gap: 30px;
    }

    .why-grid-item h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .why-grid-item p {
        font-size: 14px;
    }

    /* Bookings Section Mobile */
    .celcius-booking-section {
        padding: 60px 0;
    }

    .booking-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }

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

    .booking-desc {
        font-size: 15px;
    }

    .booking-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 booking boxes grid format on mobile */
        gap: 15px;
        padding: 0 20px;
    }

    .booking-box {
        padding: 20px 16px;
        min-height: 150px;
    }

    .booking-box-icon {
        top: 16px;
        right: 16px;
        height: 24px;
    }

    .booking-box-info h3 {
        font-size: 15px;
        max-width: calc(100% - 24px);
    }

    .booking-box-info p {
        font-size: 12px;
    }

    .btn-book-slot {
        font-size: 12px;
        margin-top: 10px;
    }

    .booking-callout-container {
        padding: 0 20px;
    }

    .booking-callout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

    .callout-text-block h3 {
        font-size: 18px;
    }

    .callout-text-block p {
        font-size: 13px;
    }

    .callout-phone-block a {
        font-size: 22px;
    }

    .callout-subtext {
        font-size: 13px;
    }

    /* Instagram Mobile */
    .celcius-insta-section {
        padding: 60px 0;
    }

    .insta-header {
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .insta-title {
        font-size: 38px;
    }

    /* CTA Section Mobile */
    .celcius-cta-section {
        padding: 100px 0;
        background-attachment: scroll;
        /* Scroll bg on mobile for performance */
    }

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

    .cta-title {
        font-size: 38px;
    }

    .cta-desc {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-cta-trial,
    .btn-cta-phone {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    /* Footer Mobile */
    .celcius-footer-section {
        padding: 60px 0 30px 0;
    }

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

    .footer-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }

    .brand-col {
        min-width: 100%;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-col h3 {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: 15px;
    }
}

/* Scroll Animation Initial States */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animate__animated {
    opacity: 1;
}

/* Premium Celsius Fitness Modal Styles */
body.celsius-modal-open {
    overflow: hidden !important;
}

.celsius-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 20px;
}

.celsius-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.celsius-modal-container {
    background: #141414;
    border: 1px solid rgba(244, 175, 118, 0.25);
    border-radius: 16px;
    width: 100%;
    max-width: 650px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75), 0 0 40px rgba(244, 175, 118, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.celsius-modal-overlay.open .celsius-modal-container {
    transform: scale(1);
}

.celsius-modal-container::-webkit-scrollbar {
    width: 5px;
}

.celsius-modal-container::-webkit-scrollbar-track {
    background: #141414;
}

.celsius-modal-container::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

.celsius-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.celsius-modal-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.celsius-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.celsius-modal-title {
    font-family: var(--font-accent);
    font-size: 36px;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.celsius-modal-subtitle {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.celsius-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-modal {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modal label {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group-modal input[type="text"],
.form-group-modal input[type="email"],
.form-group-modal input[type="tel"],
.form-group-modal input[type="date"],
.form-group-modal textarea {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-white);
    padding: 14px 16px;
    font-family: var(--font-primary);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group-modal textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group-modal input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(79%) sepia(21%) saturate(983%) hue-rotate(331deg) brightness(101%) contrast(92%);
    /* Approximates #F4AF76 */
    cursor: pointer;
}

.require-column {
    color: var(--secondary-color);
}

.form-group-modal input:focus,
.form-group-modal textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(244, 175, 118, 0.2);
}

/* Phone input with lock +91 prefix */
.phone-input-wrapper-modal {
    display: flex;
    align-items: center;
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-input-wrapper-modal:focus-within {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(244, 175, 118, 0.2);
}

.phone-prefix-modal {
    padding: 14px 0 14px 16px;
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 16px;
    user-select: none;
}

.phone-input-wrapper-modal input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex: 1;
    padding: 14px 16px 14px 8px !important;
}

/* Selection Pills styling */
.selection-pills-grid-modal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.selection-pill-modal {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 10px 18px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    user-select: none;
}

.selection-pill-modal:hover {
    border-color: var(--secondary-color);
    color: var(--text-white);
    background: rgba(244, 175, 118, 0.05);
}

.selection-pill-modal.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-gold));
    border-color: transparent;
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(244, 175, 118, 0.3);
}

.btn-submit-modal {
    margin-top: 15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-gold));
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(244, 175, 118, 0.2);
}

.btn-submit-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 175, 118, 0.4);
}

.btn-submit-modal:active {
    transform: translateY(0);
}

/* Success Message styling */
.celsius-modal-success {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInModal 0.5s ease forwards;
}

.success-icon-modal {
    font-size: 70px;
    color: #4CAF50;
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.3));
}

.celsius-modal-success h3 {
    font-family: var(--font-accent);
    font-size: 32px;
    letter-spacing: 1px;
}

.celsius-modal-success p {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-gray);
    max-width: 400px;
    line-height: 1.6;
}

.btn-success-close-modal {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 8px;
    padding: 12px 30px;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success-close-modal:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

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

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

/* Responsive adjustments */
@media (max-width: 576px) {
    .celsius-modal-container {
        padding: 30px 20px;
    }

    .celsius-modal-title {
        font-size: 28px;
    }

    .selection-pill-modal {
        padding: 8px 14px;
        font-size: 13px;
    }

    .btn-submit-modal {
        font-size: 18px;
        padding: 14px;
    }
}

/* Contact Us Page Styles */
.hero-contact-us-section {
    position: relative;
    height: 320px;
    background: url('../assets/contact-banner.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--nav-height);
}

.hero-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.75);
}

.hero-contact-content {
    position: relative;
    z-index: 5;
    text-align: center;
}

.hero-contact-content h1 {
    font-family: var(--font-accent);
    font-size: 56px;
    letter-spacing: 3px;
    color: var(--text-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.contact-us-detail {
    padding: 80px 0;
    background-color: var(--primary-color);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-form-container {
    background: #141414;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-group-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-contact label {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group-contact input[type="text"],
.form-group-contact input[type="email"],
.form-group-contact input[type="tel"],
.form-group-contact textarea {
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-white);
    padding: 14px 16px;
    font-family: var(--font-primary);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group-contact textarea {
    resize: vertical;
}

.form-group-contact input:focus,
.form-group-contact textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(244, 175, 118, 0.15);
}

.phone-input-wrapper-contact {
    display: flex;
    align-items: center;
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.phone-input-wrapper-contact:focus-within {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(244, 175, 118, 0.15);
}

.phone-prefix-contact {
    padding: 14px 0 14px 16px;
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 15px;
}

.phone-input-wrapper-contact input {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex: 1;
    padding: 14px 16px 14px 8px !important;
}

.btn-submit-contact {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-gold));
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 175, 118, 0.25);
}

.contact-info-container {
    display: flex;
    flex-direction: column;
}

.contact-info-card {
    background: #141414;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(244, 175, 118, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 24px;
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(244, 175, 118, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h3 {
    font-family: var(--font-secondary);
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 8px;
}

.info-text p {
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
}

.info-text p a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-text p a:hover {
    color: var(--secondary-color);
}

.contact-map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-map-container iframe {
    display: block;
}

/* Responsiveness for contact details */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-contact-us-section {
        height: 240px;
    }

    .hero-contact-content h1 {
        font-size: 40px;
    }

    .contact-form-container,
    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-us-detail {
        padding: 50px 0;
    }
}

/* About Us Page Styles */
.about-us-detail {
    padding: 100px 0;
    background-color: var(--primary-color);
}

.about-us-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.about-text-col {
    display: flex;
    flex-direction: column;
}

.about-tag {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-main-title {
    font-family: var(--font-accent);
    font-size: 52px;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.about-subtitle {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.about-paragraph {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-paragraph:last-of-type {
    margin-bottom: 35px;
}

/* Mission & Vision Styling */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.mv-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--secondary-color);
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mv-icon {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mv-card h4 {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.mv-card p {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Why Choose Us styling */
.about-why-us {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-why-us h4 {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.why-us-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.why-us-list li {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.why-us-list li i {
    color: var(--secondary-color);
    font-size: 16px;
    flex-shrink: 0;
}

/* Image wrappers styling */
.vertical-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(244, 175, 118, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about-vertical-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.vertical-image-wrapper:hover .about-vertical-img {
    transform: scale(1.05);
}

/* Bottom banner styling */
.about-bottom-banner {
    margin-top: 60px;
}

.horizontal-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    border: 1px solid rgba(244, 175, 118, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about-horizontal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 40px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 30%, rgba(10, 10, 10, 0.4) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.banner-text-overlay h3 {
    font-family: var(--font-accent);
    font-size: 32px;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.banner-text-overlay p {
    font-family: var(--font-primary);
    font-size: 18px;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    max-width: 600px;
}

/* About Us Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .vertical-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-us-detail {
        padding: 60px 0;
    }
    
    .about-main-title {
        font-size: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-list {
        grid-template-columns: 1fr;
    }
    
    .horizontal-image-wrapper {
        height: 300px;
    }
    
    .banner-text-overlay {
        padding: 30px 20px;
    }
    
    .banner-text-overlay h3 {
        font-size: 24px;
    }
    
    .banner-text-overlay p {
        font-size: 14px;
    }
}

/* ==========================================
   SERVICES, APPOINTMENT & CHECKOUT BOOKING SYSTEM
   ========================================== */

/* 1. Services Booking Page */
.services-detail-page {
    padding: 80px 0;
    background-color: var(--bg-black);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1200px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.booking-left-banner {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.booking-left-banner .banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-left-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.85));
    z-index: 1;
}

.booking-left-banner .banner-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 350px;
    z-index: 2;
    opacity: 0.9;
}

.booking-right-content {
    padding: 50px 40px;
    background-color: #fff;
    color: #333;
}

.booking-right-content h2 {
    font-family: var(--font-secondary);
    font-size: 24px;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 500;
}

/* Filter Groups */
.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn, .category-btn {
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn:hover, .category-btn:hover {
    border-color: #8c765c;
    color: #8c765c;
}

.filter-btn.active, .category-btn.active {
    background-color: #594a3a;
    border-color: #594a3a;
    color: #fff;
}

/* Cart Status Bar */
.cart-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f3f0;
    padding: 15px 25px;
    border-radius: 4px;
    margin: 30px 0;
    border-left: 4px solid #8c765c;
}

.cart-status-bar span {
    font-family: var(--font-primary);
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.btn-checkout-link {
    background: #8c765c;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-checkout-link:hover {
    background: #735f49;
}

/* Services List */
.services-list-container {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 10px;
}

.services-list-container::-webkit-scrollbar {
    width: 6px;
}

.services-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.services-list-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.service-category-block h3 {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: #8c765c;
    border-bottom: 1px solid #f0eade;
    padding-bottom: 8px;
    margin: 25px 0 15px 0;
    letter-spacing: 1px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 15px;
    color: #222;
    font-weight: 500;
}

.service-meta {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #888;
}

.btn-book-service {
    border: 1px solid #8c765c;
    background: transparent;
    color: #8c765c;
    padding: 8px 18px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-service:hover {
    background: #8c765c;
    color: #fff;
}

.btn-book-service.booked {
    background: #8c765c;
    color: #fff;
    border-color: #8c765c;
    cursor: default;
}


/* 2. Appointment Booking Page */
.appointment-page {
    padding: 85px 0;
    background-color: var(--bg-black);
}

.appointment-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.appointment-left {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #333;
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.filter-label {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #888;
    font-weight: 600;
}

.type-pills {
    display: flex;
    gap: 8px;
}

.type-pill {
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-pill:hover, .type-pill.active {
    background: #594a3a;
    border-color: #594a3a;
    color: #fff;
}

/* Accordion Component */
.accordion-item {
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: #fafafa;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accordion-header h3 {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: #222;
    margin: 0;
    letter-spacing: 0.5px;
}

.accordion-header i {
    color: #8c765c;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 24px;
}

.accordion-item.open .accordion-content {
    max-height: 800px;
    padding: 15px 24px;
}

.accordion-item.open .accordion-header i {
    transform: rotate(180deg);
}

.accord-service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.accord-service-item:last-child {
    border-bottom: none;
}

.accord-service-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accord-title {
    font-family: var(--font-primary);
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.accord-meta {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #999;
}

.btn-add-item {
    border: 1px solid #8c765c;
    background: transparent;
    color: #8c765c;
    padding: 6px 16px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-add-item:hover {
    background: #8c765c;
    color: #fff;
}

.btn-add-item.added {
    background: #8c765c;
    color: #fff;
    border-color: #8c765c;
}

/* Cart Sidebar Box */
.cart-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #333;
    position: sticky;
    top: 100px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.cart-header h3 {
    font-family: var(--font-secondary);
    font-size: 18px;
    color: #222;
    margin: 0;
}

.cart-badge {
    background: #594a3a;
    color: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.cart-items-list {
    min-height: 120px;
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 25px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 80%;
}

.cart-item-title {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.cart-item-duration {
    font-family: var(--font-primary);
    font-size: 12px;
    color: #999;
}

.btn-remove-cart {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 4px 8px;
}

.btn-remove-cart:hover {
    color: #b33;
}

.empty-cart-msg {
    color: #999;
    font-family: var(--font-primary);
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
}

.btn-proceed-booking {
    width: 100%;
    background: #594a3a;
    color: #fff;
    border: none;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-proceed-booking:hover {
    background: #473a2d;
}


/* 3. Checkout Booking Page */
.checkout-page {
    padding: 85px 0;
    background-color: var(--bg-black);
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkout-left {
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #333;
    height: fit-content;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.box-header i {
    color: #8c765c;
    font-size: 18px;
}

.box-header h3 {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: #222;
    margin: 0;
    letter-spacing: 0.5px;
}

.selected-services-list {
    margin-bottom: 25px;
    max-height: 250px;
    overflow-y: auto;
}

.selected-service-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.sel-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-width: 70%;
}

.sel-name {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.sel-meta {
    font-family: var(--font-primary);
    font-size: 12px;
    color: #888;
}

.sel-price {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #222;
    font-weight: 600;
}

.total-row {
    background: #fafafa;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.subtotal-line, .duration-line {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-primary);
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.subtotal-line {
    font-weight: 600;
    color: #111;
}

.subtotal-line span:last-child {
    color: #8c765c;
}

.link-edit-services {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 13px;
    color: #8c765c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.link-edit-services:hover {
    color: #594a3a;
}

.checkout-right {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #333;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-item label {
    font-family: var(--font-primary);
    font-size: 11px;
    color: #666;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-item input, .form-item select {
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-family: var(--font-primary);
    font-size: 14px;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-item input:focus, .form-item select:focus {
    border-color: #8c765c;
}

.phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.phone-input-group .phone-prefix {
    background: #f5f5f5;
    padding: 12px 15px;
    font-family: var(--font-primary);
    font-size: 14px;
    color: #666;
    border-right: 1px solid #ddd;
}

.phone-input-group input {
    border: none;
    flex-grow: 1;
    padding: 12px 15px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2e7d32;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.status-indicator i {
    font-size: 16px;
}

.hours-schedule {
    background: #fff8f0;
    border: 1px solid #fbeedb;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.hours-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-family: var(--font-primary);
    font-size: 12px;
    color: #7a6e60;
    margin-bottom: 8px;
}

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

.promo-code-item {
    margin-bottom: 30px;
}

.promo-code-item input {
    text-transform: uppercase;
}

.btn-confirm-booking {
    width: 100%;
    background: #594a3a;
    color: #fff;
    border: none;
    padding: 16px 20px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-confirm-booking:hover {
    background: #473a2d;
}

.submit-subtext {
    font-family: var(--font-primary);
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 12px;
}

/* Success Confirmation Box */
.booking-success-message {
    padding: 30px;
    text-align: center;
    background: #f1f8e9;
    border: 1px solid #dcedc8;
    border-radius: 8px;
    margin-top: 20px;
}

.booking-success-message .success-icon {
    font-size: 40px;
    color: #4caf50;
    margin-bottom: 15px;
}

.booking-success-message h3 {
    font-family: var(--font-secondary);
    font-size: 20px;
    color: #33691e;
    margin-bottom: 10px;
}

.booking-success-message p {
    font-family: var(--font-primary);
    font-size: 14px;
    color: #558b2f;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .booking-container,
    .appointment-container,
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .booking-left-banner {
        display: none;
    }
    
    .cart-box {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .booking-right-content,
    .appointment-left,
    .checkout-left,
    .checkout-right {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu Backdrop Blur Sibling Effects */
body.menu-open main,
body.menu-open footer,
body.menu-open .celsius-nav {
    filter: blur(8px);
    transition: filter 0.3s ease;
    pointer-events: none;
}

/* Privacy Policy & Terms Page styling */

.privacy-policy-section {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-family: var(--font-primary);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}
.policy-intro{
font-size: 20px;
padding-bottom: 12px;
line-height: 1.4;
}
.policy-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 50px 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.policy-meta {
    font-size: 14px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: inline-block;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 5px;
}

.policy-block {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-block h2 {
    font-family: var(--font-secondary);
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.policy-block h3 {
    font-family: var(--font-secondary);
    font-size: 22px;
    color: var(--secondary-color);
    margin: 20px 0 10px 0;
}

.policy-block p {
    font-size: 20px;
    line-height: 1.4;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.policy-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.policy-block ul li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.policy-block ul li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.policy-block strong {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 50px 15px;
    }
    
    .policy-card {
        padding: 30px 20px;
    }
    
    .policy-block h2 {
        font-size: 19px;
    }
}

/* ==========================================================================
   GALLERY PAGE STYLES
   ========================================================================== */
.gallery-detail {
    padding: 60px 40px 100px 40px;
    max-width: 1700px;
    margin: 0 auto;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background-color: #121212;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 30px rgba(216, 143, 87, 0.25);
    border-color: var(--secondary-color);
}

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

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

/* Grid Spans for Small / Big / Wide / Tall shapes */
.gallery-item.item-wide {
    grid-column: span 2;
}

.gallery-item.item-tall {
    grid-row: span 2;
}

.gallery-item.item-big {
    grid-column: span 2;
    grid-row: span 2;
}

/* Overlay & Play Icon */
.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-item-overlay i {
    color: var(--text-white);
    font-size: 28px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 22px;
    z-index: 3;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.video-play-btn i {
    margin-left: 3px;
}

.gallery-item:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Gallery Popout Lightbox Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.gallery-modal.open {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.gallery-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.gallery-modal-close:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.gallery-modal-container {
    position: relative;
    z-index: 2001;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-modal.open .gallery-modal-container {
    transform: scale(1);
}

.gallery-modal-container img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.gallery-modal-container video {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    outline: none;
    display: block;
    background: #000;
}

/* Responsive styles for Mobile */
@media (max-width: 992px) {
    .gallery-detail {
        padding: 40px 20px 80px 20px;
    }

    .gallery-content {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        grid-auto-rows: 200px;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .gallery-detail {
        padding: 30px 15px 60px 15px;
    }

    .gallery-content {
        grid-template-columns: 1fr;
        grid-auto-rows: minmax(220px, auto);
        gap: 12px;
    }

    .gallery-item.item-wide,
    .gallery-item.item-tall,
    .gallery-item.item-big {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 280px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}



