```css
/*
Theme Name: Yuan Qi Acupuncture Center
Theme URI: https://yuanqiacupunturecenter.com
Author: AdswithMubin
Author URI: https://adswithmubin.com
Description: Custom theme for Yuan Qi Acupuncture Center, Business Bay Dubai.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: yuan-qi
*/

/* =========================
   RESET + ROOT
========================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #3F4A26;
    --gold-light: #56642F;
    --yellow: #A8822F;
    --yellow-btn: #A8822F;
    --bg-cream: #EEE5D3;
    --bg-light: #FAF8F2;
    --white: #ffffff;
    --text-dark: #222222;
    --text-mid: #555555;
    --text-light: #888888;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================
   FADE ANIMATIONS
========================= */
.fade-init {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
    .fade-init {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* =========================
   HEADER
========================= */
.header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.header-inner {
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 28px;
    min-height: 64px;
    height: 64px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
}

.header-contact img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.header-logo-full-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    text-align: left;
    line-height: 1.15;
    display: flex;
    flex-direction: column;
}

.logo-text .name {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111;
    display: block;
    margin-bottom: 2px;
    font-family: var(--font-sans);
    text-transform: uppercase;
}

.logo-text .sub {
    font-size: 9.5px;
    color: #666;
    letter-spacing: 1.5px;
    display: block;
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--font-sans);
}

.whatsapp-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
}

.whatsapp-phone img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
}

/* =========================
   HERO
========================= */
.hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(115deg, #4A5530 0%, #56642F 48%, #5F6E35 100%);
}

.hero-image-side {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image-side::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #4A5530 0%, rgba(74,85,48,0.55) 14%, rgba(74,85,48,0) 40%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(36,42,20,0.28) 0%, rgba(36,42,20,0.10) 38%, transparent 58%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 28px;
}

.hero-tag {
    font-size: 14px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 16px;
    font-weight: 400;
    font-family: var(--font-sans);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.92);
    margin-bottom: 28px;
    max-width: 360px;
    line-height: 1.7;
    font-family: var(--font-sans);
}

.hero-bottom {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-yellow {
    background: var(--yellow-btn);
    color: #fff;
    border: none;
    padding: 15px 34px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-sans);
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-yellow:hover {
    background: #8f7328;
}

.special-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #56642F 0%, #3F4A26 60%, #2E3620 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    flex-shrink: 0;
}

.special-badge-text {
    color: #E8D85A;
    font-weight: 800;
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.hero-reviews {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.review-google-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.google-logo {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.stars {
    color: #FBBC04;
    font-size: 16px;
    letter-spacing: 1px;
}

.review-rating-block {
    color: #fff;
    font-family: var(--font-sans);
    line-height: 1.2;
}

.review-rating-block .rating-num {
    font-size: 17px;
    font-weight: 700;
}

.review-rating-block .rating-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
}

.review-link-block {
    color: rgba(255,255,255,0.95);
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
}

.scroll-down {
    display: flex;
    align-items: center;
    gap: 14px;
}

.scroll-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scroll-down span {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    color: #fff;
}

/* =========================
   STATS
========================= */
.stats {
    background: var(--bg-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 34px 60px;
}

.stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid #d5cfc4;
    padding: 0 24px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 30px;
    color: var(--gold);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 9px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.4;
    font-family: var(--font-sans);
    max-width: 180px;
    margin: 0 auto;
}

/* =========================
   SERVICES
========================= */
.services {
    background: var(--white);
    padding: 72px 60px;
    text-align: center;
}

.section-tag {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.section-desc {
    font-size: 14px;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto 54px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
    max-width: 1000px;
    margin: 0 auto 54px;
    justify-items: center;
}

.services-grid-last-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 54px;
}

.services-grid-last-row .service-card {
    flex: 0 0 calc(33.33% - 27px);
    max-width: 300px;
}

.service-card {
    text-align: center;
    width: 100%;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 11px;
}

.service-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
}

/* =========================
   INSURANCE
========================= */
.insurance {
    background: var(--bg-light);
    padding: 64px 60px;
    text-align: center;
}

.insurance-title {
    text-align: center;
    margin: 0 auto 14px;
}

.insurance-title h2 {
    font-family: var(--font-serif);
    font-size: 34px;
    color: var(--gold);
    font-weight: 400;
}

.insurance-subtitle {
    text-align: center;
    margin: 0 auto 10px;
}

.insurance-subtitle h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.insurance-description {
    text-align: center;
    margin: 0 auto 38px;
}

.insurance-description p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-mid);
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.ins-logo {
    background: var(--white);
    border-radius: 10px;
    padding: 16px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-mid);
    text-align: center;
    letter-spacing: 0.3px;
}

.ins-logo img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}

/* =========================
   SPECIAL OFFER
========================= */
.offer {
    background: #DDD2B5;
    padding: 72px 20px;
    text-align: center;
}

.offer-tag {
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
}

.offer-title {
    font-family: var(--font-serif);
    font-size: 40px;
    color: #56642F;
    font-weight: 400;
    margin-bottom: 46px;
    line-height: 1.1;
}

.offer-card {
    max-width: 1000px;
    margin: 0 auto 46px;
    display: flex;
    align-items: stretch;
    background: #fff;
    overflow: hidden;
}

.offer-img-wrap {
    width: 50%;
}

.offer-img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    display: block;
}

.offer-details {
    width: 50%;
    background: #f8f8f8;
    padding: 38px 46px 46px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

.offer-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.offer-package-title {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.12;
    color: #56642F;
    font-weight: 400;
    flex: 1;
}

.offer-price {
    width: 122px;
    height: 122px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #3F4A26;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    border: 3px solid rgba(255,255,255,0.15);
    padding: 10px;
}

.offer-price .for-only {
    font-size: 12px;
    margin-bottom: 4px;
    line-height: 1.2;
}

.offer-price .amount {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.offer-includes {
    font-size: 16px;
    color: #222;
    margin-bottom: 6px;
    font-weight: 600;
}

.offer-item {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    padding-left: 14px;
    position: relative;
}

.offer-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #56642F;
    font-size: 13px;
    top: 3px;
}

.offer-tc {
    margin-top: 18px;
    font-size: 12px;
    color: #888;
}

.offer .btn-yellow {
    width: 340px;
    max-width: 100%;
    height: 66px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #A8822F;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #3F4A26;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.offer .btn-yellow:hover {
    background: transparent;
    color: #3F4A26;
    border-color: #3F4A26;
}

/* =========================
   ABOUT
========================= */
.about-section {
    background: var(--white);
}

.about {
    background: var(--white);
    padding: 72px 60px;
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1240px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-tag {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 12px;
}

.about-title {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1.25;
    font-weight: 400;
}

.about-para {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-img-wrap {
    flex: 1;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials {
    background: var(--bg-cream);
    padding: 72px 60px;
    text-align: center;
}

.test-tag {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 10px;
}

.test-title {
    font-family: var(--font-serif);
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 26px;
    font-weight: 400;
}

.test-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 46px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 22px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.test-rating .stars {
    color: #FBBC04;
    font-size: 20px;
}

.test-rating-info {
    text-align: left;
}

.test-rating-info .rating-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.test-rating-info .star-label {
    font-size: 12px;
    color: var(--text-mid);
}

.test-link {
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    border-left: 1px solid #ccc;
    padding-left: 20px;
}

.test-slider-wrap {
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.test-cards-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    gap: 24px;
}

.test-card {
    background: #fff;
    border-radius: 6px;
    padding: 34px 28px 28px;
    text-align: left;
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.test-text {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.85;
    margin-bottom: 22px;
}

.test-author {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.test-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.dot.active {
    background: var(--gold);
}

/* =========================
   FOOTER
========================= */
.footer {
    background: var(--white);
    padding: 50px 80px 0;
}

.footer-logo-top {
    text-align: center;
    margin-bottom: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.footer-logo-icon-img {
    height: 54px;
    width: 54px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-logo-top .logo-text {
    display: inline-block;
    text-align: left;
}

.footer-logo-top .name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #111;
    font-family: var(--font-sans);
    text-transform: uppercase;
}

.footer-logo-top .sub {
    font-size: 10.5px;
    color: #666;
    letter-spacing: 1.5px;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-weight: 400;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    border-bottom: 1px solid #eee;
    padding-bottom: 50px;
}

.footer-left-section {
    flex: 0 0 280px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--gold);
    line-height: 1.4;
    margin-bottom: 26px;
    font-style: italic;
}

.footer-contact-section {
    flex: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-hours-section {
    flex: 0 0 280px;
}

.footer-hours-item {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.7;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.social-icon:hover {
    background: #56642F;
}

/* IMPORTANT FIX: THANK YOU PAGE / INLINE CSS OVERRIDE SE BACHANE KE LIYE */
.footer .footer-bar,
body .footer-bar,
.page .footer-bar,
.page-template .footer-bar {
    background: #3F4A26 !important;
    text-align: center;
    padding: 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.9) !important;
    margin: 0 -80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.35s ease, color 0.35s ease;
    cursor: pointer;
}

.footer .footer-bar:hover,
body .footer-bar:hover,
.page .footer-bar:hover,
.page-template .footer-bar:hover {
    background: var(--bg-cream) !important;
    color: var(--gold) !important;
}

.footer .footer-bar a,
body .footer-bar a,
.page .footer-bar a,
.page-template .footer-bar a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.35s ease;
}

.footer .footer-bar:hover a,
body .footer-bar:hover a,
.page .footer-bar:hover a,
.page-template .footer-bar:hover a {
    color: var(--gold) !important;
}

.footer .footer-bar svg,
body .footer-bar svg,
.page .footer-bar svg,
.page-template .footer-bar svg {
    transition: fill 0.35s ease, stroke 0.35s ease;
    fill: currentColor;
}

/* =========================
   FLOATING BUTTONS
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(37,211,102,0.55);
}

.contact-float {
    position: fixed;
    bottom: 98px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #3F4A26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(63,74,38,0.45);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(63,74,38,0.55);
    background: #56642F;
}

/* =========================
   POPUP
========================= */
#nx-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

#nx-popup-box {
    background: #fff;
    border-radius: 14px;
    max-width: 460px;
    width: 100%;
    padding: 34px 28px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

#nx-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #888;
}

/* =========================
   THANK YOU PAGE / MODAL
========================= */
#thankyou-page {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--bg-cream);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#thankyou-page.active {
    display: flex;
    animation: fadeInPage 0.5s ease forwards;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

.thankyou-box {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    padding: 56px 44px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(63,74,38,0.12), 0 4px 16px rgba(0,0,0,0.06);
    animation: slideUpBox 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    position: relative;
    overflow: hidden;
}

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

.thankyou-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, #8B9A5B 50%, var(--gold) 100%);
}

.thankyou-check-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f2e8 0%, #e3e6d3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border: 2px solid #d2d8bb;
    animation: popIn 0.5s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-check-wrap svg {
    animation: drawCheck 0.4s 0.7s ease forwards;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.thankyou-logo {
    margin-bottom: 32px;
}

.thankyou-logo .logo-brand {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    opacity: 0.7;
}

.thankyou-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
    line-height: 1.1;
}

.thankyou-subtitle {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.thankyou-note {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 38px;
    font-family: var(--font-sans);
}

.thankyou-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 38px;
}

.thankyou-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--font-sans);
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(63,74,38,0.3);
    cursor: pointer;
    border: none;
}

.thankyou-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63,74,38,0.4);
}

.thankyou-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.thankyou-contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-mid);
    text-decoration: none;
    font-family: var(--font-sans);
    transition: color 0.2s;
}

.thankyou-contact-link:hover {
    color: var(--gold);
}

/* =========================
   RECAPTCHA
========================= */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    display: none !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .hero-title { font-size: 40px; }
    .offer-title { font-size: 36px; }
    .section-title,
    .insurance-title h2,
    .test-title { font-size: 31px; }
}

@media (max-width: 992px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
    }

    .hero-image-side {
        position: relative;
        width: 100%;
        height: 320px;
        order: 2;
    }

    .hero-image-side::before,
    .hero-bg {
        display: none;
    }

    .hero-content {
        padding: 44px 28px;
    }

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

    .section-title,
    .insurance-title h2,
    .test-title {
        font-size: 29px;
    }

    .offer-title {
        font-size: 34px;
    }

    .insurance-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .offer-card {
        flex-direction: column;
    }

    .offer-img-wrap,
    .offer-details {
        width: 100%;
    }

    .offer-img {
        min-height: 300px;
    }

    .offer .btn-yellow {
        width: 100%;
    }

    .about {
        gap: 44px;
        padding: 60px 40px;
    }

    .test-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .footer {
        padding: 44px 40px 0;
    }

    .footer .footer-bar,
    body .footer-bar,
    .page .footer-bar,
    .page-template .footer-bar {
        margin: 0 -40px;
    }

    .footer-inner {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-left-section,
    .footer-hours-section {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 56px 24px;
    }

    .insurance {
        padding: 48px 24px;
    }

    .offer {
        padding: 56px 20px;
    }

    .testimonials {
        padding: 56px 24px;
    }

    .hero-image-side {
        height: 300px;
    }

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

    .services-grid-last-row {
        gap: 28px;
        flex-wrap: wrap;
    }

    .services-grid-last-row .service-card {
        flex: 0 0 calc(50% - 14px);
    }

    .insurance-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about {
        flex-direction: column;
        padding: 50px 24px;
        gap: 34px;
    }

    .about-img-wrap {
        width: 100%;
    }

    .about-img {
        height: auto;
    }

    .test-card {
        flex: 0 0 100%;
    }

    .thankyou-box {
        padding: 44px 28px 40px;
    }

    .thankyou-title {
        font-size: 30px;
    }
}

@media (max-width: 700px) {
    .header-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 16px 30px;
        height: auto;
        min-height: 0;
        padding: 16px;
    }

    .header-logo {
        flex: 0 0 100%;
        justify-content: center;
        order: 1;
    }

    .header-contact {
        order: 2;
        padding: 0;
    }

    .whatsapp-phone {
        order: 3;
        padding: 0;
    }

    .hdr-label {
        display: none !important;
    }

    .header-contact img,
    .whatsapp-phone img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 0;
    }

    .hero-image-side {
        height: 260px;
    }

    .hero-content {
        padding: 38px 22px;
    }

    .hero-title {
        font-size: 31px;
        line-height: 1.18;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-bottom {
        gap: 20px;
    }

    .special-badge {
        width: 100px;
        height: 100px;
    }

    .special-badge-text {
        font-size: 17px;
    }

    .hero-reviews {
        gap: 14px;
    }

    .stats {
        flex-direction: column;
        padding: 28px 20px;
        gap: 16px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #d5cfc4;
        padding: 0 0 16px;
        width: 100%;
        max-width: 280px;
    }

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

    .section-title,
    .insurance-title h2,
    .test-title,
    .offer-title {
        font-size: 27px;
    }

    .offer-package-title {
        font-size: 28px;
    }

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

    .services-grid-last-row {
        flex-direction: column;
        align-items: center;
    }

    .services-grid-last-row .service-card {
        flex: 0 0 auto;
        max-width: 100%;
    }

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

    .offer-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .offer-details {
        padding: 30px 26px 34px;
    }

    .test-rating {
        flex-wrap: wrap;
        gap: 12px;
    }

    .test-link {
        border-left: none;
        padding-left: 0;
    }

    .footer {
        padding: 40px 22px 0;
    }

    .footer .footer-bar,
    body .footer-bar,
    .page .footer-bar,
    .page-template .footer-bar {
        margin: 0 -22px;
    }

    .footer-left-section,
    .footer-hours-section {
        flex: 0 0 100%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .contact-float {
        bottom: 84px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .thankyou-box {
        padding: 40px 22px 36px;
    }

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

    .thankyou-contact-row {
        gap: 14px;
    }
}
```