/* ==========================================================
   BRAND NEW DESIGN — Clean Light Theme with Brand Palette
   Palette: #A00D4B (Primary Deep Magenta) · #ff4d91 (Pink Accent)
   Font: Playfair Display (Headings) + Inter (Body)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,600;1,700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
    --clr-primary: #6A1B9A;
    --clr-primary-rgb: 106, 27, 154;
    --clr-primary-dark: #4a126d;
    --clr-accent: #AB47BC;
    --clr-accent-rgb: 171, 71, 188;

    --bg-body: #ffffff;
    --bg-surface: #f7f0fa;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --bg-dark-footer: #110a14;

    --text-heading: #1a1a1a;
    --text-body: #444444;
    --text-muted: #777777;

    --border-light: #f0e4f5;
    --border-accent: rgba(106, 27, 154, 0.2);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(106, 27, 154, 0.08);
    --shadow-lg: 0 16px 40px rgba(106, 27, 154, 0.15);

    --ease: cubic-bezier(.4, 0, .2, 1);
    --container: 1200px;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: all .3s var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ════════════════════════════════════════════
   18+ AGE GATE POPUP
   ════════════════════════════════════════════ */
.age-popup-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    display: flex; justify-content: center; align-items: center;
    z-index: 99999;
    animation: fadeIn .4s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.age-popup {
    background: #ffffff;
    border-top: 5px solid var(--clr-primary);
    border-radius: 20px;
    padding: 45px 36px;
    text-align: center;
    max-width: 460px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.age-popup .h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.age-popup p {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}
.age-buttons {
    display: flex; gap: 14px; justify-content: center;
}
.btn-primary {
    background: var(--clr-primary);
    color: #ffffff;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 4px 15px rgba(160, 13, 75, 0.3);
    transition: all .3s var(--ease);
}
.btn-primary:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(160, 13, 75, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    transition: all .3s var(--ease);
}
.btn-outline:hover {
    background: var(--clr-primary);
    color: #ffffff;
}

/* ════════════════════════════════════════════
   HEADER & NAVBAR (White Clean Header)
   ════════════════════════════════════════════ */
.navbar {
    position: sticky;
    top: 0; left: 0; right: 0;
    z-index: 5000;
    padding: 16px 0;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-light);
    transition: all .3s var(--ease);
}
.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.nav-content {
    display: flex; 
    justify-content: center;
    align-items: center;
    text-align: center;
}
.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-primary);
    text-align: center;
    /* margin: 0 auto; */
}

/* ════════════════════════════════════════════
   HERO BANNER SECTION
   ════════════════════════════════════════════ */
.hero-banner-section {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}
.hero-banner-card {
    position: relative;
    width: 100%;
    min-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(160, 13, 75, 0.15);
    display: flex;
    align-items: center;
    background: #111;
}
.hero-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.75);
}
.hero-banner-overlay {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    max-width: 750px;
    color: #ffffff;
}
.hero-banner-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-banner-overlay h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-banner-overlay p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    line-height: 1.6;
}
.hero-actions {
    display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all .3s var(--ease);
}
.hero-btn-primary {
    background: var(--clr-primary);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(160, 13, 75, 0.4);
}
.hero-btn-primary:hover {
    background: var(--clr-primary-dark);
    transform: translateY(-2px);
}
.hero-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.hero-btn-whatsapp:hover {
    background: #1eb857;
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   SEARCH BAR
   ════════════════════════════════════════════ */
.search-section {
    padding: 10px 0 40px;
}
.search-bar-container {
    max-width: 650px;
    margin: 0 auto;
}
.search-select {
    width: 100%;
    padding: 16px 50px 16px 24px;
    border-radius: 50px;
    border: 2px solid var(--clr-primary);
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23A00D4B' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 22px center;
    color: var(--text-heading);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    appearance: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(160, 13, 75, 0.08);
}
.search-select:focus {
    box-shadow: 0 0 0 4px rgba(160, 13, 75, 0.15);
}

/* ════════════════════════════════════════════
   INTRO SECTION
   ════════════════════════════════════════════ */
.intro-section {
    padding: 30px 0 50px;
    text-align: center;
}
.intro-section h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 20px;
}
.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.intro-text p {
    margin-bottom: 16px;
    color: var(--text-body);
    font-size: 1rem;
}

/* ════════════════════════════════════════════
   PROFILE CARDS GRID — 4 CARDS PER ROW
   ════════════════════════════════════════════ */
.profiles-section {
    padding: 40px 0 70px;
}
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header .eyebrow {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-primary);
    margin-bottom: 8px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-heading);
}

/* 4 Cards Grid Layout */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Profile Card Component */
.profile-card {
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    border: 4px double var(--clr-primary);
    box-shadow: 0 0 15px rgba(106, 27, 154, 0.2), 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all .35s var(--ease);
    display: flex;
    flex-direction: column;
}
.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(106, 27, 154, 0.45), 0 0 35px rgba(171, 71, 188, 0.35), 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--clr-accent);
}

/* Card Image Container */
.pc-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #f4f4f4;
}
.pc-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s var(--ease);
}
.profile-card:hover .pc-image img {
    transform: scale(1.06);
}
.pc-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    pointer-events: none;
}

/* Tag */
.pc-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--clr-primary);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(160, 13, 75, 0.3);
}

/* Card Title on Image */
.pc-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0 16px 14px;
    z-index: 3;
    color: #ffffff;
}
.pc-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}
.pc-name a { color: #ffffff; }
.pc-name a:hover { color: var(--clr-accent); }
.pc-subtitle {
    font-size: .75rem;
    color: rgba(255,255,255,0.85);
}

/* Card Body */
.pc-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.pc-desc {
    font-size: .82rem;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}
.pc-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--clr-primary);
}
.pc-meta-item svg {
    width: 14px; height: 14px;
    color: var(--clr-primary);
    flex-shrink: 0;
}
.pc-actions {
    display: flex; gap: 8px;
}
.pc-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 4px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .25s var(--ease);
}
.pc-btn:hover {
    transform: translateY(-2px);
}
.pc-btn svg { width: 14px; height: 14px; }
.pc-btn-call {
    background: #e74c3c;
}
.pc-btn-call:hover { background: #c0392b; }
.pc-btn-wa {
    background: #25d366;
}
.pc-btn-wa:hover { background: #1eb857; }

/* ════════════════════════════════════════════
   SPLIT FEATURE SECTION (Full-Width Wave BG)
   ════════════════════════════════════════════ */
.split-feature {
    width: 100%;
    padding: 80px 0;
    background: var(--bg-surface);
    position: relative;
    margin: 70px 0;
}

.split-feature::before {
    content: '';
    position: absolute;
    top: -45px; left: 0; right: 0;
    height: 46px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f0fa' d='M0,32L48,42.7C96,53,192,75,288,80C384,85,480,75,576,64C672,53,768,43,864,48C960,53,1056,75,1152,80C1248,85,1344,75,1392,69.3L1440,64L1440,120L0,120Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}

.split-feature::after {
    content: '';
    position: absolute;
    bottom: -45px; left: 0; right: 0;
    height: 46px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f0fa' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}
.split-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.split-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 16px;
    line-height: 1.25;
}
.split-content p {
    color: var(--text-body);
    margin-bottom: 14px;
    font-size: .95rem;
    line-height: 1.7;
}

/* Spread Cards Container */
.split-image-container {
    position: relative;
    width: 100%;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}
.spread-cards-wrap {
    position: relative;
    width: 270px;
    height: 370px;
}
.spread-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 4px double var(--clr-primary);
    box-shadow: 0 0 20px rgba(106, 27, 154, 0.25), 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #ffffff;
}
.spread-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.spread-card-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: rgba(106, 27, 154, 0.9);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Card 1 (Left Card) */
.spread-card.card-1 {
    transform: rotate(-6deg) translateX(-70px) translateY(5px);
    z-index: 1;
}

/* Card 2 (Right Card) */
.spread-card.card-2 {
    transform: rotate(6deg) translateX(70px) translateY(-5px);
    z-index: 2;
}

/* Hovering Card 1 -> Brings Card 1 to Top */
.spread-card.card-1:hover {
    z-index: 10;
    transform: rotate(-10deg) translateX(-85px) translateY(-10px) scale(1.06);
    box-shadow: 0 0 35px rgba(106, 27, 154, 0.55), 0 0 45px rgba(171, 71, 188, 0.4), 0 15px 35px rgba(0, 0, 0, 0.18);
    border-color: var(--clr-accent);
}

/* Hovering Card 2 -> Brings Card 2 to Top */
.spread-card.card-2:hover {
    z-index: 10;
    transform: rotate(10deg) translateX(85px) translateY(-10px) scale(1.06);
    box-shadow: 0 0 35px rgba(106, 27, 154, 0.55), 0 0 45px rgba(171, 71, 188, 0.4), 0 15px 35px rgba(0, 0, 0, 0.18);
    border-color: var(--clr-accent);
}

/* ════════════════════════════════════════════
   DATA TABLES SECTION
   ════════════════════════════════════════════ */
.tables-section {
    padding: 50px 0;
}
.tables-section h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 14px;
}
.tables-section .h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 12px;
    margin-top: 24px;
}
.tables-section p {
    color: var(--text-body);
    margin-bottom: 16px;
    font-size: .95rem;
    line-height: 1.7;
}
.tables-grid {
    margin: 24px 0;
}
.data-table-container {
    background: #ffffff;
    border-radius: 12px;
    overflow: auto;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th {
    background: var(--clr-primary);
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: 1px;
    padding: 14px 18px;
    text-align: left;
}
.data-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-light);
    font-size: .9rem;
    color: var(--text-body);
}
.data-table tr:nth-child(even) {
    background-color: #f7f0fa;
}
.data-table tbody tr:hover {
    background-color: #ede0f5;
}

/* ════════════════════════════════════════════
   CONTENT AREA
   ════════════════════════════════════════════ */
.content-area {
    padding: 20px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-light);
}
.content-wrap {
    max-width: 1100px;
    margin: 0 auto;
}
.content-area h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin: 32px 0 14px;
}
.content-area h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin: 24px 0 10px;
}
.content-area p {
    color: var(--text-body);
    margin-bottom: 16px;
    font-size: .95rem;
    line-height: 1.75;
}
.content-area ul {
    color: var(--text-body);
    margin: 0 0 20px 20px;
}
.content-area ul li {
    margin-bottom: 8px;
}

/* ════════════════════════════════════════════
   MINI GALLERY SECTION (Full-Width Wave BG)
   ════════════════════════════════════════════ */
.mini-gallery-section {
    width: 100%;
    padding: 80px 0;
    background: var(--bg-surface);
    position: relative;
    margin: 70px 0;
}
.mini-gallery-section::before {
    content: '';
    position: absolute;
    top: -45px; left: 0; right: 0;
    height: 46px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f0fa' d='M0,32L48,42.7C96,53,192,75,288,80C384,85,480,75,576,64C672,53,768,43,864,48C960,53,1056,75,1152,80C1248,85,1344,75,1392,69.3L1440,64L1440,120L0,120Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}
.mini-gallery-section::after {
    content: '';
    position: absolute;
    bottom: -45px; left: 0; right: 0;
    height: 46px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f7f0fa' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}
.mini-profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.premium-mini-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 4px double var(--clr-primary);
    box-shadow: 0 0 15px rgba(106, 27, 154, 0.2), 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all .35s var(--ease);
    background: #ffffff;
}
.premium-mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(106, 27, 154, 0.45), 0 0 35px rgba(171, 71, 188, 0.35), 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--clr-accent);
}
.card-img-wrapper {
    height: 270px;
    overflow: hidden;
    position: relative;
}
.card-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.premium-mini-card:hover .card-img-wrapper img {
    transform: scale(1.06);
}
.card-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 40px 14px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: #ffffff;
}
.card-tag {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-accent);
    font-weight: 700;
    margin-bottom: 2px;
}
.card-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}

/* ════════════════════════════════════════════
   FAQ & TAGS SECTION
   ════════════════════════════════════════════ */
.faq-tags-section {
    padding: 60px 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto 50px;
}
.faq-item {
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
.faq-question {
    padding: 16px 20px;
    font-weight: 700;
    color: var(--clr-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .95rem;
}
.faq-question span {
    font-size: 1.3rem;
    color: var(--clr-primary);
    font-weight: 600;
}
.faq-answer {
    padding: 0 20px 16px;
    color: var(--text-body);
    font-size: .9rem;
    line-height: 1.65;
}

/* Tags */
.tags-container { text-align: center; }
.tags-container h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 20px;
}
.tag-item {
    display: inline-block;
    margin: 6px 4px;
    padding: 8px 18px;
    background: linear-gradient(145deg, #ffffff 0%, #f7f0fa 100%);
    color: var(--clr-primary);
    font-size: .82rem;
    font-weight: 700;
    border-radius: 50px;
    border: 3px double var(--clr-primary);
    box-shadow: 0 4px 10px rgba(106, 27, 154, 0.1), inset 0 1px 0 #ffffff, inset 0 -2px 4px rgba(106, 27, 154, 0.06);
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    cursor: pointer;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.tag-item:hover {
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-accent) 100%);
    color: #ffffff;
    border-color: var(--clr-accent);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 25px rgba(106, 27, 154, 0.55), 0 0 35px rgba(171, 71, 188, 0.35), 0 8px 18px rgba(0, 0, 0, 0.12);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* ════════════════════════════════════════════
   FOOTER (2-Line Dark Velvet Footer with Wave Top)
   ════════════════════════════════════════════ */
footer {
    background: var(--bg-dark-footer);
    color: #ffffff;
    padding: 60px 0 28px;
    position: relative;
    margin-top: 60px;
}
footer::before {
    content: '';
    position: absolute;
    top: -50px; left: 0; right: 0;
    height: 52px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23110a14' d='M0,48L48,53.3C96,59,192,69,288,64C384,59,480,37,576,42.7C672,48,768,80,864,85.3C960,91,1056,69,1152,58.7C1248,48,1344,48,1392,48L1440,48L1440,120L0,120Z'%3E%3C/path%3E%3Cpath fill='none' stroke='%23AB47BC' stroke-width='4' d='M0,48L48,53.3C96,59,192,69,288,64C384,59,480,37,576,42.7C672,48,768,80,864,85.3C960,91,1056,69,1152,58.7C1248,48,1344,48,1392,48L1440,48'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Line 1: Logo & Nav Links */
.footer-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-nav a {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.25s var(--ease);
}
.footer-nav a:hover {
    color: var(--clr-accent);
}

/* Line 2: Copyright & Network */
.footer-row-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888888;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-network {
    font-weight: 600;
    color: var(--clr-accent);
    background: rgba(255,255,255,0.06);
    padding: 4px 16px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .footer-row-1 {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .footer-nav {
        justify-content: center;
        gap: 16px;
    }
    .footer-row-2 {
        flex-direction: column;
        text-align: center;
    }
}

/* ════════════════════════════════════════════
   FLOATING CTA BUTTONS
   ════════════════════════════════════════════ */
.floating-cta {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 8000;
    display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all .3s var(--ease);
}
.float-btn:hover {
    transform: scale(1.1);
}
.float-btn-wa { background: #25d366; }
.float-btn-call { background: var(--clr-primary); }
.float-btn svg { width: 24px; height: 24px; }

/* ════════════════════════════════════════════
   RESPONSIVE DESIGN
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .profiles-grid { grid-template-columns: repeat(3, 1fr); }
    .mini-profiles-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 850px) {
    .profiles-grid { grid-template-columns: repeat(2, 1fr); }
    .mini-profiles-grid { grid-template-columns: repeat(2, 1fr); }
    .split-container { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-banner-overlay { padding: 40px 24px; }
}

@media (max-width: 580px) {
    .profiles-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .mini-profiles-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .hero-banner-card { min-height: 320px; }
    .hero-banner-overlay h1 { font-size: 1.6rem; }
    .hero-banner-overlay p { font-size: .9rem; }
    .hero-actions { flex-direction: column; }
    .hero-btn { width: 100%; justify-content: center; }
    .split-image-container { height: 350px; }
    .spread-cards-wrap { width: 200px; height: 290px; }
    .spread-card.card-1 { transform: rotate(-5deg) translateX(-45px) translateY(5px); }
    .spread-card.card-2 { transform: rotate(5deg) translateX(45px) translateY(-5px); }
    .spread-card.card-1:hover { transform: rotate(-8deg) translateX(-55px) scale(1.04); }
    .spread-card.card-2:hover { transform: rotate(8deg) translateX(55px) scale(1.04); }
}