/* ============ VARIABLES ============ */
:root {
    --olive: #6B7258;
    --olive-dark: #545C44;
    --taupe: #B5A48B;
    --taupe-dark: #8B7355;
    --cream: #E5DBC9;
    --ivory: #F8F6F1;
    --dark: #2C2C2C;
    --white: #FFFFFF;
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Questrial', sans-serif;
    background-color: var(--ivory);
    color: var(--dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.2;
}

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

/* ============ HEADER ============ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(248, 246, 241, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    letter-spacing: 4px;
    font-weight: 400;
    color: var(--dark);
    text-decoration: none;
}

.logo img {
    height: 32px;
    filter: invert(0);
}

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

.nav-desktop a {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--dark);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}

.nav-desktop a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--olive);
    transition: width 0.3s ease;
}

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

.nav-desktop .instagram-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--dark);
    transition: fill 0.3s ease;
}

.nav-desktop .instagram-icon:hover svg {
    fill: var(--olive);
}

.nav-desktop .instagram-icon::after {
    display: none;
}

.nav-desktop .btn {
    padding: 12px 24px;
    font-size: 12px;
}

.nav-desktop .btn.btn-primary {
    color: #fff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 1.5px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--ivory);
    z-index: 2000;
    padding: 80px 40px;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 1.5px;
    background: var(--dark);
}

.mobile-menu-close::before { transform: rotate(45deg); }
.mobile-menu-close::after { transform: rotate(-45deg); }

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--dark);
    text-decoration: none;
}

.mobile-menu nav .btn {
    font-family: 'Questrial', sans-serif;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    z-index: 1500;
    transition: all 0.3s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
    font-family: 'Questrial', sans-serif;
}

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

.btn-primary:hover {
    background: var(--olive);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 114, 88, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--dark);
    color: var(--dark);
}

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

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

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--taupe) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(107, 114, 88, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(42px, 5vw, 64px);
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--olive);
    font-style: italic;
}

.hero-content p {
    font-size: 17px;
    color: var(--dark);
    opacity: 0.85;
    margin-bottom: 20px;
    max-width: 500px;
}

.hero-content .highlight {
    font-weight: 600;
    color: var(--olive);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 200px 200px 20px 20px;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Snowflake decoration */
.snowflake {
    position: absolute;
    font-size: 60px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.snowflake:nth-child(1) { top: 20%; left: 5%; animation-delay: 0s; }
.snowflake:nth-child(2) { top: 60%; right: 10%; animation-delay: 2s; }
.snowflake:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* ============ CONTACT INFO SECTION ============ */
.contact-info-section {
    background: var(--cream);
    padding: 0px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.contact-info-item {
    padding: 30px;
}

.contact-info-item h4 {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 20px;
    font-family: 'Questrial', sans-serif;
}

.contact-info-item p {
    font-size: 18px;
    color: var(--dark);
    line-height: 1.8;
}

.contact-info-item a {
    color: var(--dark);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--olive);
}

/* ============ OFFER SECTION ============ */
.offer-section {
    padding: 120px 0;
    background: var(--ivory);
    text-align: center;
}

.offer-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--dark);
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offer-section .subtitle {
    font-size: 20px;
    color: var(--olive);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 50px;
}

.offer-card {
    background: var(--white);
    padding: 60px 50px;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--olive), var(--taupe));
}

.offer-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 300;
    color: var(--olive);
    margin-bottom: 20px;
}

.offer-price span {
    font-size: 24px;
    vertical-align: super;
}

.offer-card h3 {
    font-size: 28px;
    margin-bottom: 25px;
}

.offer-features {
    text-align: left;
    margin: 30px 0;
}

.offer-features p {
    padding: 12px 0;
    border-bottom: 1px solid var(--cream);
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-features p::before {
    content: '✓';
    color: var(--olive);
    font-weight: bold;
}

.bonus-tag {
    background: var(--cream);
    padding: 15px 25px;
    border-radius: 10px;
    margin: 25px 0;
    font-size: 14px;
}

.bonus-tag strong {
    color: var(--olive);
}

/* ============ SERVICES SECTION ============ */
#services {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
    transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.6s ease;
}

/* Collapsed state */
#services.collapsed {
    max-height: 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
}

/* Expanded state */
#services.expanded {
    max-height: 5000px;
    opacity: 1;
}

/* Close button */
.services-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    background: var(--cream);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.services-close-btn:hover {
    background: var(--olive);
}

.services-close-btn:hover svg {
    stroke: var(--white);
}

.services-close-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark);
}

#services .section-header {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header span {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--olive);
    display: block;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--dark);
}

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

.service-card {
    background: var(--ivory);
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--olive);
    transition: height 0.4s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

.service-card p {
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 15px;
}

.service-card ul {
    list-style: none;
    margin-top: 20px;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: var(--dark);
    opacity: 0.75;
}

.service-card ul li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--olive);
}

.no-downtime-box {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--cream);
    border-radius: 15px;
}

.no-downtime-box p:first-child {
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
}

.no-downtime-box p:last-child {
    margin-top: 15px;
    opacity: 0.8;
}

/* ============ BENEFITS GRID ============ */
.benefits-section {
    padding: 120px 0;
    background: var(--olive);
    color: var(--white);
}

.benefits-section .section-header span {
    color: var(--cream);
}

.benefits-section .section-header h2 {
    color: var(--white);
}

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

.benefit-card {
    background: rgba(255,255,255,0.1);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--cream);
}

.benefit-card p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.6;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    padding: 120px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--olive);
    border-radius: 20px;
    z-index: -1;
}

.about-content span {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--olive);
}

.about-content h2 {
    font-size: clamp(36px, 4vw, 48px);
    margin: 20px 0 30px;
    color: var(--dark);
}

.about-content p {
    margin-bottom: 20px;
    opacity: 0.85;
}

.about-content .signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--olive);
    margin-top: 30px;
}

/* ============ PRICING SECTION ============ */
#pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--olive-dark) 0%, var(--taupe-dark) 50%, var(--taupe) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

#pricing .section-header span {
    color: var(--cream);
}

#pricing .section-header h2 {
    color: var(--white);
    font-size: clamp(48px, 6vw, 72px);
}

.pricing-wrapper {
    position: relative;
    z-index: 1;
}

/* Pricing Tabs */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-tab {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 15px 30px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Questrial', sans-serif;
    border-radius: 30px;
}

.pricing-tab:hover {
    background: rgba(255,255,255,0.2);
}

.pricing-tab.active {
    background: var(--white);
    color: var(--dark);
}

/* Pricing Content */
.pricing-content {
    display: none;
}

.pricing-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Pricing Tables */
.pricing-tables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-tables.single {
    grid-template-columns: 1fr;
    max-width: 600px;
}

.pricing-table {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

.pricing-table h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--cream);
    font-style: italic;
}

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

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row .name {
    font-size: 15px;
    flex: 1;
}

.pricing-row .desc {
    font-size: 12px;
    opacity: 0.7;
    display: block;
    margin-top: 4px;
}

.pricing-row .prices {
    display: flex;
    gap: 25px;
    text-align: right;
}

.pricing-row .per-session,
.pricing-row .total {
    min-width: 70px;
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    font-style: italic;
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    font-size: 18px;
    color: var(--cream);
}

.pricing-brand {
    text-align: center;
    margin-top: 30px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    letter-spacing: 3px;
    opacity: 0.6;
}

/* Esthetics Menu */
.esthetics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.esthetics-menu {
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
}

.esthetics-menu h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--cream);
    letter-spacing: 2px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.menu-item .item-info {
    flex: 1;
}

.menu-item .item-name {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-item .item-desc {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item .item-price {
    font-size: 16px;
    font-weight: 500;
    min-width: 60px;
    text-align: right;
}

.led-note {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.led-note .item-name {
    font-size: 13px;
    color: var(--cream);
}

.led-note .item-desc {
    font-size: 11px;
    margin-top: 5px;
}

.esthetics-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.esthetics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* ============ VIDEO CAROUSEL SECTION ============ */
.video-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.video-section .section-header span {
    color: var(--cream);
}

.video-section .section-header h2 {
    color: var(--white);
}

.video-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.video-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.video-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 9/16;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
}

.video-play-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    width: 32px;
    height: 32px;
    color: var(--white);
    margin-left: 4px;
}

/* When video is playing - move button to bottom right corner and make it smaller */
.video-play-btn.playing {
    top: auto;
    bottom: 20px;
    left: auto;
    right: 20px;
    transform: none;
    width: 44px;
    height: 44px;
    opacity: 0.6;
}

.video-play-btn.playing:hover {
    opacity: 1;
    transform: scale(1.1);
}

.video-play-btn.playing svg {
    display: none;
}

.video-play-btn.playing::before,
.video-play-btn.playing::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 16px;
    background: var(--white);
    border-radius: 2px;
}

.video-play-btn.playing::before {
    left: 14px;
}

.video-play-btn.playing::after {
    right: 14px;
}

/* Video Loading Spinner */
.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: none;
    z-index: 15;
}

.video-loader.active {
    display: block;
}

.video-loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--cream);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.video-loader::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 3px solid rgba(255,255,255,0.1);
    border-bottom-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide play button when loading */
.video-slide.loading .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.carousel-btn:hover {
    background: rgba(255,255,255,0.2);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.video-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.video-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dot:hover {
    background: rgba(255,255,255,0.5);
}

.video-dot.active {
    background: var(--cream);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .video-slide {
        max-height: 70vh;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* ============ RESULTS SECTION ============ */
.results-section {
    padding: 120px 0;
    background: var(--white);
}

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

.result-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

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

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

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
}

.result-overlay h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.result-overlay p {
    font-size: 13px;
    opacity: 0.8;
}

.before-after-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--olive);
    color: var(--white);
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
}

/* ============ TRIGGER SECTION ============ */
.trigger-section {
    padding: 140px 0;
    background: var(--ivory);
    text-align: center;
}

.trigger-section h2 {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--dark);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trigger-section h2 span {
    color: var(--olive);
    font-style: italic;
}

.trigger-section p {
    font-size: 20px;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 40px;
}

/* ============ FOOTER ============ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 25px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
    max-width: 350px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--cream);
    font-family: 'Questrial', sans-serif;
}

.footer-links a {
    display: block;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    padding: 8px 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact p {
    opacity: 0.7;
    padding: 5px 0;
}

.footer-contact a {
    color: var(--white);
    text-decoration: none;
}

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

.footer-bottom p {
    font-size: 13px;
    opacity: 0.5;
}

.disclaimer {
    font-size: 11px;
    opacity: 0.35;
    max-width: 600px;
    line-height: 1.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-tables {
        grid-template-columns: 1fr;
    }

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

    .esthetics-image {
        min-height: 400px;
        order: -1;
    }

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

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image img {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image {
        order: 1;
    }

    .about-content {
        order: 2;
        text-align: center;
    }

    .esthetics-image {
        display: none;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

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

    .pricing-tabs {
        gap: 8px;
    }

    .pricing-tab {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ivory);
}

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

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


.mobile-menu nav a.text-white { color:#fff; }