/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Colors */
    --primary-gold: #BD9766;
    --primary-gold-dark: #a8854d;
    --primary-gold-light: #d4b88a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --bg-dark: #2a2a2a;
    --border-color: #e5e5e5;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1200px;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

/* Trademark and Registration Symbols */
sup {
    font-size: 0.4em;
    vertical-align: super;
    line-height: 0;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.logo {
    margin-left: -20px;
}

.logo-accent {
    color: var(--primary-gold);
}

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

.nav a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
}

.nav .nav-contact-link {
    display: none;
}

.nav .btn-book-header {
    display: none;
}

.nav a:not(.btn-book)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav a:not(.btn-book):hover::after {
    width: 100%;
}

.btn-book {
    background: var(--primary-gold);
    color: var(--bg-white);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-book:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 151, 102, 0.3);
}

/* Header Search */
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.header-search .search-icon {
    position: absolute;
    left: 12px;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition-fast);
}

.header-search input {
    padding: 10px 15px 10px 38px;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-light);
    width: 200px;
    transition: var(--transition-smooth);
}

.header-search input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--bg-white);
    width: 250px;
    box-shadow: 0 2px 8px rgba(189, 151, 102, 0.15);
}

.header-search input:focus+.search-icon,
.header-search input:focus~.search-icon {
    color: var(--primary-gold);
}

.header-search input::placeholder {
    color: var(--text-light);
    font-size: 13px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: -20px;
}

.phone-number {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
}

.email-icon {
    display: flex;
    align-items: center;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.email-icon svg {
    stroke: var(--primary-gold);
}

.email-icon:hover {
    transform: translateY(-2px);
}

.phone-number:hover {
    color: var(--primary-gold-dark);
}

.btn-book-header {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
}

.btn-book-header:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 151, 102, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* ===================================
   Announcement Bar
   =================================== */
.announcement-bar {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: linear-gradient(to right,
            #a8854d 0%,
            var(--primary-gold) 20%,
            var(--primary-gold) 80%,
            #a8854d 100%);
    color: var(--bg-white);
    text-align: center;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar p {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 60vh;
    margin-top: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: -15%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%);
    z-index: 0;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--bg-white);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--bg-white);
    padding: 16px 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(189, 151, 102, 0.4);
}

.btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(189, 151, 102, 0.5);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-dark);
    padding: 16px 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid var(--text-dark);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===================================
   Services Introduction
   =================================== */
.services-intro {
    padding: 60px 0 40px;
    background: var(--bg-white);
    text-align: center;
}

.services-intro-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    margin: 0;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 40px 0 80px;
    background: var(--bg-white);
}

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

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
    transition: var(--transition-smooth);
}

.service-card:hover .service-image::after {
    background: linear-gradient(to bottom, rgba(189, 151, 102, 0.3), rgba(189, 151, 102, 0.6));
}

.service-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* ===================================
   Search Results Dropdown
   =================================== */
.header-search {
    position: relative;
}

.search-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
}

.search-result-item {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--bg-light);
}

.search-result-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.search-result-url {
    font-size: 12px;
    color: var(--text-light);
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

/* Scrollbar styling for search results */
.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* ===================================
   Global Section Titles
   =================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

/* ===================================
   Popular Treatments Section
   =================================== */
.popular-treatments {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
    margin-top: -30px;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.treatment-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    text-align: center;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(189, 151, 102, 0.2);
}

.treatment-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.treatment-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 20px 15px 10px;
}

.treatment-card p {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 15px 20px;
    line-height: 1.6;
}

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

/* ===================================
   Bootcamp Programs Section
   =================================== */
.bootcamp-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.bootcamp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.bootcamp-card {
    background: var(--bg-white);
    padding: 45px 30px 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--primary-gold);
    min-height: 320px;
}

.bootcamp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(189, 151, 102, 0.2);
    border-top-color: var(--primary-gold-dark);
}

.bootcamp-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #d4a574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--bg-white);
    letter-spacing: 1px;
}

.bootcamp-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.bootcamp-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.bootcamp-details {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.bootcamp-details span {
    display: inline;
}

.bootcamp-link {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.bootcamp-link:hover {
    color: var(--primary-gold-dark);
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-white);
    position: relative;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(189, 151, 102, 0.3) 20%,
            rgba(189, 151, 102, 0.6) 50%,
            rgba(189, 151, 102, 0.3) 80%,
            transparent 100%);
}

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

.why-card {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #d4a574 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--bg-white);
    letter-spacing: 1px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Meet the Founder Section
   =================================== */
.founder-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.founder-info h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.founder-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.founder-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.founder-info .btn-secondary {
    margin-top: 10px;
}

@media (max-width: 968px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image {
        max-width: 400px;
        height: 450px;
        margin: 0 auto;
    }

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

    .founder-info h3 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .founder-image {
        height: 400px;
    }

    .founder-info h3 {
        font-size: 28px;
    }

    .founder-info p {
        text-align: left;
    }
}

/* ===================================
   Home CTA Section
   =================================== */
.home-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    text-align: center;
    color: var(--bg-white);
}

.home-cta h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.home-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-primary {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--bg-white);
    padding: 16px 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(189, 151, 102, 0.4);
}

.btn-cta-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(189, 151, 102, 0.5);
}

.btn-cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--bg-white);
    padding: 16px 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid var(--bg-white);
    transition: var(--transition-smooth);
}

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

/* ===================================
   Instagram Feed Section
   =================================== */
.instagram-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px;
}

.instagram-header .section-title {
    margin-bottom: 15px;
}

.instagram-header .section-subtitle {
    margin-top: 0;
    margin-bottom: 20px;
}

.instagram-handle {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-gold);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.instagram-handle:hover {
    color: var(--primary-gold-dark);
    transform: translateY(-2px);
}

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

.instagram-post {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-post .instagram-media {
    margin: 0 !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

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

.instagram-cta .btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.instagram-cta .btn-secondary:hover {
    background: var(--text-dark);
    color: var(--bg-white);
}

/* Responsive Styles for New Sections */
@media (max-width: 968px) {

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

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

@media (max-width: 768px) {

    .treatments-grid,
    .bootcamp-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bootcamp-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bootcamp-icon {
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .home-cta h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   Featured Section
   =================================== */
.featured-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.featured-section .section-title {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.featured-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.featured-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 80px;
    padding: 15px;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.featured-logo:hover {
    opacity: 1;
}

.featured-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: grayscale(100%);
}

/* Style for 1st and 4th logos (InStyle and California Observer) */
.featured-logo:nth-child(1) img,
.featured-logo:nth-child(4) img {
    filter: grayscale(100%);
}

.featured-logo:hover img {
    filter: grayscale(0%);
}

/* Remove grayscale on hover for 1st and 4th */
.featured-logo:nth-child(1):hover img,
.featured-logo:nth-child(4):hover img {
    filter: brightness(1.1);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-dark);
    color: var(--bg-light);
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-gold);
    letter-spacing: 0.3px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.newsletter-text {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    border-radius: 4px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--primary-gold);
    color: var(--bg-white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(189, 151, 102, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(189, 151, 102, 0.5);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1080px) {

    /* Stacked Header Layout - 2 Rows */
    .header {
        position: static;
    }

    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 15px 20px;
    }

    .logo {
        margin-left: 0;
        text-align: center;
        flex: 0 0 auto;
    }

    .logo a {
        display: inline-block;
    }

    /* Second row - all elements stay inline */
    .nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-shrink: 0;
    }

    .nav a {
        font-size: 11px;
        white-space: nowrap;
    }

    .header-search {
        margin-left: 20px;
        flex-shrink: 0;
    }

    .header-search input {
        width: 220px;
        font-size: 12px;
        padding: 8px 12px 8px 35px;
    }

    .header-search .search-icon {
        left: 10px;
        width: 16px;
        height: 16px;
    }

    .header-contact {
        margin-left: 20px;
        margin-right: 0;
        gap: 15px;
        flex-shrink: 0;
    }

    .email-icon svg {
        width: 16px;
        height: 16px;
    }

    .phone-number {
        font-size: 11px;
    }

    .btn-book-header {
        padding: 8px 16px;
        font-size: 10px;
        white-space: nowrap;
    }

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

    /* Announcement bar flows naturally below header */
    .announcement-bar {
        position: static;
    }

    .hero {
        margin-top: 0;
    }

    /* Layout Adjustments */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .hero-title {
        font-size: 40px;
        padding: 0 20px;
    }

    .service-image {
        height: 280px;
    }

    .featured-logos {
        flex-wrap: wrap;
        gap: 20px;
    }

    .featured-logo {
        width: calc(50% - 10px);
        min-width: 140px;
        height: 100px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {

    /* Mobile - Single Row with Hamburger */
    .header {
        position: fixed;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 10px;
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
        margin-left: 0;
        flex-shrink: 0;
    }

    .nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 20px 40px 20px;
        gap: 25px;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 998;
        order: 2;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        font-size: 16px;
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }

    .nav .nav-contact-link {
        display: block;
        font-size: 14px;
        color: var(--primary-gold);
        margin-top: 10px;
    }

    .nav .btn-book-header {
        display: inline-block;
        margin-top: 20px;
        padding: 14px 30px;
        font-size: 14px;
        text-align: center;
        width: auto;
        background: var(--text-dark);
        color: var(--bg-white);
        border-radius: 4px;
    }

    .nav .btn-book-header:hover {
        background: var(--primary-gold);
    }

    .header-search {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
        margin-left: auto;
        margin-right: 5px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Announcement bar - hide on mobile */
    .announcement-bar {
        display: none;
    }

    .hero {
        margin-top: 75px;
    }

    /* Layout adjustments */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

@media (max-width: 480px) {

    /* Hide search on very small screens */
    .header-search {
        display: none;
    }

    .logo a {
        font-size: 22px;
    }

    .announcement-bar p {
        font-size: 11px;
        letter-spacing: 0.3px;
    }

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

    .btn-primary {
        padding: 14px 35px;
        font-size: 13px;
    }

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

    .service-title {
        font-size: 18px;
        padding: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ===================================
   Add-ons Step Styling
   =================================== */

/* Add-on Summary Card (Selected Service Display) */
.addon-summary-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(189, 151, 102, 0.2);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.addon-summary-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px 0;
}

.addon-summary-service {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.addon-summary-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.addon-summary-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-gold);
    margin: 0;
}

/* Add-on Selection Card */
.addon-selection-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.addon-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

/* Add-on List */
.addon-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

/* Individual Add-on Item */
.addon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.addon-item:hover {
    background: rgba(189, 151, 102, 0.05);
    border-color: rgba(189, 151, 102, 0.3);
    transform: translateX(5px);
}

.addon-item.selected {
    background: linear-gradient(135deg, rgba(189, 151, 102, 0.1) 0%, rgba(189, 151, 102, 0.05) 100%);
    border-color: var(--primary-gold);
    box-shadow: 0 2px 8px rgba(189, 151, 102, 0.2);
}

.addon-item-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.addon-item-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.addon-item.selected .addon-item-name {
    color: var(--primary-gold-dark);
    font-weight: 600;
}

.addon-item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.addon-item.selected .addon-item-price {
    color: var(--primary-gold);
}

/* Add-on Toggle Button */
.addon-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 15px;
}

.addon-toggle-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-white);
    transform: scale(1.1);
}

.addon-toggle-btn.selected {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(189, 151, 102, 0.3);
}

/* Empty State */
.addon-empty {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    padding: 30px 20px;
    font-style: italic;
}

/* Add-on Summary Section (Bottom Summary) */
.addon-summary {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
}

.addon-summary-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 15px 0;
}

.addon-summary-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.addon-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
}

.addon-summary-row span:first-child {
    font-weight: 400;
}

.addon-summary-row span:last-child {
    font-weight: 600;
    color: var(--bg-white);
}

.addon-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-gold);
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid rgba(189, 151, 102, 0.3);
}

.addon-summary-total span:last-child {
    font-size: 22px;
}

/* Continue Button */
.continue-btn {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(189, 151, 102, 0.4);
    margin-top: 25px;
}

.continue-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(189, 151, 102, 0.5);
}

.continue-btn:active {
    transform: translateY(-1px);
}

/* Responsive Design for Add-ons */
@media (max-width: 768px) {
    .addon-summary-card {
        padding: 20px;
    }

    .addon-selection-card {
        padding: 20px;
    }

    .addon-item {
        padding: 15px;
    }

    .addon-item-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .addon-toggle-btn {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .addon-item {
        position: relative;
        padding-right: 60px;
    }

    .addon-summary {
        padding: 20px;
    }

    .continue-btn {
        padding: 16px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .addon-summary-service {
        font-size: 20px;
    }

    .addon-card-title {
        font-size: 18px;
    }

    .addon-item-name {
        font-size: 14px;
    }

    .addon-item-price {
        font-size: 13px;
    }

    .addon-summary-total {
        font-size: 16px;
    }

    .addon-summary-total span:last-child {
        font-size: 20px;
    }
}

/* ===================================
   Floating Quiz Widget
   =================================== */
.quiz-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.quiz-widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4a574 0%, #bd9766 50%, #a67c52 100%);
    color: var(--bg-white);
    padding: 18px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(189, 151, 102, 0.35),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.quiz-widget-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.quiz-widget-btn:hover::before {
    left: 100%;
}

.quiz-widget-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(189, 151, 102, 0.45),
        0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e0b485 0%, #c9a377 50%, #b08d63 100%);
}

.quiz-widget-icon {
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .quiz-widget {
        bottom: 20px;
        right: 20px;
    }

    .quiz-widget-btn {
        padding: 14px 20px;
        font-size: 14px;
        gap: 10px;
    }

    .quiz-widget-icon {
        font-size: 18px;
    }
}

/* ===================================
   Chatbot Widget
   =================================== */
.chatbot-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.chatbot-button.active {
    background: var(--primary-gold);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateY(-5px);
    }
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 380px;
    height: 600px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
}

.chatbot-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: white;
    padding: 20px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
}

.chatbot-header-info p {
    margin: 5px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
}

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

.chatbot-new-chat {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.chatbot-new-chat:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(-180deg);
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.chatbot-close:hover {
    transform: rotate(90deg);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chatbot-message {
    display: flex;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.bot-message {
    justify-content: flex-start;
}

.user-message {
    justify-content: flex-end;
}

.message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-line;
}

.bot-message .message-content {
    background: var(--bg-light);
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
}

.user-message .message-content {
    background: var(--primary-gold);
    color: white;
    border-bottom-right-radius: 4px;
}

.chatbot-quick-actions {
    padding: 0 20px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-action-btn {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-action-btn:hover {
    border-color: var(--primary-gold);
    background: var(--bg-light);
    transform: translateY(-2px);
}

.chatbot-input-area {
    padding: 15px 20px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.chatbot-input-area input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input-area input:focus {
    border-color: var(--primary-gold);
}

.chatbot-input-area button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.chatbot-input-area button:hover {
    background: var(--primary-gold-dark);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .chatbot-widget {
        bottom: 20px;
        left: 20px;
    }

    .chatbot-button {
        width: 56px;
        height: 56px;
    }

    .chatbot-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 140px);
        max-height: 600px;
    }
}

/* ===================================
   Promotional Popup Modal
   =================================== */
.promo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.promo-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-popup {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.promo-popup-overlay.active .promo-popup {
    transform: scale(1) translateY(0);
}

.promo-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--text-dark);
}

.promo-popup-close:hover {
    background: white;
    transform: rotate(90deg);
}

.promo-popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.promo-popup-image {
    position: relative;
    background: linear-gradient(135deg, var(--primary-gold-light) 0%, var(--primary-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.promo-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--text-dark);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.promo-popup-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-popup-text h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 30px 0;
    letter-spacing: 0.5px;
}

.promo-offer {
    margin-bottom: 25px;
}

.promo-percent {
    display: block;
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 600;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.promo-description {
    display: block;
    font-size: 24px;
    color: var(--text-dark);
    font-weight: 300;
}

.promo-details {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.promo-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.promo-btn-primary,
.promo-btn-secondary {
    flex: 1;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.promo-btn-primary {
    background: var(--primary-gold);
    color: white;
}

.promo-btn-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(189, 151, 102, 0.3);
}

.promo-btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.promo-btn-secondary:hover {
    border-color: var(--primary-gold);
    background: white;
}

.promo-fine-print {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .promo-popup {
        width: 95%;
        max-height: 85vh;
        display: flex;
        flex-direction: column;
    }

    .promo-popup-content {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: 85vh;
        overflow-y: auto;
    }

    .promo-popup-image {
        min-height: 180px;
        max-height: 180px;
    }

    .promo-popup-text {
        padding: 30px 25px;
    }

    .promo-popup-text h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .promo-percent {
        font-size: 38px;
    }

    .promo-description {
        font-size: 18px;
    }

    .promo-details {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .promo-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }

    .promo-btn-primary,
    .promo-btn-secondary {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    .promo-fine-print {
        font-size: 10px;
    }

    .promo-badge {
        top: 15px;
        left: 15px;
        padding: 6px 16px;
        font-size: 11px;
    }

    .promo-popup-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
}

/* ===================================
   Service Detail Pages
   =================================== */
.service-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    margin-top: 80px;
}

.service-hero-content {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    display: flex;
    align-items: center;
    padding: 80px 40px;
}

.service-hero-text h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.service-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.service-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-hero-image {
    position: relative;
    overflow: hidden;
}

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

.service-overview {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.overview-content h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.overview-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 40px 0 20px 0;
}

.overview-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.treatment-areas {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.treatment-areas li {
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.treatment-areas li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 18px;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.stat-card h4 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stat-card p {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-gold);
    margin: 0;
}

.service-benefits {
    padding: 100px 0;
    background: var(--bg-light);
}

.service-benefits h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
}

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

.benefit-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(189, 151, 102, 0.15);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.benefit-icon::before {
    content: '';
    width: 32px;
    height: 32px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Sparkle/Natural icon */
.benefit-card:nth-child(1) .benefit-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BD9766' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v4m0 12v4M4.93 4.93l2.83 2.83m8.48 8.48l2.83 2.83M2 12h4m12 0h4M4.93 19.07l2.83-2.83m8.48-8.48l2.83-2.83'/%3E%3C/svg%3E");
}

/* Lightning/Quick icon */
.benefit-card:nth-child(2) .benefit-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BD9766' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 2L3 14h9l-1 8 10-12h-9l1-8z'/%3E%3C/svg%3E");
}

/* Target/Precision icon */
.benefit-card:nth-child(3) .benefit-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BD9766' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E");
}

/* Shield/Protection icon */
.benefit-card:nth-child(4) .benefit-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BD9766' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}

/* Beaker/Science icon */
.benefit-card:nth-child(5) .benefit-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BD9766' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3h6v7.5l5.5 9.5a2 2 0 01-1.7 3H5.2a2 2 0 01-1.7-3L9 10.5V3z'/%3E%3Cline x1='9' y1='3' x2='15' y2='3'/%3E%3C/svg%3E");
}

/* Clock/Time icon */
.benefit-card:nth-child(6) .benefit-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23BD9766' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.service-process {
    padding: 100px 0;
    background: var(--bg-white);
}

.service-process h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    margin: 0 auto 25px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.service-faq {
    padding: 100px 0;
    background: var(--bg-light);
}

.service-faq h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
}

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

.faq-item {
    background: var(--bg-white);
    padding: 35px 40px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    text-align: center;
    color: var(--bg-white);
}

.service-cta h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-primary {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--bg-white);
    padding: 16px 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(189, 151, 102, 0.4);
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: var(--primary-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(189, 151, 102, 0.5);
}

.btn-cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--bg-white);
    padding: 16px 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid var(--bg-white);
    transition: var(--transition-smooth);
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .service-detail-hero {
        grid-template-columns: 1fr;
    }

    .service-hero-image {
        min-height: 400px;
    }

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

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

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

    .process-timeline:before {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero-text h1 {
        font-size: 36px;
    }

    .service-subtitle {
        font-size: 17px;
    }

    .service-hero-cta {
        flex-direction: column;
    }

    .service-hero-cta .btn-primary,
    .service-hero-cta .btn-secondary {
        width: 100%;
    }

    .treatment-areas {
        grid-template-columns: 1fr;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .service-overview,
    .service-benefits,
    .service-process,
    .service-faq,
    .service-cta {
        padding: 60px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   BLOG STYLES
   =================================== */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
    padding: 160px 20px 80px;
    text-align: center;
}

.blog-hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.blog-hero .hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Blog Section */
.blog-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

/* Blog Controls */
.blog-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-search,
.blog-filter {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s ease;
}

.blog-search:focus,
.blog-filter:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(189, 151, 102, 0.1);
}

.blog-filter {
    cursor: pointer;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(189, 151, 102, 0.2);
}

.blog-card-content {
    padding: 32px;
}

.blog-date {
    display: inline-block;
    font-size: 13px;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
    color: var(--primary-gold-dark);
}

/* Blog Load More */
.blog-load-more {
    text-align: center;
    margin-top: 40px;
}

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.blog-cta h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.blog-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

/* Blog Post Page */
.blog-post {
    padding: 140px 20px 80px;
    background: var(--bg-white);
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--primary-gold);
    gap: 12px;
}

.blog-post-header h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.post-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.post-date {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-post-content p {
    margin-bottom: 24px;
}

.blog-post-content h2,
.blog-post-content h3 {
    font-family: var(--font-heading);
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.blog-post-content h2 {
    font-size: 32px;
    font-weight: 500;
}

.blog-post-content h3 {
    font-size: 24px;
    font-weight: 500;
}

.blog-post-content a {
    color: var(--primary-gold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-content a:hover {
    color: var(--primary-gold-dark);
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.blog-post-content li {
    margin-bottom: 12px;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

.blog-post-footer {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-controls {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-post-header h1 {
        font-size: 32px;
    }

    .blog-cta h2 {
        font-size: 32px;
    }
}