@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background-color: #ffffff;
    margin: 0;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100vh;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 24px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/8.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%), linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.95) 100%);
    z-index: 2;
}

.navbar {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 100;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 100px;
    object-fit: contain;
}

.logo-icon {
    filter: invert(1);
    width: 36px;
    height: 36px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.sub-brand {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.has-dropdown {
    position: relative;
    /* allow the hover to work on the li */
}

/* Make sure the mega menu is hidden by default */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    min-width: 600px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

/* Show mega menu on hover */
.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mega-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: transform 0.2s ease;
}

.mega-card:hover {
    transform: translateY(-3px);
    opacity: 1 !important;
}

.mega-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.mega-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.mega-title {
    font-weight: 500;
    font-size: 16px;
    color: #1a1a1a;
}

.mobile-menu-toggle {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    padding: 4px;
    gap: 5px;
}

.toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: rgba(0,0,0,0.05);
}

.btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-primary .btn-icon {
    background: #b58250;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background: #f0f0f0;
}

.hero-content {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    padding: 0 60px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.left-col {
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.badge .dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
}

.main-heading {
    font-size: 68px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.right-col {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.scroll-indicator {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 25px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 2px solid #ffffff;
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 2px;
    height: 6px;
    background: #ffffff;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 12px); opacity: 0; }
}

.scroll-indicator span {
    font-size: 13px;
    font-weight: 500;
}

.description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-secondary {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-secondary .btn-icon {
    background: #b58250;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: #f0f0f0;
}

/* Method Section Styles */
.method-section {
    background-color: #ffffff;
    color: #1a1a1a;
    border-radius: 20px;
    padding: 80px 60px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.method-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.method-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #dcdcdc;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}

.method-badge .dot {
    width: 8px;
    height: 8px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: inline-block;
}

.method-text {
    max-width: 80%;
    font-size: 45px;
    font-weight: 400;
    line-height: 52px;
    letter-spacing: 0px;
    color: #1a1a1a;
}

.method-divider {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin: 0;
}

.method-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
}

.stats-col {
    max-width: 35%;
}

.stats-number {
    font-size: 72px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    color: #1a1a1a;
}

.stats-text {
    font-size: 20px;
    color: #4a4a4a;
    font-weight: 400;
}

.details-col {
    max-width: 60%;
}

.details-heading {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.details-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 90%;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 18px 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-whatsapp .btn-icon {
    background: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #333333;
}

/* Services Section Styles */
.services-section {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 20px;
    width: 100%;
    align-items: start;
    padding: 0 60px 40px 60px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-img-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.large-card .service-img-wrapper {
    aspect-ratio: 1.4 / 1;
}

.small-card .service-img-wrapper {
    aspect-ratio: 1.4 / 1;
}

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

.service-divider {
    border: none;
    border-top: 1px solid #dcdcdc;
    margin: 0 0 15px 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-title {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-btn {
    background: #1a1a1a;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.service-btn:hover {
    background: #333333;
}

/* Why Choose Section Styles */
.why-choose-section {
    background-color: #ffffff;
    color: #1a1a1a;
    width: 100%;
    padding: 20px 60px 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.why-top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
}

.why-badge-col {
    flex: 0 0 350px;
}

.why-content-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.why-heading {
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    color: #1a1a1a;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.why-desc-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.why-desc {
    max-width: 60%;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.btn-dark {
    background: #1a1a1a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-dark .btn-icon {
    background: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-dark:hover {
    background: #333333;
}

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

.why-card {
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.card-brown {
    background: #b88645;
    color: #ffffff;
}

.card-grey {
    background: #f3f3f3;
    color: #1a1a1a;
}

.card-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.card-brown .card-number {
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.card-grey .card-number {
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.card-text-content h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.card-text-content p {
    font-size: 14px;
    line-height: 1.6;
}

.card-brown .card-text-content p {
    color: rgba(255, 255, 255, 0.9);
}

.card-grey .card-text-content p {
    color: #4a4a4a;
}

/* CTA & Brands Section */
.cta-brands-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0 60px 80px 60px;
}

.cta-banner {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.cta-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cta-heading {
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.btn-light {
    background: #ffffff;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-light .btn-icon-brown {
    background: #b88645;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-light:hover {
    background: #f0f0f0;
}

/* Brands Row */
.brands-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    opacity: 0.6;
}

.brand-logo {
    font-family: sans-serif;
    text-align: center;
    color: #1a1a1a;
    font-size: 24px;
    letter-spacing: 1px;
}

.brand-logo span {
    display: block;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 4px;
}

.brand-logo-img {
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo-img:hover {
    opacity: 1;
}

/* Service Details Section */
.service-details-section {
    background-color: #1a1815;
    border-radius: 20px;
    padding: 120px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title-center {
    font-size: 52px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.service-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 100px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.tab-btn.active {
    background: #b88645;
    border-color: #b88645;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    width: 100%;
}

.sc-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sc-title {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.sc-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.sc-action-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sc-price {
    font-size: 32px;
    color: #ffffff;
    font-weight: 400;
}

.sc-middle {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 0.85;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.sc-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sc-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sc-feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 300;
}

/* Packages Section */
.packages-section {
    width: 100%;
    padding: 80px 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.section-title-dark {
    font-size: 56px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.packages-header-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    margin-bottom: 60px;
}

.packages-desc {
    max-width: 500px;
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
}

.package-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.dark-card {
    background-color: #1a1815;
    padding: 20px 20px 40px 20px;
}

.card-img-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.pkg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 300;
}

.dark-card .card-content {
    padding: 0 10px;
}

.dark-card .card-content h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
}

.image-card {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    justify-content: flex-end;
    padding: 20px;
}

.card-overlay-box {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.card-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.overlay-badge.outlined {
    position: static;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    display: inline-block;
}

.card-overlay-content h3 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 400;
    margin: 0;
}

.circle-btn-white {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.circle-btn-white:hover {
    background-color: #f0f0f0;
}

/* Booking Section */
.booking-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 60px;
    background-color: #ffffff;
}

.booking-heading {
    font-size: 56px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
}

.booking-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 90%;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.social-icons a {
    color: #1a1a1a;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    opacity: 0.7;
}

.social-icons .social-brown {
    color: #b88645;
}

.booking-img-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1.25;
}

.booking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 22px 25px;
    background-color: #f2f2f2;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1a1a;
    outline: none;
    appearance: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #7a7a7a;
}

.form-input:focus {
    border-color: #dcdcdc;
    background-color: #ffffff;
}

select.form-input {
    cursor: pointer;
}

select.form-input:invalid {
    color: #7a7a7a;
}

/* Icons for select dropdowns */
.select-icon-wrapper {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
    color: #1a1a1a;
}

/* Right icon for text inputs */
.input-right-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #4a4a4a;
    pointer-events: none;
}

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 14px 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.btn-submit .submit-icon {
    background-color: #ffffff;
    color: #1a1a1a;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    background-color: #333333;
}

/* Journal Section */
.journal-section {
    width: 100%;
    padding: 80px 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.journal-heading {
    font-size: 56px;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.journal-desc {
    font-size: 16px;
    color: #4a4a4a;
    max-width: 900px;
    margin: 0 auto;
}

.journal-container {
    background-color: #1a1815;
    border-radius: 24px;
    padding: 60px;
    width: 100%;
}

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

.journal-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.journal-img-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    aspect-ratio: 1.4;
}

.journal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.journal-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 300;
    z-index: 2;
}

.journal-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.journal-title {
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

/* Testimonial Section */
.testimonial-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    padding: 100px 60px;
    background-color: #ffffff;
    align-items: center;
}

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

.testi-heading {
    font-size: 72px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 30px 0 50px 0;
}

.testi-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testi-card {
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.testi-content {
    flex: 1;
}

.testi-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.testi-author {
    font-size: 15px;
    color: #1a1a1a;
    margin: 0;
}

.testi-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    padding: 100px 60px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-heading {
    font-size: 56px;
    font-weight: 400;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.gallery-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery-img-wide {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 24px;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 56px;
    font-weight: 300;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    letter-spacing: -2px;
}

.stat-desc {
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.5;
    margin: 0;
}

.gallery-img-tall {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: 24px;
}

/* Footer Section */
.footer-section {
    width: 100%;
    padding: 80px 60px 40px 60px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    max-width: 90%;
}

.footer-heading {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.footer-heading-large {
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b88645;
}

.newsletter-input-wrapper {
    position: relative;
    width: 100%;
}

.newsletter-input {
    width: 100%;
    padding: 16px 20px;
    padding-right: 50px;
    background-color: #f2f2f2;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: #7a7a7a;
}

.newsletter-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: #4a4a4a;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    color: #1a1a1a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 30px;
}

.copyright {
    font-size: 13px;
    color: #7a7a7a;
    margin: 0;
}

.copyright a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.copyright a:hover {
    color: #000000;
    border-bottom: 1px solid #000000;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 10px 14px 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.back-to-top:hover {
    background-color: #333333;
}

.back-to-top .top-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inner Page Navbar (Voiceflow Style) */
.inner-header {
    background-color: #ffffff;
    padding: 15px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.inner-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links-wrapper {
    background-color: transparent;
    padding: 8px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

.inner-header .nav-links {
    margin: 0;
}

.inner-header .nav-links li a {
    color: #444;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 15px;
    opacity: 1; /* override original */
}

.inner-header .nav-links li a:hover,
.inner-header .nav-links li a.active {
    color: #000;
}

.nav-actions-wrapper {
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
}

.inner-header .nav-actions {
    gap: 15px;
    margin: 0;
}

.inner-header .theme-toggle {
    background: transparent;
    border: none;
    padding: 0;
}

.inner-header .theme-toggle .toggle-btn {
    color: #444;
}

.inner-header .theme-toggle .toggle-btn.active {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-blue {
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-blue:hover {
    background-color: #2563eb;
    color: #ffffff;
}

/* Inner Page Styles */
.inner-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.inner-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('img/8.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.inner-hero .overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.inner-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 40px;
    margin-top: auto;
    margin-bottom: auto;
}

.inner-heading {
    font-size: 56px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.inner-subheading {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

.content-section {
    padding: 100px 60px;
    background: #ffffff;
    color: #1a1a1a;
}

.content-section.dark {
    background: #1a1815;
    color: #ffffff;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Common Grids */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-row.reverse {
    direction: rtl;
}

.service-row.reverse > * {
    direction: ltr;
}

.service-text h3 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: -1px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.service-row .service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #1a1a1a;
}

.pricing-card.premium {
    background: #1a1815;
    color: #ffffff;
}

.price-title { font-size: 24px; font-weight: 500; margin-bottom: 10px; }
.price-amount { font-size: 56px; font-weight: 300; margin-bottom: 30px; }
.price-features { list-style: none; padding: 0; margin: 0 0 40px 0; text-align: left; }
.price-features li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.1); }
.premium .price-features li { border-bottom: 1px solid rgba(255,255,255,0.1); }

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

.contact-info h3 { font-size: 32px; font-weight: 400; margin-bottom: 20px; }
.contact-info p { font-size: 16px; color: #666; margin-bottom: 10px; }

/* Mobile Responsiveness for Navbar */
@media (max-width: 768px) {
    .nav-container {
        padding: 5px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: #ffffff;
        cursor: pointer;
        padding: 8px;
        z-index: 1001; /* Above the overlay */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        transition: right 0.4s ease;
        z-index: 1000;
        gap: 30px;
        overflow-y: auto;
        padding-bottom: 50px;
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 24px;
        justify-content: center;
    }

    /* Mobile Mega Menu Accordion */
    .has-dropdown:hover .mega-menu {
        /* Disable hover behavior on mobile */
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

    .has-dropdown.open .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 15px 10px;
        min-width: 100%;
        display: block;
    }

    .mega-menu {
        display: none;
    }

    .mega-menu-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .mega-card {
        color: #ffffff;
    }
    
    .mega-title {
        color: #ffffff;
        font-size: 14px;
    }
}


/* Tablet Optimizations */
@media (max-width: 1024px) {
    .pricing-grid, 
    .journal-grid, 
    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-row {
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-title, .inner-heading, .gallery-heading {
        font-size: 48px;
    }

    .price-amount {
        font-size: 46px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Grids */
    .pricing-grid, 
    .journal-grid, 
    .gallery-grid,
    .footer-main {
        grid-template-columns: 1fr !important;
    }
    
    .service-row {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .service-row.reverse {
        direction: ltr !important;
    }

    .service-row.reverse > * {
        direction: ltr !important;
    }
    
    .contact-layout {
        grid-template-columns: 1fr !important;
    }

    /* Padding */
    .hero-section,
    .content-section,
    .gallery-section,
    .booking-section,
    .footer-section,
    .method-section,
    .services-section,
    .service-details-section,
    .why-choose-section,
    .packages-section,
    .journal-section,
    .testimonial-section {
        padding: 60px 20px !important;
    }
    
    .inner-hero-content {
        padding: 0 20px !important;
    }

    /* Typography */
    .hero-title, .inner-heading, .gallery-heading, .why-heading, .journal-heading, .footer-heading-large {
        font-size: 36px !important;
    }

    /* Gallery Stats Modern Cards Mobile */
    .gallery-stats {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        background: #f8f8f8 !important;
        padding: 15px !important;
        border-radius: 20px !important;
    }

    .gallery-stats .stat-item {
        background: #ffffff !important;
        border: 1px solid #efefef !important;
        border-radius: 12px !important;
        padding: 15px 8px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .gallery-stats .stat-number {
        font-size: 26px !important;
        margin-bottom: 5px !important;
        letter-spacing: -1px !important;
    }

    .gallery-stats .stat-desc {
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    .price-amount {
        font-size: 38px !important;
    }
    
    .service-text h3 {
        font-size: 32px !important;
    }

    .stat-number, .stats-number {
        font-size: 42px !important;
    }

    /* Navbar fixes */
    .nav-links-wrapper {
        background-color: transparent !important;
        padding: 0 !important;
    }
    
    .nav-actions .btn-blue {
        display: none !important;
    }

    .mega-menu-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Tablet Optimizations for index.html Grids */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .service-content-grid {
        grid-template-columns: 1fr !important;
    }
    .packages-grid {
        grid-template-columns: 1fr !important;
    }
    .testimonial-section {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .testi-heading {
        font-size: 48px !important;
        margin-bottom: 20px !important;
    }
}

/* Mobile Optimizations for index.html Grids */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr !important;
    }
    .testi-card {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }
    .testi-heading {
        font-size: 36px !important;
    }
}

/* Fix for index.html mobile */
@media (max-width: 1024px) {
    .main-heading { font-size: 48px !important; }
}
@media (max-width: 768px) {
    .main-heading { font-size: 36px !important; }
    .nav-actions .btn { display: none !important; }
    .nav-container { padding: 10px 20px !important; }
    .nav-logo { height: 60px !important; }
    .scroll-indicator { display: none !important; }
    .right-col { align-items: flex-start !important; text-align: left !important; }
    
    /* Comprehensive Mobile Fixes for Overlapping */
    .hero-content, .method-top, .method-bottom, .why-top, .why-desc-row, .cta-content {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }
    
    .services-section, .booking-section, .service-content-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Booking Section Mobile Fixes */
    .booking-heading {
        font-size: 36px !important;
        margin-bottom: 20px !important;
    }
    .form-input {
        padding-right: 65px !important;
        padding-left: 15px !important;
    }

    /* Packages Section Mobile Fixes */
    .section-title-dark {
        font-size: 36px !important;
        margin-bottom: 30px !important;
        line-height: 1.2 !important;
    }
    .packages-header-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }
    .packages-desc {
        text-align: center !important;
    }
    .card-overlay-box {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
        padding: 20px !important;
    }
    .card-overlay-content h3 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    /* Hair Color Service Section Mobile Fixes */
    .section-title-center {
        font-size: 36px !important;
        text-align: center !important;
        margin-bottom: 40px !important;
    }
    .service-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .sc-left {
        align-items: center !important;
        text-align: center !important;
    }
    .sc-title {
        font-size: 32px !important;
        text-align: center !important;
    }
    .sc-desc {
        text-align: center !important;
    }
    .sc-action-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    .sc-price {
        font-size: 24px !important;
    }

    .brands-row {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 20px !important;
    }

    .method-text, .stats-col, .details-col, .why-desc, .why-badge-col {
        max-width: 100% !important;
        flex: none !important;
    }
    
    .method-text {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    /* CTA Section Fixes */
    .cta-banner {
        padding: 40px 20px !important;
        min-height: auto !important;
    }
    
    .cta-heading {
        font-size: 36px !important;
    }
    
    .btn-light, .btn-dark, .btn-primary, .btn-secondary, .btn-whatsapp {
        white-space: nowrap !important;
    }

    /* Footer Bottom Mobile Fixes */
    .footer-bottom {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
    }
    .back-to-top {
        white-space: nowrap !important;
    }
}
/* --- Menu Page Styles --- */
.menu-page-section {
    padding: 120px 60px 80px 60px;
    background: url('img/menu-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}

.menu-page-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 64px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 60px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category-card {
    background: rgba(25, 25, 25, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.menu-category-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #d1a976;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 15px;
}

.menu-table-header {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bbb;
    font-weight: 600;
    padding-right: 120px; /* Space for the button */
}
.menu-table-header span {
    width: 90px;
    text-align: center;
}

.menu-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    gap: 20px;
}
.menu-item-row:last-child {
    border-bottom: none;
}

.menu-item-name {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.menu-item-prices {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-price {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    width: 90px;
    text-align: center;
}
.menu-price.na {
    color: #777;
    font-size: 16px;
}

.menu-book-btn {
    padding: 8px 24px;
    background: #b78a58;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
    white-space: nowrap;
    width: 110px;
    text-align: center;
}
.menu-book-btn:hover {
    background: #ffffff;
    color: #b78a58;
}

@media (max-width: 768px) {
    .menu-page-section { padding: 100px 20px 60px 20px; }
    .menu-page-title { font-size: 36px; margin-bottom: 40px; }
    .menu-category-card { padding: 20px; }
    .menu-item-row { flex-direction: column; align-items: flex-start; gap: 15px; padding: 25px 0; }
    .menu-table-header { display: none; }
    .menu-item-prices { width: 100%; justify-content: flex-start; margin-bottom: 15px; flex-wrap: wrap; gap: 15px; }
    .menu-price { width: auto; text-align: left; }
    .menu-price::before { content: attr(data-label) ": "; font-weight: 400; color: #aaa; font-size: 14px; margin-right: 5px; }
    .menu-price.na { display: none; }
    .menu-book-btn { width: 100%; text-align: center; padding: 12px; }
}

/* Sticky Scroll Navbar Logic */
.navbar, .inner-header {
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, top 0.3s ease, padding 0.3s ease;
}

/* Ensure inner-header is fixed to top */
.inner-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Prevent content jump for inner pages */
body:not(:has(.hero-section)) {
    padding-top: 80px;
}

/* Scrolled state for index.html navbar */
.navbar.scrolled {
    position: fixed;
    top: 0;
    background: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 10px 40px; 
}

/* Scrolled state for inner-header */
.inner-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Hide navbar on scroll down */
.navbar.nav-hidden, .inner-header.nav-hidden {
    transform: translateY(-100%);
}

/* Change text colors for index.html when scrolled to white background */
.navbar.scrolled .nav-links a { color: #1a1a1a; }
.navbar.scrolled .nav-actions .toggle-btn { color: #1a1a1a; }
.navbar.scrolled .logo img { filter: invert(1) brightness(0); } /* Turn white logo black */
.navbar.scrolled .mobile-menu-toggle { color: #1a1a1a; }

/* Revert text and toggle color to white when mobile menu is active (dark background) */
.navbar.scrolled .nav-links.mobile-active a { color: #ffffff !important; }
.navbar.scrolled .nav-links.mobile-active .mega-card, 
.navbar.scrolled .nav-links.mobile-active .mega-title { color: #ffffff !important; }
.navbar.scrolled .nav-links.mobile-active ~ .nav-actions .mobile-menu-toggle { color: #ffffff !important; }

/* --- CRO Booking Styles --- */
.add-to-visit-btn.added {
    background: #4caf50 !important;
    color: #fff !important;
    cursor: pointer;
    box-shadow: none !important;
    animation: none !important;
    transform: none !important;
}

.add-to-visit-btn.added:hover {
    background: #f44336 !important; /* Red on hover to indicate removal */
}
.add-to-visit-btn.added:hover::before {
    content: "Remove";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f44336;
    color: #fff;
    border-radius: 50px;
    z-index: 10;
}

#sticky-cart-tray {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
}

#sticky-cart-tray.hidden {
    transform: translateY(100%);
}

.cart-tray-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 30px;
}

.cart-summary-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#cart-count {
    font-size: 14px;
    color: #aaa;
}

#cart-total {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

#cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 120px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom scrollbar for the cart list */
#cart-items-list::-webkit-scrollbar {
    width: 4px;
}
#cart-items-list::-webkit-scrollbar-thumb {
    background: #d1a976;
    border-radius: 4px;
}

.cart-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    gap: 15px;
}

.cart-item-name {
    color: #fff;
    flex: 1;
}

.cart-item-price {
    color: #d1a976;
    font-weight: 600;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: #f44336;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
    transition: transform 0.2s;
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

#upsell-module {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

#upsell-module.hidden {
    display: none;
}

#add-upsell-btn {
    background: #d1a976;
    color: #111;
    border: none;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

#continue-schedule-btn {
    background: #fff;
    color: #111;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
#continue-schedule-btn:hover {
    background: #d1a976;
}

/* Booking Modal */
#booking-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
}
#booking-modal-overlay.hidden {
    display: none;
}

#booking-funnel-modal {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.modal-header h3 {
    margin: 0;
    font-size: 24px;
    color: #111;
}
#close-modal-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #111;
    cursor: pointer;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}
.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 2px;
    background: #eee;
    z-index: 1;
}
.step-indicator .step {
    background: #fff;
    padding: 0 10px;
    z-index: 2;
    font-size: 14px;
    color: #999;
    font-weight: 500;
}
.step-indicator .step.active {
    color: #d1a976;
    font-weight: 600;
}

.funnel-step {
    display: none;
    flex-direction: column;
    gap: 20px;
}
.funnel-step.active {
    display: flex;
}
.funnel-step h4 {
    margin: 0;
    font-size: 18px;
    color: #111;
}

.funnel-step select, .funnel-step input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
}
.funnel-step select:focus, .funnel-step input:focus {
    border-color: #111;
}

.time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.time-slot {
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #111;
    transition: 0.3s;
}
.time-slot.selected {
    background: #111;
    color: #fff;
    border-color: #111;
}
.time-slot:disabled, .time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #eaeaea;
    border-color: #eaeaea;
}

.next-step-btn, #complete-booking-btn, #finish-btn {
    width: 100%;
    padding: 15px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}
.next-step-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cart-tray-content {
        flex-direction: column;
        gap: 15px;
    }
    #upsell-module {
        width: 100%;
        justify-content: space-between;
    }
    #continue-schedule-btn {
        width: 100%;
    }
    #booking-funnel-modal {
        padding: 30px 20px;
        width: 90%;
    }
}

/* Modern Animated "Add to Visit" Button */
.add-to-visit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d1a976 0%, #b78a58 100%);
    color: #111 !important;
    text-decoration: none !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(209, 169, 118, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    width: 120px;
    text-align: center;
    white-space: nowrap;
}

/* Pulse animation to attract clicks */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(209, 169, 118, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(209, 169, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(209, 169, 118, 0); }
}

.add-to-visit-btn:not(.added) {
    animation: pulse-glow 2s infinite;
}

/* Hover effects */
.add-to-visit-btn:not(.added):hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(209, 169, 118, 0.5);
    background: linear-gradient(135deg, #e3bd8c 0%, #c99b68 100%);
}

.add-to-visit-btn:not(.added):active {
    transform: translateY(1px) scale(0.98);
}

/* Shine effect on hover */
.add-to-visit-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: all 0.5s ease;
}

.add-to-visit-btn:hover::after {
    left: 150%;
}

@media (max-width: 768px) {
    .add-to-visit-btn { 
        width: 100%; 
        padding: 12px; 
    }
}

/* Franchise Page Styles */
.franchise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.franchise-cta-box {
    background: #f9f9f9;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .franchise-grid {
        grid-template-columns: 1fr;
    }
    
    .franchise-cta-box {
        padding: 30px 20px;
    }
}

/* --- Hero Booking Modal --- */
.hero-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hero-modal-overlay.active {
    display: flex;
    opacity: 1;
}
.hero-modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.hero-modal-overlay.active .hero-modal-content {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}
.modal-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}
.modal-desc {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* --- Fix Gallery Padding Issue --- */
.gallery-left {
    justify-content: flex-start !important;
    gap: 20px !important;
}

/* --- Fix Footer Mobile Layout (2 Columns) --- */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr !important;
    }
    .footer-col.brand-col, 
    .footer-col.newsletter-col {
        grid-column: span 2;
    }
}

/* --- Fix Text Visibility on Dark Overlays --- */
.hero-content .main-heading, 
.hero-content .description, 
.hero-content .badge {
    color: #ffffff !important;
}

.cta-banner .cta-heading {
    color: #ffffff !important;
}

.navbar .nav-logo {
    filter: brightness(0) invert(1) !important;
}

.navbar.scrolled .nav-logo {
    filter: none !important;
}

/* --- Move CTA Content to Top --- */
.cta-banner {
    align-items: flex-start !important;
}

/* --- Fix CTA Layer and Position --- */
.cta-banner {
    align-items: flex-end !important;
}
.cta-overlay {
    z-index: 1 !important;
}
.cta-content {
    z-index: 10 !important;
}

/* Animated Call Button for About Us Page */
.call-btn-animated {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease !important;
    cursor: pointer;
}
.call-btn-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(142, 61, 101, 0.15);
    background-color: #f1e0e8 !important;
}
.call-btn-animated:active {
    transform: translateY(1px);
}
