/* ============================================================
 * RandevuTakip — Frontend Premium Stylesheet
 * Modern SaaS · Premium · Mobile-first
 * Bölümler:
 *   01  Root Variables
 *   02  Reset & Base
 *   03  Typography
 *   04  Layout / Containers / Sections
 *   05  Buttons
 *   06  Forms
 *   07  Cards (generic)
 *   08  Badges & Chips
 *   09  Navbar
 *   10  Hero
 *   11  Trust Strip
 *   12  Service Module
 *   13  Package Module
 *   14  Team Module
 *   15  Campaign Module
 *   16  Appointment Stepper (Modal)
 *   17  Summary Card
 *   18  Gallery & Lightbox
 *   19  Reviews
 *   20  FAQ
 *   21  Contact
 *   22  Footer
 *   23  Floating elements (WhatsApp / Mobile CTA)
 *   24  Animations / Scroll-Reveal / Skeleton
 *   25  Utility Helpers
 *   26  Responsive
 * ============================================================ */


/* ============================================================
 * 01 ROOT VARIABLES
 * ============================================================ */
:root {
    /* Brand palette (overridable from PHP/Admin) */
    --primary:        #4f46e5;
    --primary-dark:   #3730a3;
    --primary-soft:   rgba(79, 70, 229, .12);
    --secondary:      #0ea5e9;
    --accent:         #f59e0b;
    --success:        #10b981;
    --danger:         #ef4444;
    --warning:        #f59e0b;
    --info:           #06b6d4;
    --whatsapp:       #25d366;

    /* Ink (text colors) */
    --ink-900:        #0f172a;
    --ink-700:        #1e293b;
    --ink-500:        #475569;
    --ink-400:        #64748b;
    --ink-300:        #94a3b8;
    --ink-200:        #cbd5e1;
    --ink-100:        #e2e8f0;

    /* Surfaces */
    --surface:        #ffffff;
    --surface-alt:    #f8fafc;
    --surface-soft:   #f1f5f9;
    --bg:             #ffffff;

    /* Spacing scale (4px base) */
    --space-1:        .25rem;
    --space-2:        .5rem;
    --space-3:        .75rem;
    --space-4:        1rem;
    --space-5:        1.5rem;
    --space-6:        2rem;
    --space-7:        3rem;
    --space-8:        4rem;
    --space-9:        6rem;

    /* Radius scale */
    --radius-sm:      8px;
    --radius:         14px;
    --radius-lg:      20px;
    --radius-xl:      28px;
    --radius-pill:    999px;

    /* Shadows (layered, soft) */
    --shadow-xs:      0 1px 2px rgba(15, 23, 42, .04);
    --shadow-sm:      0 2px 8px rgba(15, 23, 42, .05);
    --shadow:         0 8px 24px rgba(15, 23, 42, .08);
    --shadow-md:      0 14px 40px rgba(15, 23, 42, .10);
    --shadow-lg:      0 24px 60px rgba(15, 23, 42, .14);
    --shadow-glow:    0 18px 38px rgba(79, 70, 229, .35);

    /* Transitions */
    --t-fast:         .15s ease;
    --t-med:          .25s cubic-bezier(.4,.0,.2,1);
    --t-slow:         .5s cubic-bezier(.4,.0,.2,1);

    /* Gradients */
    --grad-primary:   linear-gradient(135deg, var(--primary), var(--secondary));
    --grad-soft:      linear-gradient(180deg, rgba(79,70,229,.05), rgba(14,165,233,.05));
    --grad-dark:      linear-gradient(135deg, #0f172a, #1e293b 60%, #312e81);

    /* Misc */
    --header-h:       72px;
    --container:      1200px;
    --font-sans:      'Inter', 'Manrope', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}


/* ============================================================
 * 02 RESET & BASE
 * ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--ink-700);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--primary); }
hr { border: 0; border-top: 1px solid var(--ink-100); margin: var(--space-5) 0; }
::selection { background: var(--primary); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--surface-soft); }
::-webkit-scrollbar-thumb { background: var(--ink-200); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--ink-300); }


/* ============================================================
 * 03 TYPOGRAPHY
 * ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    color: var(--ink-900);
    line-height: 1.2;
    letter-spacing: -.015em;
    margin: 0 0 var(--space-3);
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.5rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: .95rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
p  { margin: 0 0 var(--space-4); color: var(--ink-500); }
.lead { font-size: 1.15rem; color: var(--ink-500); line-height: 1.65; }
.small, small { font-size: .85rem; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: .35rem .9rem;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 600;
    font-size: .8rem;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.text-gradient {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title    { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-top: var(--space-3); }
.section-subtitle { max-width: 640px; margin: var(--space-3) auto 0; color: var(--ink-500); font-size: 1.05rem; }


/* ============================================================
 * 04 LAYOUT / CONTAINERS / SECTIONS
 * ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }

.section { padding: clamp(3rem, 6vw, 6rem) 0; position: relative; }
.section--alt {
    background:
        radial-gradient(circle at 20% 20%, rgba(79,70,229,.06), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(14,165,233,.06), transparent 55%),
        var(--surface-alt);
}
.section--dark { background: var(--grad-dark); color: #fff; }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.75); }

.section-head { text-align: center; margin-bottom: var(--space-7); }

.bg-mesh {
    background:
        radial-gradient(circle at 10% 0%, rgba(79,70,229,.12), transparent 40%),
        radial-gradient(circle at 90% 100%, rgba(14,165,233,.12), transparent 45%),
        var(--surface-alt);
}

.surface-soft {
    background: var(--surface);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.surface-soft:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}


/* ============================================================
 * 05 BUTTONS
 * ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1.4rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    border: 0;
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-med), color var(--t-med);
    letter-spacing: .01em;
}
.btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
.btn:active { transform: scale(.97); }
.btn-lg { padding: .95rem 1.8rem; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: .45rem .9rem; font-size: .82rem; border-radius: var(--radius-sm); }

.btn-cta,
.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn-cta:hover,
.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(79, 70, 229, .42);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    box-shadow: inset 0 0 0 2px var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }

.btn-outline-ghost {
    background: rgba(255, 255, 255, .14);
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}
.btn-outline-ghost:hover { background: rgba(255, 255, 255, .25); color: #fff; }

.btn-soft {
    background: var(--primary-soft);
    color: var(--primary);
}
.btn-soft:hover { background: var(--primary); color: #fff; }

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 14px 28px rgba(37, 211, 102, .35);
}
.btn-whatsapp:hover { color: #fff; transform: translateY(-2px); }

.btn-outline-secondary {
    background: transparent;
    color: var(--ink-700);
    box-shadow: inset 0 0 0 1px var(--ink-200);
}
.btn-outline-secondary:hover { background: var(--ink-700); color: #fff; box-shadow: none; }

/* Loading state */
.btn[data-loading="true"] {
    color: transparent !important;
    position: relative;
    pointer-events: none;
}
.btn[data-loading="true"]::after {
    content: '';
    position: absolute; inset: 0;
    margin: auto;
    width: 18px; height: 18px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    color: #fff;
}


/* ============================================================
 * 06 FORMS
 * ============================================================ */
.form-control,
.form-select {
    padding: .8rem 1rem;
    border-radius: var(--radius);
    border: 1.5px solid var(--ink-100);
    background: var(--surface);
    color: var(--ink-700);
    font-size: .95rem;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
    width: 100%;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
    outline: none;
    background: #fff;
}
.form-control::placeholder { color: var(--ink-300); }
.form-label { font-weight: 600; color: var(--ink-700); margin-bottom: .35rem; font-size: .9rem; }
.form-text  { color: var(--ink-400); font-size: .82rem; }
.input-group .form-control { border-radius: var(--radius); }


/* ============================================================
 * 07 CARDS (generic)
 * ============================================================ */
.card {
    background: var(--surface);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: transform var(--t-med), box-shadow var(--t-med);
}
.card:hover { box-shadow: var(--shadow-sm); }
.card-body { padding: var(--space-5); }


/* ============================================================
 * 08 BADGES & CHIPS
 * ============================================================ */
.chip {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .25rem .75rem;
    background: var(--surface-soft);
    color: var(--ink-700);
    border-radius: var(--radius-pill);
    font-size: .78rem;
    font-weight: 500;
}
.badge-soft {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .35rem .8rem;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: .78rem;
    font-weight: 600;
}
.badge-success-soft { background: rgba(16,185,129,.12); color: var(--success); }
.badge-danger-soft  { background: rgba(239,68,68,.12);  color: var(--danger); }
.badge-warning-soft { background: rgba(245,158,11,.12); color: var(--warning); }
.badge-info-soft    { background: rgba(6,182,212,.12);  color: var(--info); }


/* ============================================================
 * 09 NAVBAR
 * ============================================================ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 950;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t-med), box-shadow var(--t-med), background var(--t-med);
}
.site-nav.scrolled {
    background: rgba(255, 255, 255, .96);
    border-bottom-color: var(--ink-100);
    box-shadow: var(--shadow-xs);
}
.site-nav .navbar { padding: .75rem 0; }
.site-nav .navbar-brand {
    display: inline-flex; align-items: center; gap: .65rem;
    font-weight: 800; font-size: 1.15rem; color: var(--ink-900);
}
.site-nav .brand-icon {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--grad-primary);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}
.site-nav .nav-link {
    color: var(--ink-500);
    font-weight: 500;
    padding: .55rem .9rem !important;
    border-radius: var(--radius-sm);
    transition: color var(--t-fast), background var(--t-fast);
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active { color: var(--primary); background: var(--primary-soft); }


/* ============================================================
 * 10 HERO
 * ============================================================ */
.hero-section {
    position: relative;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
    color: #fff;
    background: var(--grad-dark);
    overflow: hidden;
    isolation: isolate;
}
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .5;
    z-index: -1;
    pointer-events: none;
}
.hero-section::before {
    width: 500px; height: 500px;
    top: -120px; right: -100px;
    background: var(--primary);
    animation: hero-float 8s ease-in-out infinite;
}
.hero-section::after {
    width: 380px; height: 380px;
    bottom: -160px; left: -120px;
    background: var(--secondary);
    animation: hero-float 10s ease-in-out infinite reverse;
}
.hero-section h1   { color: #fff; }
.hero-section .lead { color: rgba(255, 255, 255, .8); max-width: 560px; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .4rem 1rem;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: .85rem;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    font-weight: 500;
}

.hero-live-strip {
    display: flex; align-items: center; gap: .6rem;
    padding: .55rem 1rem;
    background: rgba(255, 255, 255, .1);
    border-radius: var(--radius-pill);
    color: rgba(255, 255, 255, .9);
    font-size: .85rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    width: fit-content;
}
.hero-live-strip .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .3);
    animation: pulse 1.5s ease-in-out infinite;
}

/* Floating preview card */
.hero-preview {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-xl);
    padding: 1.6rem;
    color: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
    transform: rotate(-1deg);
    transition: transform var(--t-slow);
    animation: hero-float 6s ease-in-out infinite;
}
.hero-preview:hover { transform: rotate(0deg) translateY(-6px); }
.preview-head {
    display: flex; align-items: center; gap: .7rem;
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.preview-avatar {
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--grad-primary);
    font-size: 1.1rem;
}
.preview-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: .65rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .1);
    font-size: .9rem;
}
.preview-row:last-of-type { border-bottom: 0; }
.preview-row .label { color: rgba(255, 255, 255, .55); }


/* ============================================================
 * 11 TRUST STRIP
 * ============================================================ */
.trust-strip {
    margin-top: -56px;
    position: relative; z-index: 5;
    padding: 0 0 var(--space-7);
}
.trust-card {
    background: var(--surface);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    display: flex; align-items: center; gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-med), box-shadow var(--t-med);
    height: 100%;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-card .icon {
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.35rem;
    flex-shrink: 0;
}
.trust-card h6 { font-size: .95rem; color: var(--ink-900); text-transform: none; letter-spacing: 0; margin: 0 0 .15rem; }
.trust-card p  { font-size: .82rem; color: var(--ink-400); margin: 0; }


/* ============================================================
 * 12 SERVICE MODULE
 * ============================================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
}
.service-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ink-100);
    display: flex; flex-direction: column;
    transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
    position: relative;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.service-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--grad-soft);
    overflow: hidden;
}
.service-cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow);
}
.service-card:hover .service-cover img { transform: scale(1.07); }
.service-cover::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, .4) 100%);
    opacity: 0;
    transition: opacity var(--t-med);
}
.service-card:hover .service-cover::after { opacity: 1; }
.service-cover .ph {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 2.5rem;
}
.service-card h5 { padding: var(--space-4) var(--space-4) 0; margin: 0; }
.service-card .meta {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--space-3) var(--space-4);
    color: var(--ink-400);
    font-size: .9rem;
}
.service-card .meta .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
}
.service-card p     { padding: 0 var(--space-4); }
.service-card .actions { padding: 0 var(--space-4) var(--space-4); margin-top: auto; }


/* ============================================================
 * 13 PACKAGE MODULE
 * ============================================================ */
.package-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1.5px solid var(--ink-100);
    text-align: left;
    height: 100%;
    display: flex; flex-direction: column;
    transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
    position: relative;
    overflow: hidden;
}
.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
}
.package-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ink-900);
    margin: .5rem 0 1.25rem;
    letter-spacing: -.025em;
}
.package-card .price small {
    font-size: .85rem;
    color: var(--ink-400);
    font-weight: 500;
    margin-left: .25rem;
}
.package-card .benefits { list-style: none; padding: 0; margin: 0 0 var(--space-5); }
.package-card .benefits li {
    display: flex; align-items: center; gap: .6rem;
    padding: .55rem 0;
    color: var(--ink-500);
    border-bottom: 1px dashed var(--ink-100);
    font-size: .92rem;
}
.package-card .benefits li:last-child { border-bottom: 0; }
.package-card .benefits i { color: var(--success); font-size: 1.05rem; }

/* Featured (popular) */
.package-card.featured {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    transform: scale(1.04);
}
.package-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.package-card.featured .price,
.package-card.featured h5 { color: #fff; }
.package-card.featured .price small { color: rgba(255,255,255,.7); }
.package-card.featured .benefits li {
    color: rgba(255, 255, 255, .9);
    border-bottom-color: rgba(255, 255, 255, .15);
}
.package-card.featured .benefits i { color: #fff; }
.badge-popular {
    position: absolute;
    top: 16px; right: 16px;
    background: #fff;
    color: var(--primary);
    padding: .25rem .8rem;
    border-radius: var(--radius-pill);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: var(--shadow-sm);
}


/* ============================================================
 * 14 TEAM MODULE
 * ============================================================ */
.team-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    text-align: center;
    border: 1px solid var(--ink-100);
    transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
    height: 100%;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.team-avatar {
    width: 110px; height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--surface);
    box-shadow: var(--shadow);
    margin: 0 auto var(--space-3);
    background: var(--primary-soft);
}
.team-card h5 { margin: 0 0 .25rem; }
.team-card .specialty { color: var(--primary); font-weight: 500; font-size: .9rem; margin-bottom: .75rem; }
.team-card .tags { display: flex; flex-wrap: wrap; gap: .35rem; justify-content: center; margin-bottom: var(--space-4); }
.team-card .tags span {
    background: var(--surface-soft);
    color: var(--ink-500);
    padding: .25rem .65rem;
    border-radius: var(--radius-pill);
    font-size: .72rem;
    font-weight: 500;
}


/* ============================================================
 * 15 CAMPAIGN MODULE
 * ============================================================ */
.campaign-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--ink-100);
    height: 100%;
    display: flex; flex-direction: column;
    transition: transform var(--t-med), box-shadow var(--t-med);
}
.campaign-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.campaign-card .cover {
    aspect-ratio: 16 / 9;
    background: var(--grad-primary);
    position: relative;
    overflow: hidden;
}
.campaign-card .cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow);
}
.campaign-card:hover .cover img { transform: scale(1.05); }
.campaign-card .body { padding: var(--space-5); flex: 1; display: flex; flex-direction: column; }
.campaign-card .dates {
    color: var(--ink-400);
    font-size: .8rem;
    margin-bottom: .5rem;
}
.campaign-card .actions { margin-top: auto; padding-top: var(--space-3); }


/* ============================================================
 * 16 APPOINTMENT STEPPER (Modal)
 * ============================================================ */
#appointmentModal .modal-dialog { max-width: 980px; }
#appointmentModal .modal-content {
    border: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
#appointmentModal .modal-header {
    background: var(--grad-dark);
    color: #fff;
    padding: 1.2rem 1.75rem;
    border: 0;
}
#appointmentModal .modal-title { color: #fff; font-weight: 700; }
#appointmentModal .btn-close { filter: invert(1); opacity: .7; }
#appointmentModal .modal-body { padding: 0; }

.stepper-shell { display: grid; grid-template-columns: 1fr 320px; min-height: 480px; }
.stepper-shell .stepper-main { padding: 1.75rem; }
.stepper-shell .stepper-aside {
    background: var(--surface-alt);
    border-left: 1px solid var(--ink-100);
    padding: 1.75rem;
}

.stepper-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-5);
    position: relative;
}
.stepper-progress::before {
    content: '';
    position: absolute;
    top: 16px; left: 16px; right: 16px;
    height: 2px;
    background: var(--ink-100);
    z-index: 0;
}
.stepper-progress .step {
    position: relative; z-index: 1;
    display: flex; flex-direction: column; align-items: center;
    gap: .35rem;
    flex: 1;
    color: var(--ink-300);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: color var(--t-med);
}
.stepper-progress .step .step-num {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink-300);
    font-size: .9rem;
    border: 2px solid var(--ink-100);
    transition: background var(--t-med), color var(--t-med), border-color var(--t-med), transform var(--t-med);
}
.stepper-progress .step.active { color: var(--primary); }
.stepper-progress .step.active .step-num {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}
.stepper-progress .step.done { color: var(--success); }
.stepper-progress .step.done .step-num {
    background: var(--success);
    color: #fff;
    border-color: transparent;
}

.stepper-panel { display: none; animation: fade-in .35s ease; }
.stepper-panel.active { display: block; }

.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-3);
}
.choice-tile {
    background: var(--surface);
    border: 1.5px solid var(--ink-100);
    border-radius: var(--radius);
    padding: 1rem;
    cursor: pointer;
    transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
    text-align: left;
}
.choice-tile:hover { border-color: var(--primary); transform: translateY(-2px); }
.choice-tile.selected {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .12);
}
.choice-tile h6 { margin: 0 0 .15rem; text-transform: none; letter-spacing: 0; font-size: .95rem; color: inherit; }
.choice-tile small { color: var(--ink-400); }
.choice-tile.selected small { color: rgba(79, 70, 229, .8); }

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
    gap: .55rem;
    margin-top: var(--space-3);
}
.slot-tile {
    padding: .65rem 0;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1.5px solid var(--ink-100);
    color: var(--ink-700);
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all var(--t-fast);
}
.slot-tile:hover { border-color: var(--primary); color: var(--primary); }
.slot-tile.selected { background: var(--primary); color: #fff; border-color: var(--primary); }

.stepper-actions {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: var(--space-5);
    padding-top: var(--space-4);
    border-top: 1px solid var(--ink-100);
}


/* ============================================================
 * 17 SUMMARY CARD
 * ============================================================ */
.summary-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    border: 1px solid var(--ink-100);
    box-shadow: var(--shadow-sm);
}
.summary-card h6 {
    margin: 0 0 var(--space-3);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .75rem;
    color: var(--ink-400);
}
.summary-card .row-line {
    display: flex; justify-content: space-between; align-items: center;
    padding: .55rem 0;
    border-bottom: 1px dashed var(--ink-100);
    font-size: .9rem;
}
.summary-card .row-line:last-child { border-bottom: 0; }
.summary-card .row-line .label { color: var(--ink-400); }
.summary-card .row-line .value { color: var(--ink-900); font-weight: 600; text-align: right; }
.summary-card .row-line .value.muted { color: var(--ink-300); font-weight: 500; }
.summary-card .total {
    margin-top: var(--space-3);
    padding: var(--space-4);
    background: var(--grad-soft);
    border-radius: var(--radius);
    display: flex; justify-content: space-between; align-items: center;
}
.summary-card .total strong { font-size: 1.35rem; color: var(--primary); }


/* ============================================================
 * 18 GALLERY & LIGHTBOX
 * ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-3);
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
    content: '\F52A';
    font-family: bootstrap-icons !important;
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(15, 23, 42, .55);
    color: #fff; font-size: 1.4rem;
    opacity: 0; transition: opacity var(--t-med);
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 2000;
    display: none; align-items: center; justify-content: center;
    padding: 1rem;
}
.lightbox.active { display: flex; animation: fade-in .25s ease; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: 0; border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
}


/* ============================================================
 * 19 REVIEWS
 * ============================================================ */
.review-card {
    background: var(--surface);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    height: 100%;
    transition: transform var(--t-med), box-shadow var(--t-med);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card .stars { color: var(--warning); margin-bottom: var(--space-3); font-size: 1rem; }
.review-card p { font-style: italic; color: var(--ink-700); margin-bottom: var(--space-4); }
.review-card .author { display: flex; flex-direction: column; font-weight: 600; color: var(--ink-900); }
.review-card .author small { color: var(--ink-400); font-weight: 400; }


/* ============================================================
 * 20 FAQ
 * ============================================================ */
.faq-list .accordion-item {
    border: 1px solid var(--ink-100);
    border-radius: var(--radius) !important;
    margin-bottom: var(--space-3);
    overflow: hidden;
    background: var(--surface);
}
.faq-list .accordion-button {
    background: var(--surface);
    color: var(--ink-900);
    font-weight: 600;
    padding: 1.1rem 1.3rem;
    box-shadow: none;
    border-radius: var(--radius) !important;
}
.faq-list .accordion-button:not(.collapsed) {
    background: var(--primary-soft);
    color: var(--primary);
}
.faq-list .accordion-body { color: var(--ink-500); padding: 0 1.3rem 1.3rem; }


/* ============================================================
 * 21 CONTACT
 * ============================================================ */
.contact-card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius);
    transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
    color: inherit;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--primary-soft); }
.contact-card .icon {
    width: 46px; height: 46px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-card .label { color: var(--ink-400); font-size: .78rem; }
.contact-card .value { color: var(--ink-900); font-weight: 600; }

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 320px;
    border: 1px solid var(--ink-100);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
    background: var(--surface);
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
}


/* ============================================================
 * 22 FOOTER
 * ============================================================ */
.site-footer {
    background: var(--grad-dark);
    color: rgba(255, 255, 255, .75);
    padding: var(--space-8) 0 var(--space-5);
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 400px; height: 400px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    pointer-events: none;
}
.site-footer h6 { color: #fff; font-size: .85rem; margin-bottom: var(--space-4); }
.site-footer a { color: rgba(255, 255, 255, .7); display: inline-block; padding: .15rem 0; }
.site-footer a:hover { color: #fff; }
.footer-social {
    display: flex; gap: .5rem;
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background var(--t-med), transform var(--t-med);
    padding: 0;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .82rem;
}


/* ============================================================
 * 23 FLOATING ELEMENTS
 * ============================================================ */
.floating-wa {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 14px 35px rgba(37, 211, 102, .45);
    z-index: 980;
    animation: wa-pulse 2s ease-in-out infinite;
}
.floating-wa:hover { color: #fff; transform: scale(1.08); }
.floating-wa::after {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--whatsapp);
    opacity: 0;
    animation: wa-ring 2s ease-out infinite;
}

.mobile-cta-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--ink-100);
    padding: .75rem 1rem;
    z-index: 970;
    display: none;
    box-shadow: 0 -8px 24px rgba(15, 23, 42, .08);
}


/* ============================================================
 * 24 ANIMATIONS / SCROLL-REVEAL / SKELETON
 * ============================================================ */
@keyframes spin       { to { transform: rotate(360deg); } }
@keyframes fade-in    { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse      { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.85); opacity: .7; } }
@keyframes wa-pulse   { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes wa-ring    { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(1.4); } }
@keyframes hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes shimmer    { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

.skeleton {
    background: linear-gradient(90deg, var(--ink-100) 0%, var(--surface-soft) 50%, var(--ink-100) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: var(--radius-sm);
    color: transparent !important;
    pointer-events: none;
}
.skeleton-line  { height: 14px; margin: 6px 0; }
.skeleton-block { height: 60px; }


/* ============================================================
 * 25 UTILITY HELPERS
 * ============================================================ */
.text-muted        { color: var(--ink-400) !important; }
.text-primary      { color: var(--primary) !important; }
.bg-primary-soft   { background: var(--primary-soft) !important; }
.brand-icon-inline {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--grad-primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: .85rem;
    flex-shrink: 0;
}
.shadow-glow { box-shadow: var(--shadow-glow); }


/* ============================================================
 * 24y FOOTER CREDIT (TGR Soft inline link)
 * ============================================================ */
.footer-credit {
    color: rgba(255, 255, 255, .55);
    font-size: .85rem;
}
.footer-credit a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
    padding: 0;
}
.footer-credit a:hover {
    color: var(--primary, #6366f1);
    text-decoration: none;
}
.footer-credit a i {
    color: var(--accent, #f59e0b);
    margin-right: .2rem;
    font-size: .85rem;
}
.footer-credit a strong { font-weight: 700; margin-left: 2px; }


/* ============================================================
 * 24z HERO PRO (v3 polish) — animated stats, orbs, refined preview
 * ============================================================ */
.hero-pro { padding-block: clamp(5rem, 9vw, 8rem) clamp(4rem, 7vw, 6rem); }

.hero-pro__title {
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: clamp(2.25rem, 1.4rem + 3.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}
.hero-pro__lead {
    font-size: clamp(1.05rem, .95rem + .35vw, 1.25rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, .82);
    max-width: 60ch;
}

.hero-pro__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-pro__cta .btn-cta { padding: 1rem 1.75rem; font-size: 1.05rem; }

.hero-pro__bullets {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: .85rem 1.6rem;
    color: rgba(255, 255, 255, .86);
    font-size: .92rem;
}
.hero-pro__bullets li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-pro__bullets li i { color: #10b981; font-size: 1.05rem; }

.hero-pro__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
    margin-top: 2rem;
    max-width: 540px;
}
.hero-pro__stats .hp-stat {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    color: #fff;
    transition: transform .25s ease, background .25s ease;
}
.hero-pro__stats .hp-stat:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .12); }
.hero-pro__stats .hp-stat strong {
    display: block;
    font-family: 'Manrope', 'Inter', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.hero-pro__stats .hp-stat span { font-size: .78rem; color: rgba(255, 255, 255, .65); text-transform: uppercase; letter-spacing: .06em; }
.hero-pro__stats .hp-star { color: #f59e0b; margin-left: 4px; }

/* Animated decorative blur orbs */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: -1; }
.hero-orbs .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
}
.hero-orbs .orb-1 { width: 460px; height: 460px; top: -120px; right: -90px;  background: var(--primary);   animation: hero-orb 12s ease-in-out infinite; }
.hero-orbs .orb-2 { width: 360px; height: 360px; bottom: -150px; left: -80px; background: var(--secondary); animation: hero-orb 14s ease-in-out infinite reverse; }
.hero-orbs .orb-3 { width: 260px; height: 260px; top: 45%; left: 40%;        background: #ec4899;          opacity: .25; animation: hero-orb 18s ease-in-out infinite; }
@keyframes hero-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(40px, -30px) scale(1.08); }
}

/* Refined preview card v3 */
.hero-preview .preview-slots {
    display: inline-flex; gap: 4px; flex-wrap: wrap;
}
.hero-preview .preview-slots em {
    font-style: normal;
    font-size: .8rem;
    padding: .2rem .55rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.hero-preview .preview-slots em.hot {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 4px 12px -4px var(--primary);
}
.hero-preview .preview-trust {
    margin-top: .9rem;
    padding-top: .9rem;
    border-top: 1px dashed rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .55);
    font-size: .76rem;
    text-align: center;
}
.hero-preview .preview-trust i { color: #10b981; margin-right: .3rem; }


/* ============================================================
 * 25a AUTH DRAWER (sağdan açılan login/register/forgot/verify)
 * ============================================================ */
.auth-drawer {
    position: fixed;
    inset: 0;
    z-index: 1080;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease;
}
.auth-drawer[aria-hidden="false"] {
    pointer-events: auto;
    opacity: 1;
}

.auth-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    opacity: 0;
    transition: opacity .35s ease;
}
.auth-drawer[aria-hidden="false"] .auth-drawer__backdrop { opacity: 1; }

.auth-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(960px, 100%);
    background: var(--surface, #fff);
    box-shadow: -28px 0 80px rgba(15, 23, 42, .25);
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.22, .61, .36, 1);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    overflow: hidden;
    border-radius: 28px 0 0 28px;
}
.auth-drawer[aria-hidden="false"] .auth-drawer__panel { transform: translateX(0); }

/* Left — trust pane (gradient) ============================== */
.auth-drawer__trust {
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-dark, var(--primary)) 55%, var(--secondary) 100%);
    color: #fff;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}
.auth-drawer__trust::before,
.auth-drawer__trust::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.auth-drawer__trust::before { width: 320px; height: 320px; top: -100px; right: -100px; background: rgba(255, 255, 255, .25); }
.auth-drawer__trust::after  { width: 260px; height: 260px; bottom: -90px; left: -80px; background: rgba(15, 23, 42, .25); }
.auth-drawer__trust > * { position: relative; z-index: 1; }

.trust-brand {
    display: flex; align-items: center; gap: .65rem;
    font-weight: 700;
    font-size: 1.1rem;
}
.trust-icon {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.trust-headline {
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    margin: 1rem 0 .5rem;
}
.trust-sub {
    color: rgba(255, 255, 255, .8);
    font-size: .95rem;
}
.trust-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.trust-list li {
    display: flex; align-items: flex-start; gap: .85rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: .75rem .9rem;
    backdrop-filter: blur(6px);
}
.trust-list .ti {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255, 255, 255, .18);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.05rem;
}
.trust-list strong { display: block; font-weight: 600; }
.trust-list small  { display: block; color: rgba(255, 255, 255, .7); font-size: .78rem; }
.trust-foot {
    margin-top: auto;
    color: rgba(255, 255, 255, .82);
    font-size: .85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

/* Right — form body ============================== */
.auth-drawer__body {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    min-width: 0;
    /* Flex içinde scroll alanıın çalışması için (aksi halde min-height:auto içeriği kadar büyür, taşan kısım kesilir) */
    min-height: 0;
    overflow: hidden;
}

.auth-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem .75rem;
    border-bottom: 1px solid var(--ink-100, #e5e7eb);
    flex-shrink: 0;
}

.auth-tabs {
    display: inline-flex;
    background: var(--surface-alt, #f3f4f6);
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
}
.auth-tab {
    border: 0;
    background: transparent;
    color: var(--ink-500, #6b7280);
    font-weight: 600;
    font-size: .9rem;
    padding: .55rem 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all .25s ease;
}
.auth-tab:hover { color: var(--primary); }
.auth-tab.active {
    background: var(--surface, #fff);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
}

.auth-close {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--surface-alt, #f3f4f6);
    border: 0;
    color: var(--ink-500);
    cursor: pointer;
    transition: background var(--t-fast, .2s), transform var(--t-fast, .2s);
}
.auth-close:hover { background: var(--ink-100); transform: rotate(90deg); color: var(--ink-900); }

.auth-pending-banner {
    margin: .75rem 1.5rem 0;
    background: var(--primary-soft);
    color: var(--primary);
    border: 1px solid color-mix(in srgb, var(--primary) 18%, transparent);
    padding: .75rem 1rem;
    border-radius: 14px;
    font-size: .88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.auth-drawer__scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 1.5rem;
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    scroll-behavior: smooth;
}

/* Panes */
.auth-pane {
    display: none;
    animation: authFadeIn .35s ease both;
}
.auth-pane.active { display: block; }
@keyframes authFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.auth-pane h4 {
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 0 .25rem;
    color: var(--ink-900);
}
.auth-sub {
    color: var(--ink-500);
    font-size: .92rem;
    margin: 0 0 1.25rem;
}
.auth-back {
    border: 0;
    background: transparent;
    color: var(--ink-500);
    padding: 0;
    font-size: .85rem;
    cursor: pointer;
    margin-bottom: .85rem;
}
.auth-back:hover { color: var(--primary); }

/* Form primitives */
.auth-field { margin-bottom: 1rem; }
.auth-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: .35rem;
}
.auth-hint { color: var(--ink-400); font-weight: 400; }

.auth-input {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--surface-alt);
    border: 1.5px solid transparent;
    border-radius: 14px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.auth-input:focus-within {
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 4px var(--primary-soft);
}
.auth-input__icon {
    margin: 0 .15rem 0 .85rem;
    color: var(--ink-400);
    font-size: 1.05rem;
}
.auth-input input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    padding: .85rem .85rem;
    font-size: .95rem;
    color: var(--ink-900);
    min-width: 0;
}
.auth-input input::placeholder { color: var(--ink-300); }
.auth-input__suffix {
    border: 0;
    background: transparent;
    color: var(--ink-400);
    padding: 0 .85rem;
    cursor: pointer;
    font-size: 1rem;
}
.auth-input__suffix:hover { color: var(--primary); }

.auth-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .25rem 0 1.25rem;
    font-size: .86rem;
    flex-wrap: wrap;
    gap: .5rem;
}
.auth-check {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    cursor: pointer;
    color: var(--ink-700);
    font-size: .85rem;
}
.auth-check input { accent-color: var(--primary); transform: scale(1.05); }

.auth-perms {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    background: var(--surface-alt);
    border-radius: 14px;
    padding: .9rem 1rem;
    margin-bottom: 1rem;
}

.auth-link {
    background: transparent;
    border: 0;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    font-size: .9rem;
}
.auth-link:hover { text-decoration: underline; }

.auth-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: 0;
    border-radius: 14px;
    padding: .95rem 1.2rem;
    font-weight: 700;
    font-size: .98rem;
    box-shadow: 0 10px 25px -8px var(--primary);
    cursor: pointer;
    transition: transform var(--t-fast, .2s), box-shadow var(--t-fast, .2s), opacity var(--t-fast, .2s);
}
.auth-cta:hover  { transform: translateY(-1px); box-shadow: 0 16px 32px -8px var(--primary); color: #fff; }
.auth-cta:active { transform: translateY(0); }
.auth-cta[disabled],
.auth-cta[data-loading="true"] { opacity: .85; cursor: progress; }
.auth-cta[data-loading="true"] .lbl::after {
    content: '';
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid rgba(255, 255, 255, .55);
    border-top-color: #fff;
    border-radius: 50%;
    animation: authSpin .7s linear infinite;
    margin-left: .5rem;
    vertical-align: -2px;
}
@keyframes authSpin { to { transform: rotate(360deg); } }

.auth-cta--ghost {
    background: var(--surface-alt);
    color: var(--ink-700);
    box-shadow: none;
}
.auth-cta--ghost:hover { background: var(--ink-100); color: var(--ink-900); }

.auth-foot-line {
    text-align: center;
    color: var(--ink-500);
    font-size: .87rem;
    margin: 1rem 0 0;
}

/* Verify pane */
.auth-verify { text-align: center; padding: 1rem 0; }
.auth-verify__icon {
    width: 92px; height: 92px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--primary-soft), color-mix(in srgb, var(--primary) 20%, transparent));
    color: var(--primary);
    font-size: 2.4rem;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35);
}
.auth-verify__hint {
    margin-top: 1rem;
    color: var(--ink-500);
    font-size: .82rem;
}

/* Account pane */
.auth-account__hello {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--primary-soft);
    color: var(--primary);
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .82rem;
    margin-bottom: .85rem;
}
.auth-account__hello .dot {
    width: 8px; height: 8px;
    background: var(--success, #10b981);
    border-radius: 50%;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--success, #10b981) 20%, transparent);
}
.auth-account__actions {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    align-items: stretch;
}
.auth-account__actions .auth-link { text-align: center; padding: .5rem 0; }


/* --- Responsive: mobile becomes fullscreen sheet --- */
@media (max-width: 767.98px) {
    .auth-drawer__panel {
        grid-template-columns: 1fr;
        width: 100%;
        border-radius: 0;
    }
    .auth-drawer__trust { display: none; }
    .auth-drawer__head {
        padding: 1rem 1rem .65rem;
        position: sticky;
        top: 0;
        background: var(--surface);
        z-index: 2;
        flex-shrink: 0;
    }
    .auth-pending-banner {
        flex-shrink: 0;
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .auth-drawer__scroll {
        padding: 1.25rem 1rem;
        padding-bottom: max(5rem, calc(1.25rem + env(safe-area-inset-bottom, 0px)));
    }
    .auth-grid-2 { grid-template-columns: 1fr; gap: .25rem; }
    .auth-cta { padding: 1.05rem 1.2rem; font-size: 1rem; }
    .auth-input input { padding: 1rem .85rem; font-size: 1rem; }
}

@media (max-width: 575.98px) {
    .auth-drawer__head .auth-tabs { flex: 1; }
    .auth-tab { flex: 1; text-align: center; padding: .55rem .65rem; font-size: .85rem; }
}


/* ============================================================
 * 25b GLOBAL MICRO-INTERACTIONS
 * ============================================================ */
.hover-lift   { transition: transform var(--t-med), box-shadow var(--t-med); }
.hover-lift:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.glass-card {
    background: rgba(255, 255, 255, .55);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.shimmer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ink-100), transparent);
    margin: var(--space-5) 0;
}

/* Ripple hint on .btn-cta */
.btn-cta { position: relative; overflow: hidden; }
.btn-cta::after {
    content: '';
    position: absolute; top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255, 255, 255, .35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .55s ease, height .55s ease;
    pointer-events: none;
}
.btn-cta:active::after { width: 220px; height: 220px; transition: 0s; }


/* ============================================================
 * 26 RESPONSIVE
 * ============================================================ */
@media (max-width: 991.98px) {
    .hero-section { text-align: center; }
    .hero-section .lead { margin-left: auto; margin-right: auto; }
    .hero-section .d-flex { justify-content: center; }
    .hero-eyebrow,
    .hero-live-strip { margin-left: auto; margin-right: auto; }
    .hero-preview { transform: none; margin-top: 2rem; }

    .stepper-shell { grid-template-columns: 1fr; }
    .stepper-shell .stepper-aside { border-left: 0; border-top: 1px solid var(--ink-100); }
}

@media (max-width: 767.98px) {
    .section { padding: 3rem 0; }
    .section-head { margin-bottom: var(--space-5); }
    h1 { font-size: 2rem; }

    .trust-strip { margin-top: -32px; }
    .trust-card  { padding: 1rem; }

    .service-grid  { grid-template-columns: 1fr; }
    .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
    .package-card.featured { transform: none; }
    .package-card.featured:hover { transform: translateY(-6px); }

    .floating-wa  { bottom: 84px; right: 16px; width: 54px; height: 54px; font-size: 1.55rem; }
    .mobile-cta-bar { display: block; }
    body { padding-bottom: 76px; }
}

@media (max-width: 575.98px) {
    .stepper-progress .step { font-size: 0; gap: 0; }
    .stepper-progress .step .step-num { width: 28px; height: 28px; font-size: .8rem; }
}
