/* ==========================================================================
   CSS Variables & Theme Setup
   ========================================================================== */
:root {
    /* Color Palette */
    --clr-bg-light: #F5EFEB;
    /* Warm Beige */
    --clr-bg-dark: #2E211A;
    /* Dark Brown */
    --clr-accent: #D4AF37;
    /* Soft Gold / Accent */
    --clr-text-main: #2E211A;
    --clr-text-muted: #6B5D54;
    --clr-border: #E8DFD8;
    --honey-blond: #D3B795;
    --clr-bg-services: #EDE6DC;
    --clr-white: #FFFFFF;
    -clr-black: #000000;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1600px;
    --section-padding: 100px 0;
    --border-radius: 8px;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-light);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

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

/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.section {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.text-light {
    color: var(--clr-text-light);
}

.bg-dark {
    background-color: var(--clr-bg-dark);
}

.bg-light {
    background-color: #FFFFFF;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.text-accent {
    color: var(--clr-accent);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    min-width: 13.75rem;
    border: 1px solid transparent;
    transition: all var(--transition-fast);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--clr-bg-dark);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: #1A120E;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--honey-blond);
    color: var(--clr-bg-dark);
}

.btn-secondary:hover {
    background-color: var(--clr-white);
    color: var(--clr-bg-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(46, 33, 26, 0.2);
    color: var(--clr-bg-dark);
}

.btn-outline:hover {
    background-color: var(--clr-bg-dark);
    color: var(--clr-white);
}

.btn i,
.btn svg {
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero .btn-outline {
    border-color: var(--clr-text-light);
    color: var(--clr-text-light);
}

.hero .btn-outline:hover {
    background-color: var(--clr-text-light);
    color: var(--clr-bg-dark);
}

.btn-light {
    background-color: #FFFFFF;
    color: var(--clr-bg-dark);
}

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

.btn-outline-light {
    background-color: transparent;
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.btn-outline-light:hover {
    background-color: #FFFFFF;
    color: var(--clr-bg-dark);
}

.w-100 {
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    background-color: #EDE6DC;
    border-bottom: 1px solid rgba(46, 33, 26, 0.05);
    transition: all var(--transition-fast);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.left-nav {
    justify-self: start;
}

.center-logo {
    justify-self: center;
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 130px;
    width: auto;
    border-radius: 50%;
}



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

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link i {
    font-size: 0.9em;
    vertical-align: middle;
}

.nav-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 220px;
    height: 15px;
    background: transparent;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #E6DECC;
    min-width: 220px;
    padding: 15px 0;
    list-style: none;
    margin: 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    padding: 0;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--clr-text-main);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    letter-spacing: normal;
    transition: background-color 0.2s;
}

.nav-dropdown-menu li a:hover {
    background-color: rgba(46, 33, 26, 0.05);
}

.right-actions {
    justify-self: end;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
}

.mobile-login,
.mobile-booknow {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: calc(100vh - 151px);
    min-height: 600px;
    background-image: url('../images/main-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-text-light);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(46, 33, 26, 0.8) 0%, rgba(46, 33, 26, 0.4) 100%);
    z-index: 1;
}

.hero-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 80px;
    z-index: 2;
}

.hero-top-wrapper {
    width: 100%;
}

.hero-container {
    width: 100%;
}

.hero-top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 15px;
}

.top-bar-text {
    color: var(--clr-white);
}

.hero-tags {
    letter-spacing: 4px;
    text-transform: capitalize;
    color: var(--honey-blond);
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-content {
    max-width: 1130px;
    margin: auto 0;
}

.hero-title {
    font-size: 7.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 89%;
    color: var(--clr-white);
}

.hero-title em {
    color: var(--honey-blond);
}

.hero-text {
    font-size: 1.05rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 42.75rem;
    line-height: 153%;
    font-family: "Archivo", sans-serif;
    color: var(--clr-white);
}

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

/* Decorative SVG Circles */
.hero-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    z-index: 2;
    opacity: 0.4;
}

.decor-left {
    left: -150px;
}

.decor-right {
    right: -150px;
}

/* ==========================================================================
   Home Discount Banner
   ========================================================================== */
.home-discount-banner {
    position: relative;
    background-image: url('../images/home-discount-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0;
    overflow: hidden;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0 0;
}

.discount-banner-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.discount-banner-text strong {
    font-weight: 600;
    letter-spacing: 1px;
}

.home-discount-banner .banner-decor {
    width: 200px;
    height: 200px;
    opacity: 0.6;
}

.home-discount-banner .decor-left {
    left: -100px;
}

.home-discount-banner .decor-right {
    right: -100px;
}

@media (max-width: 768px) {
    .discount-banner-text {
        font-size: 1rem;
        padding: 0 15px;
        text-align: center;
    }

    .home-discount-banner .hero-decor {
        display: none;
    }
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
}

.services-header {
    display: flex;
    justify-content: space-between;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
}

.section-title {
    font-size: 5.625rem;
    font-weight: 700;
    line-height: 89%;
    color: var(--clr-text-main);
    font-family: var(--font-heading);
}

.section-desc {
    max-width: 450px;
    color: rgba(44, 30, 16, 0.50);
    text-align: right;
    line-height: 153%;
    font-size: 1.5rem;
    font-family: 'Archivo', sans-serif;
    margin-bottom: 15px;
    text-transform: capitalize;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    background-color: var(--clr-bg-services);
}

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

.service-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 420px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    z-index: 2;
}

.service-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    z-index: -2;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(46, 33, 26, 0.95) 0%, rgba(46, 33, 26, 0) 100%);
    z-index: -1;
    transition: opacity var(--transition-fast);
}

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

.service-content {
    color: var(--clr-text-light);
    width: 100%;
    position: relative;
    z-index: 2;
    color: var(--clr-white);
}

.service-title {
    font-size: 2.125rem;
    font-family: var(--font-heading);
    margin-bottom: 18px;
    font-weight: 500;
}

.service-price {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--honey-blond);
    font-weight: 500;
    line-height: 89%;
    font-family: 'Archivo', sans-serif;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-light);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.service-card:hover .service-link {
    opacity: 1;
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   Experience Section
   ========================================================================== */
.experience {
    background-image: url('../images/experience-bg.png');
    background-size: cover;
    background-position: center;
    background-color: var(--clr-bg-dark);
    color: var(--clr-white);
    position: relative;
    overflow: hidden;
}

.experience .container {
    position: relative;
    z-index: 2;
}

.experience-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    z-index: 0;
}

.experience-decor.decor-left {
    left: -100px;
}

.experience-decor.decor-right {
    right: -100px;
}

.experience-header {
    margin-bottom: 80px;
}

.experience-subtitle {
    font-size: 1.25rem;
    color: var(--honey-blond);
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.experience-title {
    font-size: 3.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--clr-white);
}

.experience-title em {
    font-style: italic;
    color: var(--honey-blond);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.experience-step {
    padding: 0 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.experience-step:last-child {
    border-right: none;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.125rem;
    color: var(--clr-white);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--honey-blond);
}

.step-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing {
    background-color: var(--clr-bg-services);
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.pricing-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--clr-text-main);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    color: var(--clr-text-main);
    font-weight: 600;
}

.pricing-box {
    border: 1px solid rgba(44, 30, 16, 0.10);
    background: #E6DECC;
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pricing-box-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(46, 33, 26, 0.1);
    padding-bottom: 20px;
}

.pricing-box-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-text-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.pricing-box-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 1.0625rem;
    color: rgba(46, 33, 26, 0.6);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(46, 33, 26, 0.1);
}

.pricing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pricing-name {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: rgba(46, 33, 26, 0.7);
    font-weight: 500;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: rgba(46, 33, 26, 0.8);
}

/* ==========================================================================
   The InHaus Difference (About) Section
   ========================================================================== */
.about {
    background-color: var(--clr-bg-services);
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

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

.about-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--honey-blond);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--clr-text-main);
    font-weight: 600;
    margin-bottom: 25px;
}

.about-title em {
    font-style: italic;
}

.about-text {
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    color: rgba(46, 33, 26, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

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

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(46, 33, 26, 0.1);
}

.feature-item {
    padding: 30px 20px 0 20px;
    border-right: 1px solid rgba(46, 33, 26, 0.1);
}

.feature-item:first-child {
    padding-left: 0;
}

.feature-item:last-child {
    border-right: none;
    padding-right: 0;
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--honey-blond);
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-text-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    color: rgba(46, 33, 26, 0.6);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-bg-dark);
    background-image: url('../images/footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--clr-white);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-decor {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 0;
    pointer-events: none;
}

.footer-decor.decor-top-left {
    top: -100px;
    left: -100px;
}

.footer-decor.decor-top-right {
    top: -100px;
    right: -100px;
}

.footer-decor.decor-bottom-left {
    bottom: -100px;
    left: -100px;
}

.footer-decor.decor-bottom-right {
    bottom: -100px;
    right: -100px;
}

.footer-top {
    margin-bottom: 80px;
}

.footer-subtitle {
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--clr-white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-cta-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

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

.footer-logo-img {
    display: block;
    margin-bottom: 25px;
}

.footer-logo-img img {
    width: 80px;
    height: 80px;
    border-radius: 0;
    object-fit: contain;
}

.footer-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--clr-white);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--honey-blond);
    border-color: var(--honey-blond);
    color: var(--clr-bg-dark);
}

.footer-title {
    font-family: "Archivo", sans-serif;
    font-size: 1rem;
    line-height: 153%;
    font-weight: 500;
    color: var(--honey-blond);
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

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

.footer-links a {
    font-family: 'Archivo', sans-serif;
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Archivo', sans-serif;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom-links span {
    font-family: 'Archivo', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Login Section
   ========================================================================== */
.login-section {
    padding: 80px 20px;
}

.login-wrapper {
    display: flex;
    background-color: #E6DECC;
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
}

.login-image-side {
    width: 50%;
    position: relative;
    min-height: 600px;
}

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

.login-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(46, 33, 26, 0.9) 0%, rgba(46, 33, 26, 0.1) 100%);
    z-index: 1;
}

.login-image-content {
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--clr-white);
}

.login-image-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.login-image-title em {
    font-style: italic;
    color: var(--honey-blond);
}

.login-image-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.login-form-side {
    width: 50%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-form-header {
    margin-bottom: 50px;
}

.login-title {
    font-family: var(--font-heading);
    font-size: 2.125rem;
    color: var(--clr-text-main);
    font-weight: 600;
    margin-bottom: 10px;
}

.login-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    color: var(--clr-text-muted);
}

.login-subtitle a {
    color: var(--clr-text-main);
    text-decoration: underline;
    font-weight: 500;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(46, 33, 26, 0.2);
    padding: 15px 0;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    color: var(--clr-text-main);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--clr-text-main);
}

.form-control::placeholder {
    color: rgba(46, 33, 26, 0.4);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-size: 1.0625rem;
    color: var(--clr-text-muted);
    cursor: pointer;
}

.custom-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: var(--clr-bg-dark);
}

.forgot-password {
    font-family: 'Archivo', sans-serif;
    font-size: 1.0625rem;
    color: var(--clr-text-muted);
    transition: color var(--transition-fast);
}

.forgot-password:hover {
    color: var(--clr-text-main);
}

.btn-block {
    width: 100%;
    padding: 16px;
}

/* ==========================================================================
   Services Page
   ========================================================================== */
.page-hero {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/service-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--clr-white);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 33, 26, 0.6);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.hero-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--honey-blond);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1;
}

.page-hero-main {
    background-image: url('../images/main-hero.jpg');
}

.hero-content-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-no-margin {
    margin-bottom: 0;
}

.page-subtitle {
    font-family: 'Archivo', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.service-details-section {
    background-color: var(--clr-bg-services);
}

.service-category-block {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: stretch;
}

.service-category-block:last-child {
    margin-bottom: 0;
}

.service-category-block.reverse {
    flex-direction: row-reverse;
}

.service-category-image {
    flex: 1;
    position: relative;
    display: flex;
}

.service-category-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.service-category-content {
    flex: 1;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-category-content .btn {
    align-self: flex-start;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--clr-text-main);
    margin-bottom: 15px;
    line-height: 1.1;
}

.category-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 1.0625rem;
    color: rgba(46, 33, 26, 0.6);
    margin-bottom: 40px;
}

.treatment-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.treatment-item {
    border-bottom: 1px solid rgba(46, 33, 26, 0.1);
    padding-bottom: 20px;
}

.treatment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.treatment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 10px;
}

.treatment-name {
    opacity: 0.8;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--clr-text-main);
}

.treatment-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-text-main);
}

.treatment-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 1rem;
    color: rgba(46, 33, 26, 0.7);
    line-height: 1.6;
}

/* Promo Banner */
.promo-banner {
    padding: 80px 0;
}

.promo-box {
    position: relative;
    background-image: url('../images/promo-bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(46, 33, 26, 0.1);
    overflow: hidden;
}

.promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 37px 80px;
}

.promo-badge {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: var(--clr-bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    color: var(--honey-blond);
    flex-shrink: 0;
}

.promo-badge::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 2px dashed rgba(211, 183, 149, 0.4);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.promo-text-wrap {
    flex: 1;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--clr-text-main);
    margin-bottom: 15px;
    line-height: 1.1;
}

.promo-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 1.125rem;
    color: rgba(46, 33, 26, 0.7);
    line-height: 1.6;
}

/* ==========================================================================
   Page Headers / Breadcrumbs
   ========================================================================== */
.hero-breadcrumb {
    font-family: var(--font-heading);
    color: var(--honey-blond);
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero-breadcrumb em {
    font-style: italic;
}

.hero-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.hero-breadcrumb a:hover {
    opacity: 0.8;
}

/* ==========================================================================
   Eyelash Services Page
   ========================================================================== */
.hero-eyelash {
    background-image: url('../images/service-banner.png');
}

.service-treatments-section {
    padding: var(--section-padding);
    background-color: var(--clr-bg-services);
}

.treatments-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.treatment-card {
    background-color: transparent;
    border: 1px solid rgba(46, 33, 26, 0.1);
    padding: 40px;
    width: 100%;
}

@media (min-width: 993px) {
    .treatment-card {
        width: calc(50% - 20px);
    }
}

.card-divider {
    border: none;
    border-top: 1px solid rgba(46, 33, 26, 0.1);
    margin: 20px 0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--clr-text-main);
    margin-bottom: 0;
    line-height: 89%;
    text-transform: capitalize;
}

.card-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 89%;
    color: var(--clr-text-main);
    text-transform: capitalize;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 153%;
    color: rgba(46, 33, 26, 0.7);
}

.card-desc {
    font-family: 'Archivo', sans-serif;
    color: rgba(46, 33, 26, 0.6);
    line-height: 153%;
    font-weight: 700;
    font-size: 1.0625rem;
    margin-bottom: 25px;
}

.card-benefits-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 153%;
    margin-bottom: 15px;
    color: rgba(46, 33, 26, 0.8);
}

.card-benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 0;
}

.card-benefits-list li {
    margin-bottom: 0;
    color: rgba(46, 33, 26, 0.6);
    font-family: 'Archivo', sans-serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 153%;
}

.guidelines-section {
    padding: var(--section-padding);
    padding-bottom: 0;
}

.guidelines-banner {
    display: flex;
    background-color: var(--clr-bg-dark);
    background-image: url('../images/guidelines-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: var(--clr-white);
    overflow: hidden;
}

.guidelines-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    padding: 60px 80px;
}

.guideline-main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 89%;
    margin-bottom: 25px;
    color: var(--honey-blond);
}

.guideline-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.guideline-subtitle,
.guidelines-left h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 500;
    line-height: 153%;
    letter-spacing: 0.2rem;
    margin-bottom: 20px;
    color: var(--clr-white);
    text-transform: uppercase;
}

.guideline-list-num,
.guidelines-left ol {
    padding-left: 15px;
    list-style-type: decimal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.guideline-list-num li,
.guidelines-left ol li {
    margin-bottom: 12px;
    padding-left: 10px;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 153%;
    color: rgba(255, 255, 255, 0.7);
}

.guideline-list-bullets,
.guidelines-left ul {
    padding-left: 15px;
    list-style: disc;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.guideline-list-bullets li,
.guidelines-left ul li {
    margin-bottom: 12px;
    align-items: flex-start;
    gap: 10px;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 153%;
    color: rgba(255, 255, 255, 0.7);
}

.guidelines-left p {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 153%;
    margin-bottom: 15px;
}

.diamond-bullet {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.guidelines-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
}

.guidelines-cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 89%;
    margin-bottom: 15px;
}

.guidelines-cta-desc {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn-book-lash {
    background-color: var(--clr-bg-services);
    color: var(--clr-bg-dark);
    border-color: var(--clr-bg-services);
}

.btn-book-lash:hover {
    background-color: var(--clr-white);
    border-color: var(--clr-white);
    color: var(--clr-bg-dark);
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--clr-bg-light);
    /* #F5F2EC or similar */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-block {
    padding: 20px 0;
}

.contact-eyebrow {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(46, 33, 26, 0.7);
    text-transform: capitalize;
    display: block;
    margin-bottom: 10px;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-text-main);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-intro {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: rgba(46, 33, 26, 0.6);
    margin-bottom: 40px;
    line-height: 1.8;
}

.info-card {
    display: flex;
    align-items: center;
    background-color: #EAE6DD;
    /* Slightly darker than bg-light */
    padding: 20px 25px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background-color: var(--clr-bg-dark);
    color: var(--honey-blond);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(46, 33, 26, 0.6);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.info-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-text-main);
    font-weight: 600;
    margin: 0;
}

.info-value a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
}

.info-value a:hover {
    color: var(--honey-blond);
    opacity: 0.9;
}

.info-value-small {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--clr-text-main);
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
    letter-spacing: 1px;
}

.contact-form-block {
    border: 1px solid rgba(46, 33, 26, 0.1);
    padding: 50px;
    border-radius: 4px;
}

.contact-form-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-text-main);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-form-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(46, 33, 26, 0.6);
    margin-bottom: 40px;
}

/* Contact Form */
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-control-line {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(46, 33, 26, 0.2);
    padding: 15px 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--clr-text-main);
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-control-line::placeholder {
    color: rgba(46, 33, 26, 0.4);
}

.form-control-line:focus {
    border-bottom-color: var(--clr-bg-dark);
}

select.form-control-line {
    appearance: none;
    cursor: pointer;
    color: rgba(46, 33, 26, 0.6);
    /* Slightly faded for dropdown default */
}

select.form-control-line option {
    color: var(--clr-text-main);
}

.select-wrapper {
    position: relative;
}

.select-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(46, 33, 26, 0.6);
}

.textarea-line {
    resize: none;
    height: 120px;
}



/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        gap: 40px;
    }

    .about-container {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .service-category-block,
    .service-category-block.reverse {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }

    .service-category-image img {
        height: 400px;
        width: 100%;
        object-fit: cover;
    }

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

    .guidelines-banner {
        flex-direction: column;
    }

    .guidelines-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
    }

    .login-wrapper {
        flex-direction: column;
    }

    .login-image-side {
        width: 100%;
        min-height: 400px;
    }

    .login-form-side {
        width: 100%;
        padding: 50px 30px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .logo-img {
        height: 100px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .logo-img {
        height: 80px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-desc {
        text-align: left;
    }

    .header-container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .center-logo {
        position: relative;
        z-index: 1000;
    }

    .header-actions {
        position: static;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .header-actions .btn-primary {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
        color: var(--clr-text-main);
        position: absolute;
        left: 15px;
        font-size: 2rem;
        z-index: 1000;
    }

    .hero-active .header:not(.scrolled) .mobile-menu-btn {
        color: var(--clr-text-light);
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: -100%;
        right: auto;
        width: 300px;
        height: 100vh;
        background-color: var(--clr-bg-light);
        flex-direction: column;
        padding: 100px 40px;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
        transition: left var(--transition-fast);
        z-index: 999;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-link {
        color: var(--clr-text-main) !important;
        font-size: 1.2rem;
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        padding: 10px 0 0 20px;
        border: none;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-dropdown-wrapper:hover .nav-dropdown-menu,
    .nav-dropdown-wrapper:active .nav-dropdown-menu,
    .nav-dropdown-wrapper:focus-within .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu li a {
        color: var(--clr-text-main) !important;
        padding: 8px 0;
        font-size: 1.1rem;
    }

    .nav-dropdown-menu li a:hover {
        background: transparent;
        color: var(--clr-text-accent) !important;
        padding-left: 5px;
    }

    .mobile-login {
        display: block;
        margin-top: 40px;
    }

    .mobile-booknow {
        display: block;
        margin-top: 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        border-bottom: none;
        padding-bottom: 0;
    }

    .pricing-grid,
    .about-container,
    .contact-grid,
    .pricing-layout,
    .about-top,
    .experience-grid,
    .services-grid,
    .booking-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

    .footer-main>.footer-col:nth-child(1),
    .footer-main>.footer-col:nth-child(4) {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links a {
        font-size: 1.1rem;
    }

    .experience-step {
        padding: 0 0 40px 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        margin-bottom: 40px;
    }

    .experience-step:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .about-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-item {
        border-bottom: 1px solid rgba(46, 33, 26, 0.1);
        border-right: 1px solid rgba(46, 33, 26, 0.1);
        padding: 30px 20px;
    }

    .feature-item:nth-child(even) {
        border-right: none;
    }

    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        border-bottom: none;
    }

    .about-img {
        height: 400px;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
        width: 120px;
        height: 120px;
        padding: 20px;
    }

    .badge-number {
        font-size: 1.8rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .category-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .experience-title,
    .pricing-title,
    .about-title {
        font-size: 2.5rem;
    }

    .footer-cta-title,
    .contact-form-heading {
        font-size: 2rem;
    }

    .pricing-box-title,
    .step-title {
        font-size: 1.8rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .treatment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .card-meta {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .treatment-card {
        padding: 30px;
    }

    .card-benefits-list {
        grid-template-columns: 1fr;
    }

    .card-header {
        flex-direction: column;
        gap: 10px;
    }

    .guidelines-left,
    .guidelines-right {
        padding: 40px 20px;
    }

    .promo-title {
        font-size: 2.2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info-block,
    .contact-form-block {
        padding: 30px 20px;
    }
}

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

    .footer-container {
        grid-template-columns: 1fr;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(46, 33, 26, 0.1) !important;
    }

    .feature-item:last-child {
        border-bottom: none !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

/* ==========================================================================
   Booking Wizard Styles
   ========================================================================== */
.booking-main {
    background-color: #F2EFE8;
    min-height: calc(100vh - 200px);
}

.booking-stepper-section {
    padding-top: 50px;
    margin-bottom: 30px;
}

.stepper-wrapper-new {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.step-new {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-circle-new {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #EBE6DA;
    color: #A39D94;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-new.active .step-circle-new,
.step-new.completed .step-circle-new {
    background-color: #2E211A;
    color: #F2EFE8;
}

.step-line-new {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(46, 33, 26, 0.15);
    margin: 0 15px;
}

.wizard-container {
    background-color: #EBE6DA;
    padding: 50px;
    max-width: 1100px;
    margin: 0 auto 80px auto;
    transition: margin-top 0.3s ease;
}

.wizard-container.success-mode {
    margin-top: 100px;
}

.wizard-header {
    margin-bottom: 30px;
}

.wizard-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #2E211A;
    margin-bottom: 5px;
}

.wizard-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(46, 33, 26, 0.6);
    margin-bottom: 15px;
}

.wizard-divider {
    border: 0;
    height: 1px;
    background: rgba(46, 33, 26, 0.1);
    margin: 0;
}

/* Step 1 Grid */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-card-selectable {
    background-color: #F6F4EF;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.service-card-selectable:hover {
    background-color: #FFF;
}

.service-card-selectable.selected {
    border-color: #2E211A;
    background-color: #FFF;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #2E211A;
    margin-bottom: 5px;
}

.service-card-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(46, 33, 26, 0.6);
    margin: 0;
}

.wizard-actions {
    display: flex;
    margin-top: 40px;
}

.wizard-actions.right-align {
    justify-content: flex-end;
}

.wizard-actions.split {
    justify-content: space-between;
}

.btn-wizard-dark {
    background-color: #2E211A;
    color: #FFF;
    border: none;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-wizard-dark:hover {
    background-color: #1A130E;
    color: #FFF;
}

.btn-wizard-dark:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-wizard-outline {
    background-color: transparent;
    color: #2E211A;
    border: 1px solid #2E211A;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wizard-outline:hover {
    background-color: #2E211A;
    color: #FFF;
}

.btn-wizard-back {
    background-color: #61584F;
    color: #EBE7DE;
    border: none;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    margin-bottom: 40px !important;
    /* Force spacing below button */
}

.btn-wizard-back:hover {
    background-color: #4A423B;
    color: #FFF;
}

/* Step 1.5 Treatments */
.treatments-list-new {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.treatment-row-selectable {
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.treatment-row-selectable:hover {
    background-color: #FFF;
}

.treatment-row-selectable.selected {
    border-color: #2E211A;
    background-color: #FFF;
}

.treatment-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #2E211A;
    margin-bottom: 5px;
}

.treatment-info p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(46, 33, 26, 0.6);
    margin: 0;
}

.treatment-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #2E211A;
}

/* Step 2 Date/Time */
.datetime-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.calendar-new {
    background-color: #F6F4EF;
    padding: 25px;
}

.calendar-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calendar-month-new {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #2E211A;
    margin-bottom: 0;
}

.calendar-legend {
    display: flex;
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(46, 33, 26, 0.7);
    font-weight: 500;
}

.legend-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.legend-holiday {
    background-color: #BDB3A6;
}

.legend-booked {
    background-color: #FF6B6B;
}

.calendar-days-new,
.calendar-dates-new {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 10px;
}

.calendar-days-new div {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: #2E211A;
    margin-bottom: 10px;
}

.cal-date {
    height: 35px;
    width: 35px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #2E211A;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    font-weight: 600;
}

.cal-date:not(.holiday-closed):not(.fully-booked):hover {
    background-color: rgba(46, 33, 26, 0.1);
}

.cal-date.active {
    background-color: #2E211A;
    color: #F2EFE8;
}

.cal-date.disabled {
    color: rgba(46, 33, 26, 0.2);
    cursor: not-allowed;
    pointer-events: none;
}

.cal-date.holiday-closed {
    color: rgba(46, 33, 26, 0.3);
    cursor: not-allowed;
    pointer-events: none;
}

.cal-date.fully-booked {
    color: #FF6B6B;
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
}

.timeslot-new {
    padding-left: 20px;
}

.timeslot-title-new {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #2E211A;
    margin-bottom: 20px;
}

.timeslot-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.time-slot {
    background-color: #F6F4EF;
    padding: 12px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #2E211A;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.time-slot:hover {
    background-color: #FFF;
}

.time-slot.active {
    border-color: #2E211A;
    background-color: #FFF;
}

/* Step 3 Review & Confirm */
.review-block {
    background-color: #F6F4EF;
    padding: 30px;
    margin-bottom: 20px;
}

.review-block-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #2E211A;
    margin-bottom: 20px;
}

.review-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.review-label {
    color: rgba(46, 33, 26, 0.6);
}

.review-value {
    color: #2E211A;
}

.total-label,
.total-value {
    color: #C68E4F;
    font-weight: 600;
}

.form-row-underline {
    display: flex;
    gap: 30px;
}

.form-group-underline {
    flex: 1;
    margin-bottom: 20px;
}

.input-underline {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(46, 33, 26, 0.2);
    background: transparent;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #2E211A;
    transition: border-color 0.3s ease;
}

.input-underline::placeholder {
    color: rgba(46, 33, 26, 0.4);
}

.input-underline:focus {
    outline: none;
    border-bottom-color: #2E211A;
}

/* FAQ Section */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #F2EFE8;
    border: none;
    border-radius: 4px;
    overflow: hidden;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    cursor: pointer;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #2E211A;
    margin: 0;
    font-weight: 700;
}

.faq-icon {
    font-size: 1.2rem;
    color: rgba(46, 33, 26, 0.6);
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-body p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(46, 33, 26, 0.7);
    margin: 0;
    padding: 0 30px 25px 30px;
}

.faq-item.active .faq-body {
    max-height: 200px;
    /* arbitrary large enough value */
}

/* Refactored Inline Styles */
.bg-booking-body {
    background-color: #F2EFE8;
}

.btn-split-half {
    max-width: 48%;
}

.flex-2 {
    flex: 2;
}

.flex-1 {
    flex: 1;
}

.success-step-container {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.success-icon i {
    font-size: 80px;
    color: #2E211A;
}

.success-message {
    max-width: 600px;
}

.booking-faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #EBE6DA;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-subtitle {
    font-size: 0.85rem;
    color: rgba(46, 33, 26, 0.6);
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-main-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #2E211A;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-icon i {
    font-size: 1.5rem;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    min-width: 200px;
    height: 15px;
    background: transparent;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--clr-text-main);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: capitalize;
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background-color: var(--clr-white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    border-radius: 4px;
    overflow: hidden;
}

.user-dropdown:hover .user-dropdown-menu {
    display: flex;
}

.user-dropdown-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(46, 33, 26, 0.05);
    transition: background-color 0.2s ease;
}

.user-dropdown-item:last-child {
    border-bottom: none;
}

.user-dropdown-item:hover {
    background-color: #F6F4EF;
}

.user-dropdown-item.logout {
    color: #d32f2f;
}

.user-dropdown-item.logout i {
    color: #d32f2f;
}

.btn-logout {
    color: #d32f2f !important;
    border-color: #d32f2f !important;
}

.btn-logout:hover {
    background-color: #d32f2f !important;
    color: var(--clr-white) !important;
}

/* Booking History Page */
.booking-history-section {
    padding: 80px 0;
    background-color: #F6F4EF;
    min-height: calc(100vh - 151px);
}

.tabs-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    border-bottom: 1px solid rgba(46, 33, 26, 0.1);
    margin-bottom: 50px;
}

.tab-link {
    padding: 15px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(46, 33, 26, 0.5);
    cursor: pointer;
    position: relative;
    letter-spacing: 1px;
}

.tab-link.active {
    color: var(--clr-text-main);
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #C68E4F;
}

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

.booking-card {
    background-color: #F2EFE8;
    border: 1px solid rgba(46, 33, 26, 0.08);
    padding: 30px;
    border-radius: 4px;
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.booking-ref {
    font-size: 0.85rem;
    color: #C68E4F;
    font-weight: 500;
}

.booking-badge {
    background-color: rgba(198, 142, 79, 0.15);
    color: #C68E4F;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.booking-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--clr-text-main);
    margin-bottom: 15px;
    font-weight: 600;
}

.booking-detail-row {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(46, 33, 26, 0.7);
    margin-bottom: 15px;
}

.booking-detail-row span {
    color: var(--clr-text-main);
}

.booking-card-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-reschedule {
    flex: 1;
    border: 1px solid var(--clr-text-main);
    background: transparent;
    color: var(--clr-text-main);
    padding: 12px 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-reschedule:hover {
    background: var(--clr-text-main);
    color: var(--clr-white);
}

.btn-cancel-booking {
    flex: 1;
    border: 1px solid #ff4d4d;
    background: transparent;
    color: #ff4d4d;
    padding: 12px 0;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-cancel-booking:hover {
    background: #ff4d4d;
    color: var(--clr-white);
}

/* Custom Modals */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.custom-modal {
    background: #EBE6DA;
    padding: 40px;
    border-radius: 4px;
    max-width: 900px;
    width: 90%;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.custom-modal-overlay.active .custom-modal {
    transform: translateY(0);
}

.modal-forgot-password {
    max-width: 550px;
}

.modal-back-link {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(46, 33, 26, 0.6);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.modal-back-link:hover {
    color: var(--clr-text-main);
}

.text-start {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.modal-cancel-content {
    max-width: 600px;
}

.modal-cancel-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-text-main);
    margin-bottom: 20px;
}

.modal-cancel-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(46, 33, 26, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-actions-row {
    display: flex;
    gap: 15px;
}

.btn-modal-cancel {
    flex: 1;
    background: transparent;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    padding: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-modal-cancel:hover {
    background: rgba(255, 77, 77, 0.1);
}

.btn-modal-keep {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(46, 33, 26, 0.2);
    color: var(--clr-text-main);
    padding: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-modal-keep:hover {
    background: rgba(46, 33, 26, 0.05);
}

.btn-modal-danger-solid {
    flex: 1;
    background: #ff5252;
    border: 1px solid #ff5252;
    color: var(--clr-white);
    padding: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    letter-spacing: 1.5px;
}

.btn-modal-danger-solid:hover {
    background: #ff3333;
}

.btn-modal-save {
    flex: 1;
    background: var(--clr-text-main);
    border: 1px solid var(--clr-text-main);
    color: var(--clr-white);
    padding: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-modal-save:hover {
    background: #1a120e;
}

/* Edit Profile Modal */
.edit-profile-modal {
    background: #FFFFFF;
    max-width: 480px;
    padding: 35px 40px;
    border-radius: 8px;
}

.edit-profile-avatar-container {
    text-align: center;
    margin-bottom: 25px;
}

.edit-profile-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.edit-profile-form {
    text-align: left;
    margin-bottom: 30px;
}

.edit-profile-form .form-group {
    margin-bottom: 20px;
}

.edit-profile-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--clr-text-main);
    margin-bottom: 8px;
}

.edit-profile-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #EAE5D9;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-text-main);
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.edit-profile-form .form-control:focus {
    border-color: var(--clr-text-main);
}

.edit-profile-modal .btn-modal-keep {
    border-radius: 8px;
    border: 1px solid var(--clr-text-main);
    color: var(--clr-text-main);
    background: #FFFFFF;
    font-weight: 500;
}

/* ==========================================================================
   Profile Page
   ========================================================================== */

.profile-section {
    padding: 60px 0 100px;
    background-color: #F2EFE8;
    min-height: calc(100vh - 151px);
}

.profile-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-text-main);
    margin-bottom: 50px;
    font-weight: 600;
}

/* User Info Row */
.user-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.user-info-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.user-details h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-text-main);
    margin-bottom: 5px;
    font-weight: 500;
}

.user-details p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(46, 33, 26, 0.6);
    margin-bottom: 5px;
}

.user-actions {
    display: flex;
    gap: 15px;
}

.btn-profile-edit {
    border: 1px solid rgba(46, 33, 26, 0.3);
    background: transparent;
    color: var(--clr-text-main);
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-profile-edit:hover {
    background: rgba(46, 33, 26, 0.05);
}

.btn-profile-logout {
    background: #ff5252;
    border: none;
    color: var(--clr-white);
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-profile-logout:hover {
    background: #ff3333;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Points Card */
.points-card {
    background-color: #2B1D14;
    border-radius: 12px;
    padding: 35px 40px;
    position: relative;
    overflow: hidden;
    color: var(--clr-white);
}

.points-decor {
    position: absolute;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1.5;
    fill: rgba(255, 255, 255, 0.02);
}

.points-decor-1 {
    bottom: -30px;
    right: -10px;
    width: 180px;
    height: 180px;
}

.points-decor-2 {
    top: -30px;
    left: -20px;
    width: 140px;
    height: 140px;
}

.points-card-inner {
    position: relative;
    z-index: 2;
}

.points-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.points-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    color: #F6F3ED;
}

.points-badge {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #E6DECC;
}

.points-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #AA8D6F;
    margin-bottom: 30px;
    font-weight: 400;
}

.points-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #F6F3ED;
    margin: 0;
}

/* Preference Card */
.preference-section-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-text-main);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.preference-card {
    background: var(--clr-white);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.preference-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.preference-icon {
    font-size: 1.8rem;
    color: var(--clr-text-main);
}

.preference-text h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--clr-text-main);
    margin-bottom: 5px;
}

.preference-text p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(46, 33, 26, 0.6);
    margin: 0;
}

/* Custom Toggle */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: none;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--clr-text-main);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='none' stroke='%232E211A' stroke-linecap='round' stroke-linejoin='round' stroke-width='24' d='M216 72 104 184l-56-56'/%3E%3C/svg%3E");
}

/* Referral Section */
.referral-section-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-main);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.referral-card {
    background: var(--clr-white);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(46, 33, 26, 0.05);
}

.referral-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.referral-header i {
    font-size: 1.5rem;
    color: var(--clr-text-main);
}

.referral-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--clr-text-main);
    margin: 0;
}

.referral-box {
    border: 1.5px dashed rgba(46, 33, 26, 0.3);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
}

.referral-box p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(46, 33, 26, 0.8);
    margin-bottom: 20px;
}

.referral-code {
    font-family: var(--font-body);
    font-size: 2.5rem;
    color: var(--clr-text-main);
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 500;
}

.btn-share {
    background: var(--clr-text-main);
    color: var(--clr-white);
    border: none;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 4px;
}

.btn-share:hover {
    background: #1A130E;
}

/* Payment Options */
.payment-options-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.payment-option-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: #EAE5D9;
    border: 1px solid rgba(46, 33, 26, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option-card:hover {
    border-color: var(--clr-text-main);
}

.payment-radio {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--clr-text-main);
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin: 0;
}

.payment-radio:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--clr-text-main);
    border-radius: 50%;
}

.payment-option-content h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--clr-text-main);
    margin-bottom: 5px;
    font-weight: 600;
}

.payment-option-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(46, 33, 26, 0.7);
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .booking-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .wizard-container {
        padding: 25px 15px;
    }

    .services-grid-new {
        grid-template-columns: 1fr 1fr;
    }

    .datetime-wrapper-new {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeslot-new {
        padding-left: 0;
    }

    .form-row-underline {
        flex-direction: column;
        gap: 0;
    }

    .wizard-actions.split {
        flex-direction: column;
        gap: 15px;
    }

    .wizard-actions.split button {
        max-width: 100% !important;
    }

    .user-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .user-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .btn-profile-edit, .btn-profile-logout {
        flex: 1;
        justify-content: center;
    }

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

    .profile-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .points-card {
        padding: 25px 20px;
    }

    .points-value {
        font-size: 2.2rem;
    }

    .preference-card {
        padding: 20px;
    }

    .referral-card {
        padding: 25px 20px;
    }

    .referral-box {
        padding: 25px 20px;
    }

    .referral-code {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .treatment-row-selectable {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .service-card-selectable {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .info-value {
        font-size: 1.1rem;
        word-break: break-word;
    }

    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 15px;
    }

    .promo-box {
        background-size: cover;
    }

    .promo-title {
        font-size: 2.2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .card-title {
        font-size: 1.4rem;
    }

    .card-price {
        font-size: 1.4rem;
    }

    .guidelines-cta-title {
        font-size: 1.8rem;
    }

    .treatment-card {
        padding: 20px 15px;
    }

    /* Booking History & Appointment Mobile Fixes */
    .tabs-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .booking-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .booking-card-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-reschedule,
    .btn-cancel-booking {
        width: 100%;
    }

    .stepper-wrapper-new {
        max-width: 100%;
    }

    .step-circle-new {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .custom-modal {
        padding: 25px 20px;
    }

    .wizard-title {
        font-size: 1.8rem;
    }

    .wizard-subtitle {
        font-size: 0.85rem;
    }

    .modal-back-link {
        font-size: 0.9rem;
    }

    .calendar-header-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .edit-profile-avatar {
        width: 80px;
        height: 80px;
    }

    .payment-option-card {
        padding: 15px 20px;
        gap: 15px;
    }

    .payment-option-content h4 {
        font-size: 1.1rem;
    }

    .payment-option-content p {
        font-size: 0.85rem;
    }
}