/* ═══════════════════════════════════════════════════════════════
   THE JEWELRY APPRAISER — Light Luxury Theme
   Inspired by Kimono Light · Purple + Gold Accent · Cormorant + Manrope
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
    /* Brand */

    --purple: #8011C0;
    --purple-hover: #7912b4;
    --purple-light: #e6d0f3;

    /* Transparent Purple */
    --purple-soft: rgba(128, 17, 192, 0.15);
    --purple-xsoft: rgba(128, 17, 192, 0.08);

    --purple-dark: #5c0f88;
    --purple-deep: #2d0a47;

    /* Accent */
    --gold: #D4AF37;
    --gold-light: #F6E7A1;

    /* Light Surface Layers */
    --bg-base: #ffffff;
    --bg-1: #fafafe;
    --bg-2: #eefcfa;
    --bg-3: #fdf0f7;

    --brand-gradient: linear-gradient(
        90deg,
        #43ffec 0%,
        #ffb84d 50%,
        #ff0080 100%
    );
    --bg-card: #ffffff;
    --bg-card-h: #f7f4ff;

    /* Text on light */
    --text-h: #0f0d1e;
    --text-b: #3d3560;
    --text-m: #7b7599;
    --text-l: #b0adca;

    /* Borders on light */
    --border-d: rgba(0, 0, 0, 0.09);
    --border-dp: rgba(20, 184, 166, 0.2);
    --border-p: rgba(20, 184, 166, 0.45);

    /* Shadows — light */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-md:
        0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(20, 184, 166, 0.06);
    --shadow-lg:
        0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-xl:
        0 24px 64px rgba(0, 0, 0, 0.14), 0 8px 20px rgba(0, 0, 0, 0.07);
    --glow: 0 0 32px rgba(20, 184, 166, 0.12);

    /* Type */
    --font-serif: "Cormorant Garamond", "Georgia", serif;
    --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1280px;

    /* Legacy compat */
    --white: #ffffff;
    --light: #f9f7ff;
    --light-2: #eefcfa;
    --border: rgba(0, 0, 0, 0.09);
    --border-light: rgba(0, 0, 0, 0.06);
    --border-purple: rgba(20, 184, 166, 0.2);
    --text: #3d3560;
    --text-2: #3d3560;
    --text-muted: #7b7599;
    --text-light: #b0adca;
    --dark: #0f0d1e;
    --dark-2: #1a1433;
    --dark-3: #3d3560;
    --dark-4: #5a5580;
}

/* ── Reset ───────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    /* font-family: var(--font-sans); */
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-b);
    background: var(--bg-base);
    overflow-x: hidden;
}
img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
}
button {
    cursor: pointer;
    font-family: inherit;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: rgba(20, 184, 166, 0.4);
    border-radius: 3px;
}

/* ── Container ───────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 60px;
}
@media (max-width: 1100px) {
    .container {
        padding: 0 40px;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ── Typography ──────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    /* font-family: var(--font-serif); */
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-h);
}
h1 {
    font-size: clamp(40px, 5.5vw, 76px);
}
h2 {
    font-size: clamp(28px, 4vw, 52px);
}
h3 {
    font-size: clamp(20px, 2.5vw, 28px);
}
h4 {
    font-size: clamp(17px, 2vw, 22px);
}
p {
    color: var(--text-b);
    line-height: 1.8;
}
em {
    font-style: italic;
    color: var(--purple);
}
strong {
    font-weight: 700;
    color: var(--text-h);
}

/* ── Eyebrow / Label ─────────────────────────────────────────── */
.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--purple-light);
    padding: 8px 18px;
    border-radius: 100px;
    /* font-family: var(--font-sans); */
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 16px;
}
/* .eyebrow::before {
    content: "//";
    font-family: monospace;
    color: var(--purple);
    font-weight: 700;
} */
.section-title {
    margin-bottom: 16px;
}
.section-sub {
    font-size: 17px;
    color: var(--text-b);
    max-width: 620px;
    line-height: 1.75;
}
.section-header {
    margin-bottom: 60px;
}
.section-center {
    text-align: center;
}
.section-center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary-gold,
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--purple);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-primary-gold::after,
.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.btn-primary-gold:hover,
.btn-primary:hover {
    background: var(--purple-hover);
    transform: translateY(-2px);
    box-shadow:
        0 8px 32px rgba(20, 184, 166, 0.5),
        var(--glow);
}

.btn-outline,
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: transparent;
    color: var(--text-h);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--border-d);
    border-radius: var(--radius-xs);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-outline:hover,
.btn-outline-gold:hover {
    background: var(--purple-light);
    border-color: var(--purple);
    color: var(--purple);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-b);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid var(--border-d);
    border-radius: var(--radius-xs);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-ghost:hover {
    border-color: var(--purple-light);
    color: var(--purple-light);
}

/* ── Divider ─────────────────────────────────────────────────── */
.divider {
    height: 1px;
    background: var(--border-d);
    margin: 40px 0;
}

/* ── Chip/Badge ──────────────────────────────────────────────── */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid var(--border-dp);
    color: var(--purple-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
}
.chip-dot {
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

/* ── Card (generic) ──────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-d);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.card:hover {
    border-color: var(--border-dp);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    background: var(--bg-card-h);
}
.card-body {
    padding: 28px;
}

/* ── Grids ───────────────────────────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ── Forms ───────────────────────────────────────────────────── */
.form-control {
    width: 100%;
    padding: 13px 16px;
    background: #ffffff;
    border: 1.5px solid var(--border-d);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-h);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    outline: none;
}
.form-control::placeholder {
    color: var(--text-m);
}
.form-control:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
    background: #f7f4ff;
}
select.form-control option {
    background: #eefcfa;
    color: var(--text-h);
}
.form-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-m);
    display: block;
    margin-bottom: 7px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ── FAQ Accordion (standalone pages) ───────────────────────── */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-d);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
    margin-bottom: 8px;
}
.faq-item:hover,
.faq-item.open {
    border-color: var(--border-dp);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-h);
    cursor: pointer;
    transition: color var(--transition);
}
.faq-question:hover,
.faq-item.open .faq-question {
    color: var(--purple);
}
.faq-icon {
    flex-shrink: 0;
    color: var(--purple);
    transition: transform var(--transition);
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding: 0 24px 22px;
    padding-top: 16px;
    font-size: 15px;
    color: var(--text-b);
    line-height: 1.75;
    border-top: 1px solid var(--border-d);
}

/* ── Blog Card ───────────────────────────────────────────────── */
.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border-d);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}
.blog-card:hover {
    border-color: var(--border-dp);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    background: var(--bg-card-h);
}
.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-2);
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}
.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 10px;
}
.blog-card-body h3 {
    font-size: 20px;
    color: var(--text-h);
    margin-bottom: 10px;
    line-height: 1.3;
    flex: 1;
}
.blog-meta {
    font-size: 12px;
    color: var(--text-m);
    padding-top: 16px;
    border-top: 1px solid var(--border-d);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blog-meta a {
    color: var(--purple);
    font-weight: 600;
}

/* ── Service Card ────────────────────────────────────────────── */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-d);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 184, 166, 0) 0%,
        rgba(20, 184, 166, 0.06) 100%
    );
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.service-card:hover {
    border-color: var(--border-dp);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.service-card:hover::before {
    opacity: 1;
}
.service-card-icon {
    height: 160px;
    background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
    border-bottom: 1px solid var(--border-d);
}
.service-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-body h3 {
    font-size: 22px;
    color: var(--text-h);
    margin-bottom: 10px;
}
.service-card-body p {
    font-size: 14px;
    color: var(--text-b);
    flex: 1;
    margin-bottom: 18px;
    line-height: 1.75;
}
.service-link {
    font-size: 11px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap var(--transition);
}
.service-link:hover {
    gap: 14px;
    color: var(--purple-hover);
}

/* ── Page Hero ───────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, #eefcfa 0%, #fdf0f7 60%, #f7faff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 60% 50%,
        rgba(20, 184, 166, 0.08) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    z-index: 1;
}
.page-hero-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.page-hero-label::before {
    content: "//";
    font-family: monospace;
    color: var(--purple);
}
.page-hero h1 {
    color: var(--text-h);
}
.page-hero p {
    color: var(--text-b);
    font-size: 17px;
    max-width: 600px;
    margin-top: 16px;
}

/* ── Trust Strip ─────────────────────────────────────────────── */
.trust-strip {
    background: var(--bg-1);
    border-bottom: 1px solid var(--border-d);
    padding: 20px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.trust-item svg {
    color: var(--purple-light);
    flex-shrink: 0;
}
.trust-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-b);
}
@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}
@media (max-width: 600px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #0b1220 0%, #131b2e 100%);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: var(--radius);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(20, 184, 166, 0.25) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.cta-banner > * {
    position: relative;
    z-index: 1;
}
.cta-banner h2 {
    color: #fff;
}
.cta-banner p {
    color: var(--text-b);
}

/* ── Stat Box ────────────────────────────────────────────────── */
.stat-box {
    text-align: center;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-dp);
    border-radius: var(--radius);
}
.stat-num {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-m);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* ── Testimonial Card ────────────────────────────────────────── */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-d);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition);
}
.testimonial-card:hover {
    border-color: var(--border-dp);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #ec4899;
}
.testimonial-text {
    font-size: 15px;
    color: var(--text-b);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-h);
}
.testimonial-location {
    font-size: 12px;
    color: var(--text-m);
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM HERO SECTION (Full Viewport)
   ═══════════════════════════════════════════════════════════════ */

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

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 34% 48%,
            rgba(255, 214, 235, 0.7) 0%,
            transparent 34%
        ),
        radial-gradient(
            circle at 66% 50%,
            rgba(202, 246, 243, 0.75) 0%,
            transparent 38%
        ),
        linear-gradient(135deg, #ffffff 0%, #fffafd 45%, #f8ffff 100%);
}
 /* .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 32% 45%,
            rgba(128, 17, 192, 0.18) 0%,
            transparent 36%
        ),
        radial-gradient(
            circle at 70% 50%,
            rgba(212, 175, 55, 0.20) 0%,
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #fbf6ff 48%,
            #fffaf0 100%
        );
} */
.hero-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse 80% 60% at 70% 40%,
            rgba(20, 184, 166, 0.07) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 50% 80% at 20% 80%,
            rgba(20, 184, 166, 0.04) 0%,
            transparent 50%
        );
}
.hero-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(0, 0, 0, 0.8) 60px,
            rgba(0, 0, 0, 0.8) 61px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(0, 0, 0, 0.8) 80px,
            rgba(0, 0, 0, 0.8) 81px
        );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    width: 100%;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-text {
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-eyebrow::before {
    content: "//";
    font-family: monospace;
    color: var(--purple);
    font-size: 14px;
}
.hero-title {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(40px, 5.5vw, 70px);
    font-weight: 600;
    /* line-height: 1.08; */
    line-height: 70px;
    color: var(--text-h);
    margin-bottom: 50px;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-title em {
    font-style: italic;
    color: var(--purple);
}
.hero-subtitle {
    font-size: 22px;
    color: var(--text-b);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
.hero-trust {
    display: flex;
    gap: 28px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--border-d);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}
.hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hero-trust-num {
    /* font-family: var(--font-serif); */
    font-size: 30px;
    font-weight: 700;
    /* color: #ec4899; */
    line-height: 1;
}
.hero-trust-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-m);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-dp);
    box-shadow: var(--shadow-xl);
}
.hero-image-wrap img {
    width: 100%;
    display: block;
}
.hero-image-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.hero-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-badge-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-h);
    letter-spacing: 0.3px;
}
.hero-badge-sub {
    font-size: 11px;
    color: var(--text-m);
    margin-top: 2px;
}
.hero-image-card2 {
    position: absolute;
    top: -20px;
    right: -24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.hero-card2-num {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
}
.hero-card2-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-m);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual {
        display: none;
    }
    .hero-content {
        padding: 100px 0 60px;
    }
}
@media (max-width: 560px) {
    .hero-btns {
        flex-direction: column;
    }
    .hero-btns a,
    .hero-btns button {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    padding: 80px 0;
    align-items: start;
}
@media (max-width: 960px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info h2 {
    color: var(--text-h);
    margin-bottom: 16px;
}
.contact-info > p {
    font-size: 16px;
    color: var(--text-b);
    line-height: 1.8;
    margin-bottom: 36px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid var(--border-dp);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-light);
}
.contact-detail-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-m);
    margin-bottom: 4px;
}
.contact-detail-value {
    font-size: 15px;
    color: var(--text-h);
    font-weight: 600;
}
.contact-detail-value a {
    color: var(--purple-light);
    text-decoration: none;
}
.contact-detail-value a:hover {
    color: var(--purple);
}
.contact-what-to-bring {
    background: rgba(20, 184, 166, 0.06);
    border: 1px solid var(--border-dp);
    border-radius: var(--radius-sm);
    padding: 28px;
    margin-top: 36px;
}
.contact-what-to-bring .wh-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 16px;
}
.contact-what-to-bring ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-what-to-bring li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: var(--text-b);
}
.contact-what-to-bring li svg {
    flex-shrink: 0;
    color: var(--purple-light);
}

.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-d);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.form-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-d);
}
.form-tab {
    padding: 18px;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-m);
    cursor: pointer;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
    bottom: -1px;
}
.form-tab:hover {
    color: var(--purple);
}
.form-tab.active {
    color: var(--purple);
    border-bottom-color: var(--purple);
    background: rgba(20, 184, 166, 0.06);
}
.tab-panel {
    display: none;
    padding: 36px;
}
.tab-panel.active {
    display: block;
}
.form-alert {
    margin: 20px 36px 0;
    padding: 14px 18px;
    border-radius: var(--radius-xs);
    font-size: 14px;
    font-weight: 600;
}
.form-alert.success {
    background: rgba(5, 150, 105, 0.12);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.25);
}
.form-alert.error {
    background: rgba(220, 38, 38, 0.1);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE BUILDER — Row System
   ═══════════════════════════════════════════════════════════════ */
.pb-row {
    width: 100%;
    position: relative;
}
.pb-row-dark {
    background: linear-gradient(135deg, #0b1220 0%, #131b2e 100%);
}
.pb-row-soft {
    /* background: #eefcfa; */
    background: radial-gradient(circle at 34% 48%, rgba(255, 214, 235, 0.7) 0%, transparent 34%), radial-gradient(circle at 66% 50%, rgba(202, 246, 243, 0.75) 0%, transparent 38%), linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(255, 250, 253) 45%, rgb(248, 255, 255) 100%);
}
.pb-row-white {
    background: var(--bg-base);
}
.pb-col {
    min-width: 0;
}
.pb-cols {
    display: grid;
    gap: 48px;
}
@media (max-width: 768px) {
    .pb-cols {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
}

/* pb-row-dark overrides — white text on deep purple sections */
.pb-row-dark h1,
.pb-row-dark h2,
.pb-row-dark h3,
.pb-row-dark h4,
.pb-row-dark .wg-heading h1,
.pb-row-dark .wg-heading h2,
.pb-row-dark .wg-heading h3,
.pb-row-dark .wg-heading h4,
.pb-row-dark .wg-heading h5,
.pb-row-dark .wg-heading h6 {
    color: #ffffff;
}
.pb-row-dark p,
.pb-row-dark .wg-para {
    color: rgba(255, 255, 255, 0.72);
}
.pb-row-dark .wg-eyebrow,
.pb-row-dark .eyebrow {
    color: rgba(236, 72, 153, 0.85);
}
.pb-row-dark .wg-eyebrow::before,
.pb-row-dark .eyebrow::before {
    color: rgba(236, 72, 153, 0.6);
}
.pb-row-dark .wg-icon-box {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}
.pb-row-dark .wg-icon-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}
.pb-row-dark .wg-icon-box-title {
    color: #ffffff;
}
.pb-row-dark .wg-icon-box-desc {
    color: rgba(255, 255, 255, 0.65);
}
.pb-row-dark .wg-stat-card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}
.pb-row-dark .wg-stat-label {
    color: rgba(255, 255, 255, 0.5);
}
.pb-row-dark .wg-testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}
.pb-row-dark .wg-tc-text {
    color: rgba(255, 255, 255, 0.7);
}
.pb-row-dark .wg-tc-name {
    color: #fff;
}
.pb-row-dark .wg-ib-item {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}
.pb-row-dark .wg-ib-title {
    color: #fff;
}
.pb-row-dark .wg-ib-desc {
    color: rgba(255, 255, 255, 0.65);
}
.pb-row-dark .wg-skill-name {
    color: rgba(255, 255, 255, 0.75);
}
.pb-row-dark .wg-skill-track {
    /* background: rgba(255, 255, 255, 0.1); */
    background: linear-gradient(90deg, #43FFEC 0%, #FFB84D 50%, #FF0080 100%);
}
.pb-row-dark .section-sub {
    color: rgba(255, 255, 255, 0.7);
}
.pb-row-dark .wg-btn-link.btn-outline {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.3);
}
.pb-row-dark .wg-btn-link.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
}
.pb-row-dark .hero-trust-label {
    color: rgba(255, 255, 255, 0.55);
}
.wg-cta.bg-purple .wg-btn-link.btn-outline {
    color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.3);
}
.wg-cta.bg-purple .wg-btn-link.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   WIDGET CSS — wg-* classes (all dark-native)
   ═══════════════════════════════════════════════════════════════ */

/* ── Heading Widget ──────────────────────────────────────────── */
.wg-heading h1,
.wg-heading h2,
.wg-heading h3,
.wg-heading h4,
.wg-heading h5,
.wg-heading h6 {
    color: var(--text-h);
}
.margin-bottom {
    margin-bottom: 20px;
}
.wg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 16px;
}
.wg-eyebrow::before {
    content: "//";
    font-family: monospace;
    color: var(--purple);
}
.wg-heading.align-center {
    text-align: center;
}
.wg-heading.align-right {
    text-align: right;
}

/* ── Paragraph Widget ────────────────────────────────────────── */
.wg-para {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-b);
}
.wg-para.align-center {
    text-align: center;
}

/* ── Image Widget ────────────────────────────────────────────── */
.wg-image img {
    width: 100%;
    border-radius: var(--radius);
    display: block;
}

/* ── Image Box Widget ────────────────────────────────────────── */
.wg-image-box.layout-left,
.wg-image-box.layout-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.wg-image-box.layout-right .wgib-img {
    order: 2;
}
.wg-image-box.layout-right .wgib-text {
    order: 1;
}
.wgib-img {
    border-radius: var(--radius);
    overflow: hidden;
}
.wgib-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.wgib-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--purple);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.wgib-eyebrow::before {
    content: "//";
    font-family: monospace;
    color: var(--purple);
}
.wgib-text h2,
.wgib-text h3 {
    color: var(--text-h);
    margin-bottom: 16px;
}
.wgib-text p {
    font-size: 16px;
    color: var(--text-b);
    line-height: 1.8;
    margin-bottom: 28px;
}
.wg-image-box-card {
    background: var(--bg-card);
    border: 1px solid var(--border-d);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}
.wg-image-box-card:hover {
    border-color: var(--border-dp);
    box-shadow: var(--shadow-md);
}
.wgib-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.wgib-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.wg-image-box-card:hover .wgib-card-img img {
    transform: scale(1.05);
}
.wgib-card-body {
    padding: 24px;
}
.wgib-card-body h3 {
    color: var(--text-h);
    margin-bottom: 10px;
}
.wgib-card-body p {
    font-size: 15px;
    color: var(--text-b);
    line-height: 1.75;
}
@media (max-width: 768px) {
    .wg-image-box.layout-left,
    .wg-image-box.layout-right {
        grid-template-columns: 1fr;
    }
    .wg-image-box.layout-right .wgib-img,
    .wg-image-box.layout-right .wgib-text {
        order: unset;
    }
}

/* ── Icon Box (single) ───────────────────────────────────────── */
.wg-icon-box {
    background: var(--bg-card);
    border: 1px solid var(--border-d);
    border-radius: var(--radius);
    padding: 32px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition);
    height: 100%;
    min-height: 260px;
    position: relative;
    overflow: hidden;
}
.wg-icon-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}
.wg-icon-box:hover {
    border-color: var(--border-dp);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    background: var(--bg-card-h);
}
.wg-icon-box:hover::before {
    transform: scaleX(1);
}
.wg-icon-box.style-left {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
}
.wg-icon-box-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid var(--border-dp);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 24px;
    transition: all var(--transition);
}
.wg-icon-box:hover .wg-icon-box-icon {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
}
.wg-icon-box-icon.shape-circle {
    border-radius: 50%;
}
.wg-icon-box-icon.shape-square {
    border-radius: var(--radius-xs);
}
.wg-icon-box-content {
    flex: 1;
}
.wg-icon-box-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-h);
    margin-bottom: 10px;
    line-height: 1.25;
}
.wg-icon-box-desc {
    font-size: 14px;
    color: var(--text-b);
    line-height: 1.75;
}

/* ── Icon Boxes Grid ─────────────────────────────────────────── */
.wg-icon-boxes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.wg-icon-boxes-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.wg-icon-boxes-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px) {
    .wg-icon-boxes-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .wg-icon-boxes-grid {
        grid-template-columns: 1fr !important;
    }
}

.wg-ib-item {
    background: var(--bg-card);
    border: 1px solid var(--border-d);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.wg-ib-item::after {
    content: attr(data-num);
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: rgba(20, 184, 166, 0.06);
    line-height: 1;
    pointer-events: none;
}
.wg-ib-item:hover {
    border-color: var(--border-dp);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    background: var(--bg-card-h);
}
.wg-ib-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid var(--border-dp);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 22px;
    transition: all var(--transition);
}
.wg-ib-item:hover .wg-ib-icon {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}
.wg-ib-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-h);
}
.wg-ib-desc {
    font-size: 13.5px;
    color: var(--text-b);
    line-height: 1.7;
}

/* ── Stats Widget ────────────────────────────────────────────── */
.wg-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 2px; */
    gap: 8px;
}
.wg-stats.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.wg-stats.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
    .wg-stats {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
.wg-stat-card {
    text-align: center;
    /* padding: 40px 24px; */
    padding: 20px 12px;
    background: #ffffff;
    /* border: 1px solid var(--border-d); */
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.wg-stat-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.wg-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: rgba(20, 184, 166, 0.06);
    border-color: var(--border-dp);
}
.wg-stat-card:hover::before {
    opacity: 1;
}
.wg-stat-num {
    /* font-family: var(--font-serif); */
    /* font-size: clamp(48px, 5.5vw, 72px); */
    font-size:32px;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 10px;
}
.wg-stat-label {
    /* font-size: 11px; */
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-m);
}

/* ── Video Widget ────────────────────────────────────────────── */
.wg-video-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-h);
    margin-bottom: 8px;
}
.wg-video-caption {
    font-size: 14px;
    color: var(--text-b);
    margin-bottom: 20px;
}
.wg-video-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-d);
}
.wg-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ── Button Widget ───────────────────────────────────────────── */
.wg-btn.align-center {
    text-align: center;
}
.wg-btn.align-right {
    text-align: right;
}
.wg-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all var(--transition);
}
.wg-btn-link.btn-primary {
    background: var(--purple);
    color: #fff;
}
.wg-btn-link.btn-primary:hover {
    background: var(--purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.5);
}
.wg-btn-link.btn-outline {
    background: transparent;
    color: var(--text-h);
    border: 1.5px solid var(--border-d);
}
.wg-btn-link.btn-outline:hover {
    background: var(--bg-2);
    border-color: var(--purple);
    color: var(--purple);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
}
.wg-btn-link.btn-ghost {
    background: transparent;
    color: var(--text-b);
    border: 1.5px solid var(--border-d);
}
.wg-btn-link.btn-ghost:hover {
    border-color: var(--purple-light);
    color: var(--purple-light);
}

/* ── Accordion Widget ────────────────────────────────────────── */
.wg-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wg-acc-item {
    background: var(--bg-card);
    border: 1px solid var(--border-d);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}
.wg-acc-item.open,
.wg-acc-item:hover {
    border-color: var(--border-dp);
}
.wg-acc-summary {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-h);
    cursor: pointer;
    transition: color var(--transition);
}
.wg-acc-summary:hover,
.wg-acc-item.open .wg-acc-summary {
    color: var(--gold);
}
.wg-acc-chevron {
    flex-shrink: 0;
    color: var(--purple);
    transition: transform var(--transition);
}
.wg-acc-item.open .wg-acc-chevron {
    transform: rotate(180deg);
}
.wg-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.wg-acc-item.open .wg-acc-body {
    max-height: 600px;
}
.wg-acc-body-inner {
    padding: 0 24px 22px;
    padding-top: 14px;
    font-size: 15px;
    color: var(--text-b);
    line-height: 1.8;
    border-top: 1px solid var(--border-d);
}

/* ── Tabs Widget ─────────────────────────────────────────────── */
.wg-tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border-d);
    margin-bottom: 32px;
    overflow-x: auto;
}
.wg-tab-btn {
    padding: 14px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-m);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition);
    position: relative;
    bottom: -1px;
}
.wg-tab-btn:hover {
    color: var(--purple);
}
.wg-tab-btn.active {
    color: var(--purple);
    border-bottom-color: var(--purple);
}
.wg-tab-panel {
    display: none;
}
.wg-tab-panel.active {
    display: block;
    animation: tabFadeIn 0.2s ease;
}
@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.wg-tab-panel-inner {
    font-size: 15px;
    color: var(--text-b);
    line-height: 1.8;
}

/* ── CTA Box Widget ──────────────────────────────────────────── */
.wg-cta {
    border-radius: var(--radius);
    padding: 72px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.wg-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(20, 184, 166, 0.3) 0%,
        transparent 65%
    );
    pointer-events: none;
}
.wg-cta > * {
    position: relative;
    z-index: 1;
}
.wg-cta.bg-purple {
    background: linear-gradient(135deg, #0b1220 0%, #131b2e 100%);
    border: 1px solid rgba(20, 184, 166, 0.3);
}
.wg-cta.bg-purple h2 {
    color: #ffffff;
}
.wg-cta.bg-purple p {
    color: rgba(255, 255, 255, 0.72);
}
.wg-cta.bg-purple .wg-cta-eyebrow {
    color: rgba(236, 72, 153, 0.8);
}
.wg-cta.bg-soft {
    background: rgba(20, 184, 166, 0.06);
    border: 1px solid var(--border-dp);
}
.wg-cta.bg-white {
    background: #ffffff;
    border: 1px solid var(--border-d);
    box-shadow: var(--shadow);
}
.wg-cta-eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}
.wg-cta-eyebrow::before {
    content: "//";
    font-family: monospace;
    color: var(--purple);
}
.wg-cta h2 {
    color: var(--text-h);
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 16px;
}
.wg-cta p {
    font-size: 17px;
    color: var(--text-b);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.75;
}
.wg-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
@media (max-width: 640px) {
    .wg-cta {
        padding: 48px 28px;
    }
}

/* ── Testimonials Widget ─────────────────────────────────────── */
.wg-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.wg-testimonials-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.wg-testimonials-grid.cols-1 {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .wg-testimonials-grid {
        grid-template-columns: 1fr !important;
    }
}

.wg-testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-d);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all var(--transition);
    position: relative;
}
.wg-testimonial-card:hover {
    border-color: var(--border-dp);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: var(--bg-card-h);
}
.wg-tc-quote-mark {
    font-family: var(--font-serif);
    font-size: 56px;
    line-height: 0.8;
    color: var(--purple);
    opacity: 0.25;
    position: absolute;
    top: 16px;
    right: 20px;
}
.wg-tc-stars {
    display: flex;
    gap: 3px;
}
.wg-tc-stars svg {
    width: 14px;
    height: 14px;
    fill: #ec4899;
}
.wg-tc-text {
    font-size: 15px;
    color: var(--text-b);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}
.wg-tc-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-d);
    padding-top: 16px;
}
.wg-tc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.2);
    border: 1px solid var(--border-dp);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--purple-light);
    flex-shrink: 0;
}
.wg-tc-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-h);
}
.wg-tc-location {
    font-size: 12px;
    color: var(--text-m);
}
.wg-tc-source {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--purple-light);
}

/* ── Divider Widget ──────────────────────────────────────────── */
.wg-divider-line {
    height: 1px;
    background: var(--border-d);
    border: none;
    margin: 0;
}
.wg-spacer {
    display: block;
}

/* ── Section Padding ─────────────────────────────────────────── */
.py-xs {
    padding-top: 32px;
    padding-bottom: 32px;
}
.py-sm {
    padding-top: 56px;
    padding-bottom: 56px;
}
.py-md {
    padding-top: 80px;
    padding-bottom: 80px;
}
.py-lg {
    padding-top: 120px;
    padding-bottom: 120px;
}
.py-xl {
    padding-top: 160px;
    padding-bottom: 160px;
}
@media (max-width: 768px) {
    .py-lg {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .py-xl {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

/* ── Legacy block-* backward compat ─────────────────────────── */
.blocks-content {
    width: 100%;
}
.block-heading,
.block-paragraph {
    margin-bottom: 20px;
}
.block-image-box {
    margin-bottom: 32px;
}
.block-image-box.pos-left,
.block-image-box.pos-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.block-image-box.pos-right .bib-img {
    order: 2;
}
.block-image-box.pos-right .bib-text {
    order: 1;
}
.bib-img {
    border-radius: var(--radius);
    overflow: hidden;
}
.bib-img img {
    width: 100%;
    border-radius: var(--radius);
}
.block-icon-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.block-spacer {
    display: block;
}
.block-divider {
    height: 1px;
    background: var(--border-d);
    margin: 32px 0;
}
.block-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
    align-items: start;
}
.block-cta {
    background: linear-gradient(135deg, #0b1220, #131b2e);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: var(--radius);
    padding: 56px;
    text-align: center;
    margin-bottom: 32px;
}
.block-cta h2 {
    color: #fff;
    margin-bottom: 12px;
}
.block-cta p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 28px;
}
@media (max-width: 768px) {
    .block-image-box.pos-left,
    .block-image-box.pos-right {
        grid-template-columns: 1fr;
    }
    .block-icon-boxes {
        grid-template-columns: 1fr;
    }
    .block-columns {
        grid-template-columns: 1fr;
    }
    .block-cta {
        padding: 32px 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LUXURY JEWELRY ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Gold Primary CTA Button ────────────────────────────────── */
/* .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: linear-gradient(135deg, #f472b6 0%, #be185d 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.28);
} */

 .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: linear-gradient(313deg, #c1a72d 0%, var(--gold) 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.28);
}
/* .btn-gold::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.14),
        transparent 55%
    );
    pointer-events: none;
} */
 .btn-gold::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 248, 220, 0.28) 0%,
        rgba(255, 255, 255, 0.12) 35%,
        transparent 65%
    );
    pointer-events: none;
}
/* .btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(236, 72, 153, 0.6);
} */
.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.45);
}


/* ── Hero title purple italic (light theme) ──────────────────── */
.hero-title em {
    color: var(--purple);
    font-style: italic;
}

/* ── Hero credential ticker ──────────────────────────────────── */
.hero-ticker {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 9px 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(20, 184, 166, 0.1);
    border-top: 1px solid rgba(20, 184, 166, 0.08);
}
.hero-ticker-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 60px;
}
.ht-item {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(20, 184, 166, 0.65);
    white-space: nowrap;
}
.ht-dot {
    color: rgba(20, 184, 166, 0.25);
    font-size: 8px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .hero-ticker {
        display: none;
    }
}

/* ── Hero content padding adjustment for ticker ──────────────── */
/* .hero-section .hero-content {
    padding-top: 160px;
} */
@media (max-width: 900px) {
    .hero-section .hero-content {
        padding-top: 120px;
    }
}

/* ── Hero gem composition (right visual) ────────────────────── */
.hero-gem-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 500px;
}
.hero-gem-ring {
    width: 460px;
    max-width: 100%;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-gem-ring svg.gem-svg-main {
    width: 100%;
    height: 100%;
}
.hero-gem-spin {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(236, 72, 153, 0.25);
    animation: lxGemSpin 50s linear infinite;
}
.hero-gem-spin2 {
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px dashed rgba(20, 184, 166, 0.25);
    animation: lxGemSpin 30s linear infinite reverse;
}
@keyframes lxGemSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Floating luxury cards */
.lx-float {
    position: absolute;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.95);
    z-index: 5;
    border-radius: 14px;
    border: 1px solid rgba(20, 184, 166, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.lx-float-cred {
    bottom: 30px;
    left: -44px;
    min-width: 250px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.lx-float-stat {
    top: 24px;
    right: -44px;
    padding: 14px 22px;
    text-align: center;
}
.lx-float-badge {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    padding: 12px 16px;
    text-align: center;
}
.lxf-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f472b6, #be185d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.lxf-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-h);
    letter-spacing: 0.3px;
    line-height: 1.3;
}
.lxf-sub {
    font-size: 10px;
    color: var(--text-m);
    margin-top: 3px;
}
.lxf-num {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: #ec4899;
    line-height: 1;
}
.lxf-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-m);
    margin-top: 4px;
}
.lxf-stars {
    color: #ec4899;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
}
.lxf-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-m);
    margin-top: 3px;
}

/* Luxury gold rule ornament */
.gold-rule {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 32px;
}
.gold-rule::before {
    content: "";
    flex: 0 1 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.gold-rule::after {
    content: "";
    flex: 0 1 56px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}
.gold-rule-gem {
    color: var(--gold);
    font-size: 13px;
    line-height: 1;
}

/* ── Skill Bars Widget ───────────────────────────────────────── */
.wg-skill-bars {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.wg-skill-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 9px;
}
.wg-skill-name {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-b);
}
.wg-skill-pct {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.wg-skill-track {
    height: 3px;
    /* background: rgba(0, 0, 0, 0.08); */
    background: linear-gradient(90deg, #43FFEC 0%, #FFB84D 50%, #FF0080 100%);.wg-skill-track;
    border-radius: 2px;
    overflow: hidden;
}
.wg-skill-bar {
    height: 100%;
    border-radius: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Kimono-style large OUTLINE number at bottom of service card ── */
.wg-svc-count {
    display: block;
    font-family: var(--font-serif);
    font-size: 80px;
    font-weight: 700;
    line-height: 1;
    -webkit-text-stroke: 1.5px rgba(20, 184, 166, 0.15);
    color: transparent;
    margin-top: auto;
    padding-top: 20px;
    transition: -webkit-text-stroke-color var(--transition);
    user-select: none;
    pointer-events: none;
}
.wg-icon-box:hover .wg-svc-count {
    -webkit-text-stroke-color: rgba(20, 184, 166, 0.4);
}

/* Featured / highlighted service card */
.wg-icon-box.featured {
    border-color: rgba(20, 184, 166, 0.25) !important;
    background: rgba(20, 184, 166, 0.04) !important;
}
.wg-icon-box.featured .wg-icon-box-icon {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}
.wg-icon-box.featured .wg-svc-count {
    -webkit-text-stroke-color: rgba(20, 184, 166, 0.35);
}

/* Kimono vertical grid-lines overlay on sections */
.pb-row.with-grid-lines {
    position: relative;
}
.pb-row.with-grid-lines > .container {
    position: relative;
    z-index: 1;
}
.pb-row.with-grid-lines::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent calc(33.333% - 0.5px),
        rgba(0, 0, 0, 0.04) calc(33.333% - 0.5px),
        rgba(0, 0, 0, 0.04) 33.333%
    );
}

/* Blog card gold accent */
.blog-card {
    border: 1px solid var(--border-d);
    transition: all var(--transition);
    text-decoration: none;
    display: block;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    color: inherit;
}
.blog-card:hover {
    border-color: rgba(236, 72, 153, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.blog-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-2);
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.04);
}
.blog-card-body {
    padding: 24px;
}
.blog-cat {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 10px;
    display: block;
}
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--text-m);
    padding-top: 14px;
    border-top: 1px solid var(--border-d);
}

@media (max-width: 900px) {
    .hero-gem-wrap {
        min-height: 360px;
    }
    .lx-float-cred {
        left: -10px;
        min-width: 210px;
    }
    .lx-float-stat {
        right: -10px;
    }
    .lx-float-badge {
        display: none;
    }
}
@media (max-width: 600px) {
    .lx-float-cred,
    .lx-float-stat {
        display: none;
    }
    .hero-gem-wrap {
        min-height: 260px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   KIMONO-STYLE HOMEPAGE SECTIONS — Jewelry Edition
   ═══════════════════════════════════════════════════════════════ */

/* Gradient headline text */
/* .grad-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
} */
.grad-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Centered hero variant */
.hero-inner.centered {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 840px;
    margin: 0 auto;
}
.hero-inner.centered .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}
.hero-inner.centered .hero-btns {
    justify-content: center;
}
.hero-inner.centered .hero-trust {
    justify-content: center;
}
.hero-eyebrow.chip-badge {
    background:var(--purple-light);
    /* border: 1px solid rgba(20, 184, 166, 0.25); */
    padding: 8px 18px;
    border-radius: 100px;
    /* font-weight: 400; */
    color: var(--purple);
}
.hero-eyebrow.chip-badge::before {
    display: none;
}

/* Tilted jewel strip below hero */
.hero-jewel-strip {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-top: 64px;
    flex-wrap: wrap;
}
.hjs-item {
    width: 160px;
    height: 200px;
    flex-shrink: 0;
    transition:
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s;
    box-shadow: var(--shadow-lg);
    border-radius: 18px;
}
.hjs-item:hover {
    transform: translateY(-10px) rotate(0deg) !important;
    z-index: 2;
}
.hjs-item:nth-child(1) {
    transform: rotate(-10deg) translateY(18px);
}
.hjs-item:nth-child(2) {
    transform: rotate(-4deg) translateY(4px);
}
.hjs-item:nth-child(3) {
    transform: rotate(0deg) translateY(-10px);
    width: 180px;
    height: 220px;
}
.hjs-item:nth-child(4) {
    transform: rotate(4deg) translateY(4px);
}
.hjs-item:nth-child(5) {
    transform: rotate(10deg) translateY(18px);
}
@media (max-width: 900px) {
    .hjs-item {
        width: 120px;
        height: 150px;
    }
    .hjs-item:nth-child(3) {
        width: 135px;
        height: 170px;
    }
}
@media (max-width: 640px) {
    .hero-jewel-strip {
        display: none;
    }
}

/* Jewel tile (reused for strip, staggered grid, masonry fallback) */
.jewel-tile {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 100%;
    height: 100%;
}
.jewel-tile svg {
    width: 32%;
    height: 32%;
    opacity: 0.92;
}
.tg-teal {
    /* background: linear-gradient(135deg, var(--purple) 0%, #0d9488 100%); */
    color: var(--gold);
    border: 1px solid var(--gold);
}
.tg-purple {
    /* background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); */
    color: var(--purple);
    border: 1px solid var(--purple);
}
.tg-pink {
    /* background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); */
    color: #ec4899;
    border: 1px solid #ec4899;
}

/* Numbered service cards */
.svc-num-card {
    background: var(--bg-card);
    border: 1px solid var(--purple-light);
    /* border-radius: var(--radius); */
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.svc-num-card:hover {
    border-color: var(--purple-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.svc-num-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}
.svc-num-icon svg {
    width: 24px;
    height: 24px;
}
.svc-num-count {
    position: absolute;
    top: 20px;
    right: 26px;
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--purple-light);
    user-select: none;
}
.svc-num-card h3 {
    font-size: 20px;
    margin: 0;
}
.svc-num-card p {
    font-size: 14px;
    color: var(--text-b);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}
.svc-num-card.featured {
    /* background: var(--bg-2); */
    background: radial-gradient(
            circle at 34% 48%,
            rgba(255, 214, 235, 0.7) 0%,
            transparent 34%
        ),
        radial-gradient(
            circle at 66% 50%,
            rgba(202, 246, 243, 0.75) 0%,
            transparent 38%
        ),
        linear-gradient(135deg, #ffffff 0%, #fffafd 45%, #f8ffff 100%);
    border-color: var(--purple-light);
}

/* Studio / Why Choose Us layout */
.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
@media (max-width: 900px) {
    .studio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
    margin: 28px 0;
}
@media (max-width: 520px) {
    .check-grid {
        grid-template-columns: 1fr;
    }
}
.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-b);
    font-weight: 600;
}
.check-item svg {
    flex-shrink: 0;
    color: var(--purple);
}

/* Staggered jewel photo grid (right column of studio section) */
.stagger-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stagger-grid > div {
    display: flex;
    flex-direction: column;
}
.stagger-col-2 {
    margin-top: 48px;
}
.jewel-tile-wrap {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3/4;
    /* box-shadow: var(--shadow-md); */
}
.jewel-tile-wrap.tall {
    aspect-ratio: 3/5;
}
@media (max-width: 520px) {
    .stagger-col-2 {
        margin-top: 24px;
    }
}

/* Masonry-ish portfolio gallery */
.gallery-masonry {
    columns: 3 220px;
    column-gap: 20px;
}
.gallery-masonry .gm-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}
.gallery-masonry .gm-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}
.gallery-masonry .gm-item:hover img {
    transform: scale(1.06);
}
.gm-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
    color: #fff;
}
.gm-caption h4 {
    color: #fff;
    font-size: 15px;
    margin: 0;
}
@media (max-width: 900px) {
    .gallery-masonry {
        columns: 2 180px;
    }
}
@media (max-width: 560px) {
    .gallery-masonry {
        columns: 1;
    }
}

/* Testimonial gradient banner */
.testi-banner {
    /* background: linear-gradient(90deg, #491d95 0%, #723b64 50%, #b11864 100%);
    border-radius: 28px;
    padding: 64px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden; */
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(246, 231, 161, 0.22) 0%,
            transparent 34%
        ),
        linear-gradient(
            120deg,
            #b454f0 0%,
            #b88a20 52%,
            #8011c0 100%
        );

    border-radius: 28px;
    padding: 64px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.testi-banner::before {
    /* content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 80% 20%,
        rgba(255, 255, 255, 0.18) 0%,
        transparent 55%
    );
    pointer-events: none; */
     content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 80% 20%,
            rgba(255, 255, 255, 0.18) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 15% 85%,
            rgba(212, 175, 55, 0.18) 0%,
            transparent 38%
        );
    pointer-events: none;
}
.testi-banner > * {
    position: relative;
    z-index: 1;
}
.testi-stars {
    display: flex;
    gap: 4px;
    /* color: #ffd873; */
    color: var(--gold);
    margin-bottom: 20px;
}
.testi-quote {
    /* font-family: var(--font-serif); */
    font-size: clamp(20px, 2.6vw, 30px);
    /* font-style: italic; */
    line-height: 1.5;
    margin-bottom: 28px;
    color: white;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.testi-name {
    font-weight: 700;
    font-size: 15px;
}
.testi-loc {
    font-size: 12px;
    opacity: 0.75;
}
.testi-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.testi-visual .jewel-tile-wrap {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); */
}
@media (max-width: 820px) {
    .testi-banner {
        grid-template-columns: 1fr;
        padding: 44px 28px;
        text-align: center;
    }
    .testi-stars,
    .testi-author {
        justify-content: center;
    }
    .testi-visual {
        display: none;
    }
}

/* Contact info strip */
.info-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 800px) {
    .info-strip-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.info-strip-item {
    display: flex;
    align-items: center;
    gap: 18px;
}
.info-strip-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    /* background: rgba(20, 184, 166, 0.12); */
    background: var(--purple-light);
    border: 1px solid var(--purple-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    flex-shrink: 0;
}
.info-strip-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-m);
    margin-bottom: 4px;
}
.info-strip-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-h);
}
.info-strip-value a {
    text-decoration: none;
    color: inherit;
}
.info-strip-value a:hover {
    color: var(--purple);
}

/* ── Coverflow Gallery (Swiper.js) ──────────────────────────────── */
.gallery-swiper {
    padding: 20px 10px 64px;
}
.gallery-swiper .swiper-slide {
    width: 280px;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--bg-2);
}
.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-swiper .swiper-slide .jewel-tile {
    width: 100%;
    height: 100%;
}
.coverflow-cap {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px 18px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.gallery-swiper .swiper-pagination-bullet {
    background: var(--purple);
    opacity: 1;
}
.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--purple-light);
    width: 22px;
    border-radius: 4px;
}
@media (max-width: 640px) {
    .gallery-swiper .swiper-slide {
        width: 220px;
        height: 280px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ADMIN PANEL — Clean White & Purple Design
   ═══════════════════════════════════════════════════════════════ */
:root {
    --admin-bg: #f8f7ff;
    --admin-sidebar: #1e1b4b;
    --admin-sidebar2: #2d2a6e;
    --admin-card: #ffffff;
    --admin-border: #e5e7eb;
    --admin-text: #111827;
    --admin-muted: #6b7280;
    --admin-accent: #7c3aed;
    --admin-accent-soft: #ede9fe;
    --admin-accent-xsoft: #f5f3ff;
    --admin-success: #059669;
    --admin-danger: #dc2626;
    --admin-warning: #d97706;
    --admin-info: #2563eb;
}

/* ── Layout ──────────────────────────────────────────────────── */
.admin-body {
    background: var(--admin-bg);
    color: var(--admin-text);
    min-height: 100vh;
    display: flex;
    font-family:
        "Manrope",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
}

/* ── Sidebar ─────────────────────────────────────────────────── */
.admin-sidebar {
    width: 256px;
    min-height: 100vh;
    background: linear-gradient(180deg, #1e1b4b 0%, #2d2a6e 100%);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    flex-shrink: 0;
    box-shadow: 4px 0 24px rgba(30, 27, 75, 0.15);
}

.admin-sidebar-brand {
    padding: 24px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}
.brand-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.3px;
}
.brand-sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(167, 139, 250, 0.7);
    margin-top: 2px;
}

.admin-nav {
    padding: 12px 10px;
    flex: 1;
    overflow-y: auto;
}
.admin-nav-label {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(167, 139, 250, 0.5);
    padding: 14px 12px 5px;
    display: block;
}
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.15s;
    margin-bottom: 2px;
}
.admin-nav-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
}
.admin-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}
.admin-nav-link.active {
    background: rgba(124, 58, 237, 0.25);
    color: #a78bfa;
    font-weight: 700;
    border-left: 3px solid #7c3aed;
    padding-left: 9px;
}

.admin-sidebar-footer {
    padding: 16px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Main Area ───────────────────────────────────────────────── */
.admin-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.admin-topbar {
    height: 64px;
    background: #fff;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.admin-topbar-breadcrumb {
    font-size: 12px;
    color: var(--admin-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.admin-topbar-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e1b4b;
}
.admin-topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-content {
    padding: 28px 32px;
    flex: 1;
}

/* ── Cards ───────────────────────────────────────────────────── */
.admin-card {
    background: #fff;
    border: 1px solid var(--admin-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.admin-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}
.admin-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e1b4b;
    margin: 0;
}
.admin-card-body {
    padding: 20px;
}

/* ── Forms ───────────────────────────────────────────────────── */
.admin-form .form-group {
    margin-bottom: 16px;
}
.admin-form .form-label,
.form-label {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
}
.admin-form .form-control,
.form-control {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    color: #111827;
    padding: 10px 14px;
    font-size: 14px;
    width: 100%;
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
    font-family: inherit;
    outline: none;
}
.admin-form .form-control:focus,
.form-control:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
select.form-control {
    cursor: pointer;
}
textarea.form-control {
    resize: vertical;
    min-height: 80px;
}
.admin-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
    letter-spacing: 0.3px;
    font-family: inherit;
}
.btn-sm-primary {
    background: #7c3aed;
    color: #fff;
    border-color: #7c3aed;
}
.btn-sm-primary:hover {
    background: #6d28d9;
    border-color: #6d28d9;
}
.btn-sm-secondary {
    background: #fff;
    color: #374151;
    border-color: #e5e7eb;
}
.btn-sm-secondary:hover {
    border-color: #7c3aed;
    color: #7c3aed;
}
.btn-sm-danger {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
}
.btn-sm-danger:hover {
    background: #dc2626;
    color: #fff;
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #7c3aed;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s;
    font-family: inherit;
}
.btn-primary-gold:hover {
    background: #6d28d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* ── Tables ──────────────────────────────────────────────────── */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--admin-muted);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1.5px solid var(--admin-border);
    background: #f9fafb;
}
.admin-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--admin-border);
    font-size: 14px;
    color: #374151;
    vertical-align: middle;
}
.admin-table tr:last-child td {
    border-bottom: none;
}
.admin-table tbody tr:hover td {
    background: #fafafa;
}

/* ── Badges ──────────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
}
.badge-success,
.badge-green {
    background: #d1fae5;
    color: #065f46;
}
.badge-danger,
.badge-red {
    background: #fee2e2;
    color: #991b1b;
}
.badge-warning,
.badge-yellow {
    background: #fef3c7;
    color: #92400e;
}
.badge-primary {
    background: #ede9fe;
    color: #5b21b6;
}
.badge-secondary,
.badge-gray {
    background: #f3f4f6;
    color: #6b7280;
}
.badge-info {
    background: #dbeafe;
    color: #1e40af;
}

/* ── Alerts ──────────────────────────────────────────────────── */
.form-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}
.form-alert.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
.form-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ── Topbar Badge ────────────────────────────────────────────── */
.nav-badge {
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 100px;
    margin-left: auto;
}

/* ── Scrollbar ───────────────────────────────────────────────── */
.admin-sidebar::-webkit-scrollbar {
    width: 4px;
}
.admin-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.admin-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}
.badge-gold {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}
