.hero-form-container {
    margin-top: -0.5rem;
}

.hero-toggle {
    margin-bottom: -1.1rem;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Dream Avenue';
    src: url('fonts/dream-avenue.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-gold: #D4AF37;
    --dark-gold: #B8941F;
    --light-gold: #E8D9A0;
    --dark-bg: #1a1a1a;
    --darker-bg: #0f0f0f;
    --text-light: #f5f5f5;
    --text-gray: #cccccc;
    --text-dark: #333333;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: 0.3px;
}

body.no-scroll {
    overflow: hidden;
}

/* Thank You Page Styles */
.thank-you-page {
    background: linear-gradient(135deg, #0d0d0d 0%, #1f1f1f 50%, #0d0d0d 100%);
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you {
    width: 100%;
    padding: 4rem 1.5rem;
}

.thank-you-container {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 4rem 3.5rem;
    text-align: center;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
    color: var(--text-light);
}

.thank-you-logo {
    height: 96px;
    width: auto;
    margin-bottom: 1.5rem;
}

.thank-you-title {
    font-family: 'Dream Avenue', serif;
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.thank-you-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 2.5rem;
}

.coupon-usage-tip {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.8rem;
}

.coupon-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(231, 210, 139, 0.92));
    color: #1a1a1a;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(212, 175, 55, 0.35);
    margin-bottom: 2.5rem;
    width: 100%;
    box-sizing: border-box;
}

.coupon-label {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(26, 26, 26, 0.65);
    margin-bottom: 0.75rem;
}

.coupon-offer {
    font-family: 'Dream Avenue', serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin: 0.25rem 0;
}

.coupon-bonus {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 1.5rem;
}

.coupon-code {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    border: 2px dashed rgba(26, 26, 26, 0.65);
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 6px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.coupon-instructions {
    font-size: 0.95rem;
    color: rgba(26, 26, 26, 0.7);
    margin: 0;
}

.thank-you-details {
    margin-bottom: 2.5rem;
}

.thank-you-name {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.75rem;
}

.thank-you-note {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.thank-you-note a {
    color: #f5d572;
    text-decoration: none;
}

.thank-you-note a:hover {
    text-decoration: underline;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
    min-width: 240px;
    text-align: center;
}

.thank-you-actions .btn-secondary {
    color: #D4AF37;
}

/* Bokeh Background Effect */


h1, h2, h3, h4, h5, h6 {
    font-family: 'Dream Avenue', serif;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 180px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 1.1rem 3.2rem;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #D4AF37;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 999px;
}

.btn-secondary:hover {
    color: var(--dark-bg);
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary:hover::before {
    left: 0;
}

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

/* Secondary button on dark background */
.store-info .btn-secondary {
    color: var(--white);
    border-color: var(--white);
    background: transparent;
    padding: 1.3rem 4rem;
    font-size: 1rem;
    border-width: 1px;
    letter-spacing: 2.5px;
}

.store-info .btn-secondary::before {
    background: var(--white);
}

.store-info .btn-secondary:hover {
    color: var(--dark-bg);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(6rem, 10vw, 8rem) 0 clamp(5rem, 12vh, 10rem);
    background: linear-gradient(135deg, #0d0d0d 0%, #1f1f1f 50%, #0d0d0d 100%);
    overflow: hidden;
    z-index: 1;
}

.hero-logo {
    position: absolute;
    top: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-logo-img {
    height: 160px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.hero-background-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    filter: brightness(0.85);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.18) 0%, transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.78) 100%);
    opacity: 0.7;
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    max-width: 960px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    padding: 1.5rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: center;
}


.hero-title {
    margin-top: 0.5rem;
    font-family: 'Dream Avenue', serif;
    font-size: clamp(3rem, 5vw, 4rem);
    letter-spacing: 1.2px;
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: var(--white);
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.55), 0 2px 12px rgba(0, 0, 0, 0.45);
    animation: fadeInUp 1s ease;
    line-height: 1.22;
}

.hero-kicker {
    font-size: 1.12rem;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    margin: 0.1rem 0 0;
    font-family: 'Montserrat', sans-serif;
    animation: fadeInUp 1s ease 0.15s both;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 1px 6px rgba(0, 0, 0, 0.35);
}

.hero-title .hero-title-desktop {
    display: inline;
    white-space: nowrap;
}

.hero-title .hero-title-mobile {
    display: none;
}

.hero-cta {
    margin-top: 16rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta .btn-primary {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.section-cta .btn-primary {
    padding: 1rem 2.8rem;
    font-size: 0.95rem;
    max-width: 320px;
}

.hero-note {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0;
}

.hero-toggle {
    min-width: 220px;
    background: linear-gradient(135deg, var(--primary-gold), #f5d572);
    color: var(--dark-bg);
    border-color: transparent;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
    font-weight: 600;
    margin-bottom: 0;
}

.hero-toggle::before {
    content: none;
}

.hero-toggle:hover,
.hero-toggle:focus {
    background: linear-gradient(135deg, #f5d572, var(--primary-gold));
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.hero-toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 4px;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-form input[type="text"],
.email-form input[type="tel"],
.email-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    backdrop-filter: blur(10px);
}

.email-form input[type="text"]::placeholder,
.email-form input[type="tel"]::placeholder,
.email-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-form input[type="text"]:focus,
.email-form input[type="tel"]:focus,
.email-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
}

.btn-primary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    padding: 1.1rem 3.4rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #D4AF37;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--dark-bg);
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover::before {
    left: 0;
}

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

.btn-large {
    padding: 1.3rem 4rem;
    font-size: 1rem;
    letter-spacing: 2.5px;
    border-radius: 999px;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Ring Showcase Section */
.ring-showcase {
    padding: 6.5rem 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    z-index: 1;
}

.ring-showcase .section-heading {
    margin-bottom: 3rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 320px 220px;
    gap: 1.5rem;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.showcase-card-hero {
    grid-column: 1 / span 3;
    grid-row: 1 / 2;
}

.showcase-card-feature {
    grid-column: 4 / span 1;
    grid-row: 1 / 2;
}

.showcase-card-small-a { grid-column: 1 / 2; grid-row: 2 / 3; }
.showcase-card-small-b { grid-column: 2 / 3; grid-row: 2 / 3; }
.showcase-card-small-c { grid-column: 3 / 4; grid-row: 2 / 3; }
.showcase-card-small-d { grid-column: 4 / 5; grid-row: 2 / 3; }

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(4, 260px);
    }

    .showcase-card-hero {
        grid-column: 1 / span 2;
        grid-row: 1 / 2;
    }

    .showcase-card-feature {
        grid-column: 1 / span 2;
        grid-row: 2 / 3;
    }

    .showcase-card-small-a { grid-column: 1 / 2; grid-row: 3 / 4; }
    .showcase-card-small-b { grid-column: 2 / 3; grid-row: 3 / 4; }
    .showcase-card-small-c { grid-column: 1 / 2; grid-row: 4 / 5; }
    .showcase-card-small-d { grid-column: 2 / 3; grid-row: 4 / 5; }
}

@media (max-width: 600px) {
    .ring-showcase {
        padding: 5.5rem 0 6rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 260px);
    }

    .showcase-card-hero,
    .showcase-card-feature,
    .showcase-card-small-a,
    .showcase-card-small-b,
    .showcase-card-small-c,
    .showcase-card-small-d {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

/* Your Buyer's Guide Section */
.buyers-guide {
    padding: 5.5rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section-heading .section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-heading .section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #D4AF37;
    margin: 0.75rem auto 0;
}

.section-heading .section-subtitle {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.section-heading-light .section-title {
    color: var(--white);
}

.section-heading-light .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-heading.section-heading-light {
     color: #fff;
 }

.why-choose .section-heading {
    margin-bottom: 2.5rem;
}

.accordion {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    padding: 0 3rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 0;
}

.accordion-item:first-child {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.accordion-header {
    width: 100%;
    padding: 2rem 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.accordion-header:hover {
    padding-left: 1rem;
}

.accordion-title {
    font-family: 'Dream Avenue', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--dark-bg);
    letter-spacing: 0.5px;
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: right;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 0 0 2rem 0;
}

.accordion-body p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.education-note {
    font-style: italic;
    color: #777;
    font-size: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.education-cta {
    text-align: center;
    margin-top: 4rem;
}

.education-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

.education-buttons .btn-primary {
    min-width: 260px;
}

.education-buttons .btn-secondary {
    min-width: 260px;
}

/* Why Choose Section */
.why-choose {
    padding: 6.5rem 0;
    background: linear-gradient(180deg, #fdfdfd 0%, #ffffff 100%);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.why-choose-content {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3.5rem 3rem;
    justify-items: stretch;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding-right: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }
.why-item:nth-child(4) { animation-delay: 0.4s; }
.why-item:nth-child(5) { animation-delay: 0.5s; }
.why-item:nth-child(6) { animation-delay: 0.6s; }

.why-icon {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.12));
}

.why-text {
    flex: 1;
}

.why-text h3 {
    font-size: 1.65rem;
    margin: 0 0 0.65rem 0;
    color: var(--dark-bg);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.why-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

.why-item-2 {
    margin-left: 0;
}

.why-item-3 {
    margin-left: 0;
}

.why-item-4 {
    margin-left: 0;
}

.why-item-5 {
    margin-left: 0;
}

.why-item-6 {
    margin-left: 0;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Reviews Section */
.reviews {
    padding: 6.5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    z-index: 1;
}

.reviews-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    align-items: start;
}

.testimonial {
    margin: 0;
    padding: 0;
    border-left: 3px solid rgba(212, 175, 55, 0.45);
    padding-left: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.72);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 460px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-name {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-gold);
}

.reviews-layout .review-stars {
    margin: 0;
}

.reviews-layout blockquote p {
    margin: 0;
}

.review-item:nth-child(1) { 
    animation-delay: 0.1s;
    margin-left: 0;
    max-width: 700px;
}

.review-item:nth-child(2) { 
    animation-delay: 0.2s;
    margin-left: 8rem;
    max-width: 650px;
}

.review-item:nth-child(3) { 
    animation-delay: 0.3s;
    margin-left: 3rem;
    max-width: 680px;
}

.review-item:nth-child(4) { 
    animation-delay: 0.4s;
    margin-left: 10rem;
    max-width: 720px;
}

.review-stars {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.4rem;
    letter-spacing: 0.2rem;
}

.review-stars i {
    font-size: 1.1rem;
}

.review-quote {
    font-family: 'Dream Avenue', serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.72);
    max-width: 460px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.review-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    font-family: 'Dream Avenue', serif;
}

.review-name {
    display: block;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-gold);
}

.review-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    pointer-events: none;
}

.review-item.review-item-1 { background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.95)); }
.review-item.review-item-2 { background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95)); }
.review-item.review-item-3 { background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 255, 252, 0.95)); }

.review-item.review-item-1::after,
.review-item.review-item-2::after,
.review-item.review-item-3::after {
    border-color: rgba(212, 175, 55, 0.18);
}

.review-item.review-item-1 .review-name,
.review-item.review-item-2 .review-name,
.review-item.review-item-3 .review-name {
    color: #a6852d;
}

.review-item:hover .review-quote {
    color: var(--dark-bg);
}

.review-item:hover .review-stars {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


/* Store Info Section */
.store-info {
    padding: 6.5rem 0;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.94) 0%, rgba(12, 12, 12, 0.97) 100%);
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.store-info .section-title {
    color: var(--white);
}

.store-info .section-title::after {
    background: var(--primary-gold);
}

.store-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
    padding: 3rem 0;
}

.store-text p {
    font-size: 1.1rem;
    margin: 0 auto 2.5rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 720px;
}

.store-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-appointment {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 1.3rem 4rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 0;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-appointment:hover {
    text-decoration: none;
    color: var(--dark-bg);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-appointment:hover::before {
    left: 0;
}

.store-map-container {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.store-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
}

.store-map {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* Final CTA Section */
.final-cta {
    padding: 6.5rem 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(0, 0, 0, 0.98));
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.final-cta .container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 36px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.email-form-large {
    max-width: 700px;
}

.email-form-large input[type="text"],
.email-form-large input[type="tel"],
.email-form-large input[type="email"] {
    background: var(--white);
    color: var(--dark-bg);
    border: 2px solid transparent;
}

.email-form-large input[type="text"]::placeholder,
.email-form-large input[type="tel"]::placeholder,
.email-form-large input[type="email"]::placeholder {
    color: #999;
}

.email-form-large input[type="text"]:focus,
.email-form-large input[type="tel"]:focus,
.email-form-large input[type="email"]:focus {
    border-color: var(--dark-bg);
    background: var(--white);
}

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

.email-form-large .btn-primary:hover {
    background: #000;
}

.final-cta .form-note {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--text-gray);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-brand a:hover {
    opacity: 0.8;
}

/* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    padding: 3rem;
    border-radius: 32px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.exit-popup {
    border: 3px solid var(--primary-gold);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: var(--dark-bg);
}

.popup-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.popup-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-form input[type="text"],
.popup-form input[type="tel"],
.popup-form input[type="email"] {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.popup-form input[type="text"]:focus,
.popup-form input[type="tel"]:focus,
.popup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.popup-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 1rem;
    font-style: italic;
}

.popup-skip {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.popup-skip:hover {
    color: var(--dark-bg);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Success Message */
.success-message {
    background: #4CAF50;
    color: var(--white);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

/* Error Message */
.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 15rem;
    }

    .hero-logo {
        top: 0.4rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-logo-img {
        height: 140px;
        max-width: 360px;
    }

    .hero-text {
        margin-top: 3rem;
        gap: 0.5rem;
    }

    .hero-title {
        margin-top: 1rem;
        font-size: clamp(3rem, 10vw, 3.6rem);
        letter-spacing: 1.1px;
        line-height: 1.12;
    }

    .hero-kicker {
        font-size: 0.95rem;
        letter-spacing: 0.45px;
        margin-top: 0.45rem;
    }

    .hero-title .hero-title-desktop {
        display: none !important;
    }

    .hero-title .hero-title-mobile {
        display: inline !important;
        white-space: normal;
    }

    .hero-subtitle {
        display: none;
    }
 
    .hero-cta {
        margin-top: calc(4rem + 24vh);
        gap: 1.4rem;
    }
 
    .hero-note {
        font-size: 0.68rem;
        max-width: 280px;
        margin-top: 1.5rem;
    }
 
    .section-heading .section-title {
        font-size: 2.3rem;
    }
 
    .section-heading .section-subtitle {
        font-size: 0.95rem;
    }
 
    .reviews-layout {
        grid-template-columns: 1fr 1fr;
    }

    .accordion {
        padding: 0 1.5rem;
    }

    .education-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .education-buttons .btn-primary,
    .education-buttons .btn-secondary {
        width: 100%;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .why-item {
        gap: 1.1rem;
    }

    .why-icon {
        width: 54px;
        height: 54px;
    }

    .section-heading .section-title {
        font-size: 2rem;
    }

    .section-heading .section-subtitle {
        font-size: 1rem;
    }

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

    .email-form input[type="text"],
    .email-form input[type="tel"],
    .email-form input[type="email"] {
        width: 100%;
    }

    .hero {
        padding: 6rem 1rem 4.5rem;
    }

    .hero-content {
        padding: 0 1rem;
        gap: 1.35rem;
    }

    .hero-background-img {
        object-position: center 58%;
    }

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

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

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

    .popup-content {
        padding: 2rem 1.5rem;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .nav-logo {
        height: 135px;
    }

    .store-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        top: -1.4rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-logo-img {
        height: 150px;
        max-width: 380px;
    }

    .hero-title {
        margin-top: -0.6rem;
        font-size: clamp(1.75rem, 6.2vw, 1.95rem);
        letter-spacing: 0.6px;
        line-height: 1.05;
        white-space: nowrap;
    }

    .hero-kicker {
        font-size: 0.9rem;
        letter-spacing: 0.4px;
        margin-top: 0.2rem;
        text-align: center;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
 
    .hero-cta {
        margin-top: calc(4.5rem + 28vh);
    }
 
    .hero-note {
        font-size: 0.62rem;
        max-width: 250px;
        margin-top: 1.8rem;
    }
 
    .hero-kicker {
        text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.3);
    }
 
    .hero-toggle {
        min-width: 180px;
        font-size: 0.9rem;
        padding: 0.9rem 2.2rem;
    }
 
    .section-heading .section-title {
        font-size: 2rem;
    }
 
    .section-heading .section-subtitle {
        font-size: 0.9rem;
    }
 
    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .store-content {
        padding: 2.5rem 1.5rem;
    }

    .final-cta .container {
        padding: 3rem 2.5rem;
    }

    .hero-form-container {
        padding: 0 1.25rem;
        border-radius: 16px;
    }

    .hero-form-container.is-visible {
        padding: 1.75rem 1.25rem;
    }

    .store-map {
        height: 300px;
    }

    .section-heading .section-title::after {
        width: 55px;
    }
}

@media (max-width: 600px) {
    .thank-you-container {
        padding: 3.5rem 2rem;
    }

    .coupon-card {
        padding: 2.5rem 1.75rem;
    }

    .coupon-usage-tip {
        font-size: 0.92rem;
        margin-bottom: 1.5rem;
    }

    .coupon-code {
        letter-spacing: 4px;
        padding: 0.8rem 2.4rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn-primary,
    .thank-you-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .thank-you {
        padding: 3.5rem 1rem;
    }

    .thank-you-container {
        padding: 3rem 1.75rem;
        border-radius: 24px;
    }

    .thank-you-logo {
        height: 82px;
    }

    .thank-you-title {
        font-size: clamp(1.9rem, 7vw, 2.2rem);
    }

    .thank-you-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .coupon-card {
        padding: 2.25rem 1.5rem;
        border-radius: 24px;
    }

    .coupon-offer {
        font-size: 1.85rem;
    }

    .coupon-bonus {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .coupon-code {
        font-size: 1.05rem;
        letter-spacing: 3px;
        padding: 0.75rem 2rem;
    }

    .coupon-instructions {
        font-size: 0.9rem;
    }

    .coupon-usage-tip {
        font-size: 0.9rem;
        margin-bottom: 1.35rem;
    }

    .thank-you-details {
        margin-bottom: 2rem;
    }

    .thank-you-note {
        font-size: 0.95rem;
    }
}
