/* ============================================================
   NOIR DELHI — Full Reskin: Dark Luxury Gold Edition
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@400;500;600;700;800&display=swap');

/* ---- RESET ---- */
*, ::before, ::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- PALETTE ---- */
:root {
    --gold:       #c8a84b;
    --gold-lt:    #e8cc78;
    --gold-dk:    #8a6e28;
    --crimson:    #a01828;
    --crimson-lt: #c42030;
    --bg:         #07060b;
    --bg2:        #0b0a14;
    --bg3:        #100f1c;
    --card:       #0e0d18;
    --border:     #1c1b2c;
    --txt:        #c8c4dc;
    --muted:      #58556e;
    --white:      #f0edf8;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--txt);
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
}

img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--gold); transition: color .2s; }
a:hover { color: var(--white); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: .7rem;
    font-weight: 700;
}
h1 { font-size: 2.6rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.55rem; }
h4, h5, h6 { font-size: 1.18rem; }

p {
    margin-bottom: 1rem;
    color: #f1f1f1;
    text-align: justify !important;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.85;
}
strong { color: #c8c4dc; font-weight: 700; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li {
    margin-bottom: .35rem;
    color: #f1f1f1;
    font-size: 0.95rem;
    text-align: justify !important;
    line-height: 1.85;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.contentbox { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
main > section > .contentbox { padding-top: 15px; padding-bottom: 10px; }
@media (max-width:575px) { .contentbox { padding: 0 14px; } }

/* ============================================================
   HEADER
   ============================================================ */
header {
    position: relative;
    background: #050409;
    overflow: hidden;
}
header::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.2) 30%, var(--bg) 100%);
    pointer-events: none; z-index: 1;
}
/* gold bottom accent */
header::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-lt) 50%, var(--gold) 70%, transparent);
    z-index: 2;
}
header video { width: 100%; max-height: 620px; object-fit: cover; opacity: .99; display: block; }

/* ============================================================
   NAVBAR
   ============================================================ */
/* Mobile: navbar on top, video below (HTML order) */
/* Desktop: video on top, navbar below via order */
.page-top { display: flex; flex-direction: column; }
@media (min-width: 992px) {
    .page-top header { order: 1; }
    .page-top nav.navbar { order: 2; position: sticky; top: 0; }
}

nav.navbar {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(7,6,11,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200,168,75,.2);
    padding: .65rem 1.2rem;
    display: block;
}
nav.navbar > .contentbox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.site-logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; object-fit: contain; display: block; }
@media (max-width: 768px) { .logo-img { height: 38px; } }
.site-logo .logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 900; letter-spacing: 3px;
    color: var(--gold); -webkit-text-fill-color: var(--gold);
}
.site-logo .logo-sub {
    font-size: .6rem; letter-spacing: 5px; text-transform: uppercase;
    color: var(--muted); -webkit-text-fill-color: var(--muted);
}
.navbar-nav { display: flex; flex-wrap: wrap; list-style: none; gap: .15rem; padding: 0; margin: 0; }
.nav-link, .navbar-nav a {
    display: inline-block; padding: 5px 13px; color: #f1f1f1;
    font-size: .83rem; font-weight: 500; letter-spacing: .3px;
    border-bottom: 1px solid transparent;
    transition: all .2s;
}
.nav-link:hover, .navbar-nav a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
    background: transparent;
}
.navbar-toggler {
    background: transparent !important;
    border: 1px solid rgba(200,168,75,.5);
    border-radius: 4px;
    cursor: pointer;
    padding: 6px 10px;
    display: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    background: transparent !important;
    outline: none;
    box-shadow: none;
    border-color: var(--gold);
}
@media (max-width:991px) {
    .navbar-toggler { display: block; }
    .navbar-collapse { width: 100%; }
    .navbar-collapse.collapse { display: none; }
    .navbar-collapse.collapse.show { display: block; }
    .navbar-nav {
        flex-direction: column;
        padding: 8px 0 12px;
        gap: 0;
        background: rgba(7,6,11,.98);
        border-top: 1px solid rgba(200,168,75,.2);
        margin-top: 8px;
    }
    .nav-link, .navbar-nav a {
        padding: 10px 16px;
        border-bottom: 1px solid rgba(200,168,75,.08);
        font-size: .9rem;
        width: 100%;
        display: block;
    }
    .nav-link:last-child, .navbar-nav a:last-child { border-bottom: none; }
}

/* ============================================================
   ORNAMENTAL DIVIDER — used before headings
   ============================================================ */
.orn {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 6px;
}
.orn::before, .orn::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dk));
}
.orn::after { background: linear-gradient(90deg, var(--gold-dk), transparent); }
.orn span {
    font-size: .65rem; letter-spacing: 4px; text-transform: uppercase;
    color: var(--gold); font-family: 'Inter', sans-serif; font-weight: 600;
    white-space: nowrap;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section { width: 100%; position: relative; overflow: hidden; padding: 0; }
section > .contentbox { position: relative; z-index: 2; }

/* ============================================================
   1. HERO
   ============================================================ */
.sec-hero {
    background: var(--bg);
    padding: 30px 0 18px;
}
.sec-hero::before {
    content: 'DOLLY';
    position: absolute; bottom: -30px; right: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 22rem; font-weight: 900; line-height: 1;
    color: rgba(200,168,75,.03);
    pointer-events: none; user-select: none;
    letter-spacing: -10px;
}

/* ============================================================
   2. CATEGORIES
   ============================================================ */
.sec-tags {
    background: var(--bg2);
    padding: 16px 0;
    border-top: 1px solid rgba(200,168,75,.15);
    border-bottom: 1px solid rgba(200,168,75,.15);
}

/* ============================================================
   3. PROFILES
   ============================================================ */
.sec-profiles {
    background: var(--bg);
    padding: 12px 0 24px;
}

/* ============================================================
   4. GALLERY
   ============================================================ */
.sec-gallery {
    background: #040308;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ============================================================
   5. HOW IT WORKS
   ============================================================ */
.sec-steps {
    background: var(--bg3);
    padding: 24px 0;
    border-top: 1px solid rgba(200,168,75,.12);
    border-bottom: 1px solid rgba(200,168,75,.12);
}

/* ============================================================
   6. ABOUT
   ============================================================ */
.sec-about {
    background: var(--bg);
    padding: 24px 0;
}

/* ============================================================
   7. SERVICES — diagonal stripe pattern
   ============================================================ */
.sec-services {
    background-color: var(--bg2);
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 28px,
        rgba(200,168,75,.025) 28px,
        rgba(200,168,75,.025) 29px
    );
    padding: 22px 0;
}

/* ============================================================
   8. MORE COMPANIONS
   ============================================================ */
.sec-more {
    background: var(--bg);
    padding: 22px 0;
}

/* ============================================================
   CUSTOM MORE COMPANIONS SECTION
   ============================================================ */
.sec-more-custom {
    background: var(--bg2);
    padding: 24px 0;
    border-top: 1px solid rgba(200,168,75,.15);
    border-bottom: 1px solid rgba(200,168,75,.15);
}
.more-header {
    text-align: center;
    margin-bottom: 24px;
}
.more-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
}
.more-header p {
    color: #c8c4dc;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: justify;
}
.more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.more-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease;
}
.more-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,.4);
}
.more-card img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.more-info {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.more-info span {
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
}
.more-info a {
    color: var(--gold);
    font-size: .85rem;
    font-weight: 600;
    transition: color .2s;
}
.more-info a:hover {
    color: var(--gold-lt);
}
@media (max-width:1024px) {
    .more-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width:768px) {
    .more-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:480px) {
    .more-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CUSTOM ABOUT SECTION
   ============================================================ */
.sec-about-custom {
    background: var(--bg);
    padding: 24px 0;
}
.about-split {
    display: flex;
    gap: 0;
    align-items: stretch;
    border: 2px solid var(--gold);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--card), #0a0912);
}
.about-img-side {
    flex: 0 0 300px;
}
.about-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-text-side {
    flex: 1;
    padding: 40px;
}
.about-text-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}
.about-text-side p {
    color: #c8c4dc;
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 0.95rem;
    font-weight: 400;
    text-align: justify;
}
@media (max-width:900px) {
    .about-split {
        flex-direction: column;
    }
    .about-img-side {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }
    .about-text-side {
        padding: 30px;
    }
}

/* ============================================================
   9. SAFETY
   ============================================================ */
.sec-safety {
    background: var(--bg2);
    padding: 22px 0;
}
.safety-full-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

/* ============================================================
   10 & 12. COL-A
   ============================================================ */
.sec-col-a {
    background: var(--bg);
    padding: 24px 0;
}

/* ============================================================
   11. COL-B
   ============================================================ */
.sec-col-b {
    background: var(--bg2);
    padding: 24px 0;
}

/* ============================================================
   CUSTOM FEATURES SECTION
   ============================================================ */
.sec-features {
    background: var(--bg);
    padding: 24px 0;
}
.feature-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}
.feature-card:last-child {
    margin-bottom: 0;
}
.feature-card.reverse {
    flex-direction: row-reverse;
}
.feature-image {
    flex: 0 0 400px;
}
.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    border: 2px solid rgba(200,168,75,.2);
}
.feature-content {
    flex: 1;
}
.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--gold);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}
.feature-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}
.feature-content p {
    color: #c8c4dc;
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 0.95rem;
    text-align: justify;
}
@media (max-width:900px) {
    .feature-card,
    .feature-card.reverse {
        flex-direction: column;
    }
    .feature-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
    }
    .feature-content {
        text-align: center;
    }
    .feature-content h3 {
        border-bottom: none;
    }
}

/* ============================================================
   13. FAQ
   ============================================================ */
.sec-faq {
    background: #060510;
    padding: 24px 0;
    border-top: 1px solid rgba(200,168,75,.15);
}

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.sec-testimonials {
    background: var(--bg);
    padding: 24px 0;
}

/* ============================================================
   15. AREAS
   ============================================================ */
.sec-areas {
    background: var(--bg2);
    padding: 35px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ============================================================
   16. WHY CHOOSE
   ============================================================ */
.sec-why {
    background: var(--bg3);
    padding: 24px 0;
    border-top: 1px solid rgba(200,168,75,.2);
    border-bottom: 1px solid rgba(200,168,75,.2);
}

/* ============================================================
   17. CONTACT
   ============================================================ */
.sec-contact {
    background: #060510;
    padding: 28px 0 36px;
}

/* ============================================================
   SECTION HEADING BOX (.shadow)
   ============================================================ */
.shadow {
    position: relative;
    padding: 0 0 20px 0;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(200,168,75,.2);
}
.shadow::before {
    content: '';
    position: absolute; bottom: -1px; left: 0;
    width: 80px; height: 2px;
    background: var(--gold);
}
.shadow h1, .shadow h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.70rem; color: var(--white); margin: 0;
    font-weight: 700; line-height: 1.25;
    -webkit-text-fill-color: var(--white);
}

/* ============================================================
   CTA BUTTON
   ============================================================ */
.pop-button {
    display: block; width: 100%;
    background: transparent;
    color: var(--gold); border: 1px solid var(--gold);
    padding: 15px 30px; border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: .95rem; font-weight: 700; cursor: pointer;
    margin-top: 20px; letter-spacing: 1.5px; text-transform: uppercase;
    transition: background .25s, color .25s;
    user-select: none;
}
.pop-button:hover {
    background: var(--gold);
    color: var(--bg);
}

/* ============================================================
   BENEFIT CARDS
   ============================================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px; margin-top: 36px;
}
.benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    padding: 32px 24px;
    text-align: left;
    transition: transform .25s, box-shadow .25s;
    position: relative;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.5);
    border-top-color: var(--gold-lt);
}
.benefit-card .icon {
    font-size: 1.6rem; margin-bottom: 16px; display: block;
    color: var(--gold);
}
.benefit-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white); font-size: 1.05rem; margin-bottom: 10px;
}
.benefit-card p { color: #c8c4dc; font-size: 0.95rem; margin: 0; text-align: justify; line-height: 1.85; }

/* ============================================================
   HOW IT WORKS — roman numeral style
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1px; margin-top: 36px;
    background: var(--border);
    border: 1px solid var(--border);
}
.step {
    background: var(--card);
    padding: 40px 30px 36px;
    text-align: left; position: relative;
    transition: background .25s;
}
.step:hover { background: var(--bg3); }
.step .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 900; line-height: 1;
    color: var(--gold); opacity: .35;
    margin-bottom: 14px; display: block;
}
.step h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white); margin-bottom: 10px; font-size: 1.08rem;
}
.step p { color: #c8c4dc; font-size: 0.95rem; margin: 0; text-align: justify; line-height: 1.85; }

/* ============================================================
   PROFILE LISTING CARDS (REDESIGNED & ALTERNATING)
   ============================================================ */
.item {
    display: flex; 
    border: none;
    border-radius: 16px;
    margin-bottom: 24px; 
    overflow: hidden; 
    background: var(--bg2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: transform .3s ease, box-shadow .3s ease;
}
.item:hover { 
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5); 
}
.itemLink { 
    display: flex; 
    width: 100%; 
    align-items: center;
    padding: 20px;
    gap: 32px;
}

/* Alternating rows logic */
.item:nth-child(even) .itemLink {
    flex-direction: row-reverse;
    text-align: right;
}
.item:nth-child(even) .itemFlagge {
    justify-content: flex-end;
}
.item:nth-child(even) .fli-text p {
    text-align: right;
}

/* Image styling */
.itemLink > a {
    flex-shrink: 0;
}
.itemLink > a img { 
    width: 200px; 
    height: 230px; 
    object-fit: cover; 
    border-radius: 16px;
    border: 3px solid var(--gold-dk);
    padding: 6px;
    background: var(--bg);
    transition: all .4s ease;
}
.item:hover .itemLink > a img {
    border-color: var(--gold);
    transform: scale(1.05) rotate(3deg);
}

.itemInfoRight { 
    padding: 0; 
    flex: 1; 
}
.itemInfoRight > span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--gold);
    display: block;
    margin-bottom: 4px;
}
.itemFlagge { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.premiumBox {
    background: var(--crimson); color: #fff;
    font-size: .75rem; padding: 4px 12px;
    border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
}
.itemPhone {
    background: transparent; color: var(--gold);
    border: 1px solid rgba(200,168,75,.35);
    font-size: .75rem; padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600; text-transform: uppercase; letter-spacing: .4px;
}
.fli-text p { font-size: 0.95rem; color: #c8c4dc; margin-bottom: .4rem; text-align: justify; }

@media (max-width:768px) {
    .item:nth-child(odd) .itemLink, 
    .item:nth-child(even) .itemLink { 
        flex-direction: column; 
        text-align: center;
        padding: 24px;
        gap: 16px;
    }
    .item:nth-child(odd) .itemFlagge, 
    .item:nth-child(even) .itemFlagge {
        justify-content: center;
    }
    .item:nth-child(odd) .fli-text p, 
    .item:nth-child(even) .fli-text p {
        text-align: center;
    }
    .itemLink > a img { 
        width: 100%; 
        height: 400px; 
    }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 8px; padding: 16px 0;
}
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: 0;
    aspect-ratio: 3/4; cursor: pointer;
    background: var(--card);
    border: 1px solid var(--border);
    transition: border-color .3s;
}
.gallery-item:hover { border-color: rgba(200,168,75,.4); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4,3,8,.95) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; padding: 14px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: .84rem; font-weight: 600; line-height: 1.35; }
@media (max-width:480px) { .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 6px; } }

/* ============================================================
   NEW GALLERY DESIGN — 4 cards in a row
   ============================================================ */
.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px 0;
}
.gallery-card-new {
    background: linear-gradient(145deg, var(--card), #0a0912);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all .35s ease;
    position: relative;
}
.gallery-card-new:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(200,168,75,.15);
}
.gallery-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-card-new:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}
.gallery-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dk));
    color: var(--bg);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.gallery-info {
    padding: 20px;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(200,168,75,.05));
}
.gallery-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 700;
}
.gallery-info .location {
    color: var(--gold);
    font-size: .85rem;
    margin-bottom: 14px;
    font-weight: 500;
    letter-spacing: .5px;
}
.gallery-btn {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .3s ease;
}
.gallery-btn:hover {
    background: var(--gold);
    color: var(--bg);
    box-shadow: 0 6px 20px rgba(200,168,75,.3);
}
@media (max-width:1024px) {
    .gallery-grid-new { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width:600px) {
    .gallery-grid-new { grid-template-columns: 1fr; gap: 16px; }
    .gallery-info { padding: 16px; }
    .gallery-info h3 { font-size: 1rem; }
}

/* ============================================================
   PROFILE GRID (small)
   ============================================================ */
.profile-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(145px,1fr));
    gap: 10px; padding: 16px 0;
}
.profile {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 0; padding: 7px; text-align: center;
    transition: border-color .25s, box-shadow .25s; overflow: hidden; cursor: pointer;
}
.profile:hover { border-color: rgba(200,168,75,.4); box-shadow: 0 6px 18px rgba(0,0,0,.4); }
.profile img { width: 100%; margin-bottom: 6px; aspect-ratio: 4/5; object-fit: cover; }
.profile p { font-size: .84rem; color: var(--gold); margin: 0; font-weight: 600; letter-spacing: .3px; }

/* ============================================================
   TAG LISTS
   ============================================================ */
.list { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 0; }
.listbutton {
    background: transparent; border: 1px solid var(--border);
    border-radius: 0; padding: 4px 14px;
    font-size: .8rem; font-weight: 500; letter-spacing: .3px;
    transition: all .2s; cursor: pointer; color: #888;
}
.listbutton:hover { color: var(--gold); border-color: rgba(200,168,75,.45); background: rgba(200,168,75,.07); }
.listbutton a { color: inherit; display: block; }

/* ============================================================
   CONTENT ROW (col sections)
   ============================================================ */
.row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 54px; align-items: stretch; padding-bottom: 20px;
}
.content-left, .content-right {
    flex: 1 1 320px;
    padding: 8px 0;
}
.content-left h5, .content-right h5,
.content-left h2, .content-right h2 {
    font-family: 'Playfair Display', serif;
    color: var(--white); margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(200,168,75,.2);
    position: relative;
}
.content-left h5::after, .content-right h5::after,
.content-left h2::after, .content-right h2::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 50px; height: 2px; background: var(--gold);
}

/* ---- Photo frame: classic picture-frame style ---- */
.img-left, .img-right {
    width: 300px; flex-shrink: 0;
    position: relative;
}
/* outer gold frame */
.img-left::before, .img-right::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(200,168,75,.35);
    pointer-events: none;
    z-index: 2;
}
/* inner offset block */
.img-left::after {
    content: '';
    position: absolute;
    top: 10px; left: -14px;
    bottom: -14px; right: 10px;
    background: var(--gold-dk);
    opacity: .18;
    z-index: 0;
}
.img-right::after {
    content: '';
    position: absolute;
    top: 10px; right: -14px;
    bottom: -14px; left: 10px;
    background: var(--gold-dk);
    opacity: .18;
    z-index: 0;
}
.img-left img, .img-right img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; position: relative; z-index: 1;
    border-radius: 0;
    box-shadow: 0 16px 48px rgba(0,0,0,.6);
}

.row { padding-bottom: 20px; }

@media (max-width:768px) {
    .img-left, .img-right { width: 100%; margin-bottom: 30px; }
    .img-left::after, .img-right::after { display: none; }
    .content-left, .content-right { padding: 0; }
}

/* ============================================================
   TABLE
   ============================================================ */
table { width: 100%; border-collapse: collapse; margin-bottom: 1.2rem; }
th { background: var(--crimson); color: #fff; padding: 12px 14px; text-align: center; font-size: .88rem; letter-spacing: .5px; }
td { padding: 11px 14px; text-align: center; border: 1px solid var(--border); color: #c8c4dc; background: var(--card); }
td a { color: var(--gold); }
button {
    background: transparent; color: var(--gold); border: 1px solid var(--gold-dk);
    padding: 7px 18px; border-radius: 0; cursor: pointer; font-size: .86rem;
    letter-spacing: .5px; transition: all .2s;
}
button:hover { background: var(--gold); color: var(--bg); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section h2 { margin-bottom: 32px; }
.accordion {
    cursor: pointer; width: 100%;
    padding: 16px 52px 16px 20px; margin-bottom: 6px;
    border: none; border-bottom: 1px solid var(--border);
    background: transparent; color: #c8c4dc;
    font-family: 'Playfair Display', serif;
    font-size: .95rem; font-weight: 700; text-align: left;
    outline: none; transition: color .2s; position: relative;
}
.accordion::after {
    content: '+'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem; color: var(--gold-dk); line-height: 1; font-weight: 300;
    transition: transform .25s, color .2s;
}
.accordion.active { color: var(--gold); border-bottom-color: var(--gold); }
.accordion.active::after { content: '−'; color: var(--gold); }
.accordion:hover { color: var(--white); }
.panel {
    max-height: 0; overflow: hidden; transition: max-height .35s ease-out;
    background: transparent; margin-bottom: 4px;
    border-left: 2px solid rgba(200,168,75,.3);
    margin-left: 2px;
}
.panel p { padding: 14px 20px; color: #c8c4dc; text-align: justify; font-size: 0.95rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 30px 24px 24px;
    flex: 1 1 260px; max-width: 340px;
    text-align: left; transition: border-color .25s;
    position: relative;
}
/* large decorative quote */
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: 10px; left: 18px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem; line-height: 1; color: rgba(200,168,75,.12);
    pointer-events: none;
}
.testimonial-card::after {
    content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 2px;
    background: var(--gold);
}
.testimonial-card:hover { border-color: rgba(200,168,75,.3); }
.testimonial-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.profile-pic { width: 58px; height: 58px; border-radius: 50%; border: 2px solid #d63384; object-fit: cover; flex-shrink: 0; }
.testimonial-author-block { display: flex; flex-direction: column; }
.author-name { font-weight: 700; color: #f1f1f1; display: block; font-size: .95rem; }
.author-title { font-size: .80rem; color: var(--gold); }
.testimonial-stars { color: #f5c518; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-text { font-style: italic; color: #c8c4dc; font-size: 0.95rem; line-height: 1.85; font-weight: 400; text-align: justify; }
.author-info { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #040308; margin-top: 0; position: relative; }
footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-lt) 50%, var(--gold) 70%, transparent);
}
.footer { display: flex; flex-wrap: wrap; justify-content: space-evenly; gap: 28px; padding: 48px 20px 28px; }
.footer-box { min-width: 200px; flex: 1 1 200px; max-width: 300px; }
.footer-box h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; color: var(--gold); -webkit-text-fill-color: var(--gold);
    border-bottom: 1px solid rgba(200,168,75,.2);
    padding-bottom: 10px; margin-bottom: 16px;
}
.footer-box ul { list-style: none; padding: 0; }
.footer-box ul li { margin-bottom: 9px; padding-left: 14px; position: relative; }
.footer-box ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold-dk); font-size: .7rem; top: 4px; }
.footer-box ul li a { color: #f1f1f1; font-size: .86rem; transition: color .2s; }
.footer-box ul li a:hover { color: var(--gold); }
.footer-box p { color: #f1f1f1; font-size: 0.95rem; text-align: justify; line-height: 1.85; }
.footer-bar { border-top: 1px solid var(--border); text-align: center; padding: 14px 20px; font-size: .8rem; color: #444; }
.footer-bar a { color: var(--gold); }

/* ============================================================
   FLOATING PILL BUTTONS
   ============================================================ */
.nowcalling { position: fixed; bottom: 26px; right: 18px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; }
.nowcalling .pill {
    display: flex; align-items: center; gap: 10px; padding: 13px 22px;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: .88rem; color: #fff; text-decoration: none;
    box-shadow: 0 6px 22px rgba(0,0,0,.5);
    transition: transform .2s, box-shadow .2s;
    white-space: nowrap; min-width: 152px; justify-content: center;
    user-select: none; -webkit-user-select: none;
    letter-spacing: .5px; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.1);
}
.nowcalling .pill:hover { transform: translateX(-6px) scale(1.04); box-shadow: 0 10px 28px rgba(0,0,0,.6); }
.nowcalling .pill-call { background: var(--crimson); border-color: rgba(160,24,40,.8); }
.nowcalling .pill-wa   { background: #20c160; border-color: #20c160; }
.nowcalling .pill svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width:600px) {
    .nowcalling { bottom: 12px; right: 8px; }
    .nowcalling .pill { padding: 10px 14px; font-size: .8rem; min-width: 136px; }
}

/* ============================================================
   ABOUT SECTION — premium magazine two-column layout
   ============================================================ */
.sec-about {
    background: var(--bg);
    padding: 0;
}
.sec-about > .contentbox {
    padding: 0;
    max-width: 1140px;
}
/* full-bleed two-col grid inside contentbox */
.sec-about .row {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 0;
    align-items: stretch;
    min-height: 520px;
}
/* text panel — dark card with top gold bar */
.sec-about .content-left {
    flex: unset;
    padding: 52px 56px 52px 24px;
    background: #0b0a14;
    border-top: 3px solid var(--gold);
    border-right: 1px solid rgba(200,168,75,.15);
    position: relative;
    overflow: hidden;
}
/* large watermark "01" */
.sec-about .content-left::before {
    content: '01';
    position: absolute; bottom: -20px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 11rem; font-weight: 900; line-height: 1;
    color: rgba(200,168,75,.05);
    pointer-events: none;
}
/* section label above heading - removed */
.sec-about .content-left h2 {
    font-size: 2.3rem;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: none;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(200,168,75,.2);
}
.sec-about .content-left p {
    font-size: 1rem;
    font-weight: 700;
    color: #b8b4cc;
    margin-bottom: 16px;
}
/* first para bolder + white */
.sec-about .content-left p:first-of-type {
    color: var(--white);
    font-size: 1.05rem;
}
/* photo panel — full height flush */
.sec-about .img-right {
    width: auto;
    flex: unset;
    position: relative;
}
.sec-about .img-right::before,
.sec-about .img-right::after { display: none; }
.sec-about .img-right img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 0; padding: 0;
    box-shadow: none;
    display: block;
}
/* gold overlay strip on photo right edge */
.sec-about .img-right::before {
    display: block !important;
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; width: 4px;
    background: linear-gradient(180deg, var(--gold), var(--crimson));
    z-index: 2;
}
@media (max-width:900px) {
    .sec-about .row { grid-template-columns: 1fr; }
    .sec-about > .contentbox { padding: 0 24px; }
    .sec-about .content-left { padding: 40px 24px; border-right: none; border-bottom: 1px solid rgba(200,168,75,.2); }
    .sec-about .img-right { min-height: 280px; }
}

/* ============================================================
   WHY INDEPENDENT (sec-col-a)
   Dark panel on text side, gold corner accents on photo
   ============================================================ */
.sec-col-a .row { gap: 0; align-items: stretch; }
.sec-col-a .content-right,
.sec-col-a .content-left {
    flex: 1 1 auto;
    padding: 48px 40px;
    background: #0b0a14;
    border-top: 3px solid var(--crimson);
    border-left: 1px solid rgba(200,168,75,.12);
    position: relative;
    overflow: hidden;
}
/* watermark "02" */
.sec-col-a .content-right::before,
.sec-col-a .content-left::before {
    content: '02';
    position: absolute; bottom: -20px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 11rem; font-weight: 900; line-height: 1;
    color: rgba(160,24,40,.07); pointer-events: none;
}
.sec-col-a .content-right::after,
.sec-col-a .content-left::after { display: none; }
.sec-col-a .content-right h5,
.sec-col-a .content-left h5 {
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200,168,75,.15);
    position: relative;
}
.sec-col-a .content-right h5::after,
.sec-col-a .content-left h5::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 48px; height: 2px; background: var(--crimson);
}
/* drop cap */
.sec-col-a .content-right p:first-of-type::first-letter,
.sec-col-a .content-left p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem; font-weight: 900;
    float: left; line-height: .8;
    margin: 4px 12px 0 0;
    color: var(--crimson);
}
/* photo: gold corner brackets instead of frame */
.sec-col-a .img-left,
.sec-col-a .img-right {
    width: 320px; flex-shrink: 0; position: relative; overflow: visible;
}
.sec-col-a .img-left::before,
.sec-col-a .img-right::before { display: none; }
.sec-col-a .img-left::after,
.sec-col-a .img-right::after { display: none; }
/* four corner brackets via box-shadow */
.sec-col-a .img-left img,
.sec-col-a .img-right img {
    padding: 0; border-radius: 0;
    outline: 1px solid rgba(200,168,75,.2);
    outline-offset: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,.6);
}
@media (max-width:768px) {
    .sec-col-a .content-right, .sec-col-a .content-left { padding: 32px 20px; border-left: none; }
    .sec-col-a .img-left, .sec-col-a .img-right { width: 100%; }
}

/* ============================================================
   BOOKING (sec-col-b) — guide steps with numbered paragraphs
   ============================================================ */
.sec-col-b .row { gap: 0; align-items: stretch; }
.sec-col-b .content-left {
    flex: 1 1 auto;
    padding: 48px 40px;
    background: #0d0b18;
    border-top: 3px solid var(--gold);
    border-right: 1px solid rgba(200,168,75,.12);
    position: relative; overflow: hidden;
    counter-reset: step-para;
}
.sec-col-b .content-left::before {
    content: '03';
    position: absolute; bottom: -20px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 11rem; font-weight: 900; line-height: 1;
    color: rgba(200,168,75,.05); pointer-events: none;
}
.sec-col-b .content-left::after { display: none; }
.sec-col-b .content-left h5 {
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200,168,75,.15);
    position: relative;
}
.sec-col-b .content-left h5::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 48px; height: 2px; background: var(--gold);
}
/* numbered paragraphs */
.sec-col-b .content-left p {
    counter-increment: step-para;
    padding-left: 50px;
    position: relative;
    margin-bottom: 22px;
}
.sec-col-b .content-left p::before {
    content: counter(step-para, decimal-leading-zero);
    position: absolute; left: 0; top: 0;
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900; line-height: 1.1;
    color: rgba(200,168,75,.28);
}
/* photo */
.sec-col-b .img-right {
    width: 320px; flex-shrink: 0; position: relative; overflow: visible;
}
.sec-col-b .img-right::before { display: none; }
.sec-col-b .img-right::after { display: none; }
.sec-col-b .img-right img {
    padding: 0; border-radius: 0;
    outline: 1px solid rgba(200,168,75,.2);
    outline-offset: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,.6);
    height: 100%; object-fit: cover;
}
@media (max-width:768px) {
    .sec-col-b .content-left { padding: 32px 20px; border-right: none; }
    .sec-col-b .img-right { width: 100%; }
    .sec-col-b .img-right img { height: 280px; }
}

/* ============================================================
   MASSAGE (sec-col-c) — highlight callout style
   ============================================================ */
.sec-col-c .row { gap: 0; align-items: stretch; }
.sec-col-c .content-right {
    flex: 1 1 auto;
    padding: 48px 40px;
    background: #0b0a14;
    border-top: 3px solid var(--gold-lt);
    border-left: 1px solid rgba(200,168,75,.12);
    position: relative; overflow: hidden;
}
.sec-col-c .content-right::before {
    content: '04';
    position: absolute; bottom: -20px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 11rem; font-weight: 900; line-height: 1;
    color: rgba(200,168,75,.05); pointer-events: none;
}
.sec-col-c .content-right::after { display: none; }
.sec-col-c .content-right h5 {
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200,168,75,.15);
    position: relative;
}
.sec-col-c .content-right h5::after {
    content: ''; position: absolute; bottom: -1px; left: 0;
    width: 48px; height: 2px; background: var(--gold-lt);
}
/* last para — gold callout box */
.sec-col-c .content-right p:last-of-type {
    background: rgba(200,168,75,.07);
    border: 1px solid rgba(200,168,75,.22);
    border-left: 4px solid var(--gold);
    padding: 18px 20px;
    color: #c8c4dc;
    font-style: italic;
    margin-top: 8px;
}
/* photo */
.sec-col-c .img-left {
    width: 320px; flex-shrink: 0; position: relative; overflow: visible;
}
.sec-col-c .img-left::before { display: none; }
.sec-col-c .img-left::after { display: none; }
.sec-col-c .img-left img {
    padding: 0; border-radius: 0;
    outline: 1px solid rgba(200,168,75,.2);
    outline-offset: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,.6);
    height: 100%; object-fit: cover;
}
@media (max-width:768px) {
    .sec-col-c .content-right { padding: 32px 20px; border-left: none; }
    .sec-col-c .img-left { width: 100%; }
    .sec-col-c .img-left img { height: 280px; }
}

/* ============================================================
   FONT AWESOME
   ============================================================ */
@font-face { font-family:'FontAwesome'; font-display:swap; src:url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'); }
.fa { display:inline-block; font:normal normal normal 14px/1 FontAwesome; font-size:inherit; text-rendering:auto; -webkit-font-smoothing:antialiased; }
.fa-phone::before    { content:"\f095"; }
.fa-whatsapp::before { content:"\f232"; }
.fa-envelope::before { content:"\f0e0"; }
.fa-mobile::before   { content:"\f10b"; }

/* ============================================================
   UTILS
   ============================================================ */
.text-center { text-align: center; }
/* collapse handled by media query above */
.no-copy { user-select: none; -webkit-user-select: none; pointer-events: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:768px) {
    h1 { font-size: 1.55rem; } h2 { font-size: 1.3rem; }
    .img-left, .img-right { width: 100%; }
    table { font-size: .82rem; }
    .benefits-grid { grid-template-columns: repeat(2,1fr); }
    .steps-grid { grid-template-columns: 1fr; gap: 1px; }

    /* ---- kill section whitespace gaps on mobile ---- */
    .sec-hero    { padding: 40px 0 24px; }
    .sec-tags    { padding: 24px 0; }
    .sec-profiles { padding: 16px 0 40px; }
    .sec-gallery { padding: 36px 0; }
    .sec-steps   { padding: 36px 0; }
    .sec-about-custom { padding: 36px 0; }
    .sec-services { padding: 36px 0; }
    .sec-more-custom { padding: 36px 0; }
    .sec-safety  { padding: 36px 0; }
    .sec-features { padding: 36px 0; }
    .sec-faq     { padding: 36px 0; }
    .sec-testimonials { padding: 36px 0; }
    .sec-areas   { padding: 30px 0; }
    .sec-why     { padding: 36px 0; }
    .sec-contact { padding: 40px 0 50px; }
    .feature-card { margin-bottom: 30px; }
    main > section > .contentbox { padding-top: 0; padding-bottom: 0; }
}
@media (max-width:480px) {
    .profile-grid { grid-template-columns: repeat(auto-fill,minmax(128px,1fr)); }
    .testimonial-card { max-width: 100%; }
    .benefits-grid { grid-template-columns: 1fr; }

    .sec-hero    { padding: 28px 0 18px; }
    .sec-tags    { padding: 18px 0; }
    .sec-profiles { padding: 10px 0 28px; }
    .sec-gallery { padding: 24px 0; }
    .sec-steps   { padding: 24px 0; }
    .sec-about-custom { padding: 24px 0; }
    .sec-services { padding: 24px 0; }
    .sec-more-custom { padding: 24px 0; }
    .sec-safety  { padding: 24px 0; }
    .sec-features { padding: 24px 0; }
    .sec-faq     { padding: 24px 0; }
    .sec-testimonials { padding: 24px 0; }
    .sec-areas   { padding: 20px 0; }
    .sec-why     { padding: 24px 0; }
    .sec-contact { padding: 28px 0 36px; }
}

/* ============================================================
   NEW BROWSE CATEGORIES (sec-tags)
   ============================================================ */
.tag-layout-new {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 0 10px;
    justify-content: center;
}
.tag-item-new {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1.5px solid;
}
/* Rotating color variants */
.tag-item-new:nth-child(6n+1)  { background: rgba(100,210,210,0.10); border-color: #64d2d2; color: #a0f0f0; }
.tag-item-new:nth-child(6n+2)  { background: rgba(210,100,160,0.10); border-color: #d264a0; color: #f0a0d0; }
.tag-item-new:nth-child(6n+3)  { background: rgba(100,170,255,0.10); border-color: #64aaff; color: #a0ccff; }
.tag-item-new:nth-child(6n+4)  { background: rgba(255,170,80,0.10);  border-color: #ffaa50; color: #ffd0a0; }
.tag-item-new:nth-child(6n+5)  { background: rgba(140,200,100,0.10); border-color: #8cc864; color: #b8e890; }
.tag-item-new:nth-child(6n+6)  { background: rgba(200,168,75,0.10);  border-color: var(--gold); color: var(--gold-lt); }
.tag-item-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.4);
    filter: brightness(1.2);
}

/* ============================================================
   SERVICE TYPE CARDS (Adult Dating / Hooking Up / Hanging Out)
   ============================================================ */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 36px;
}
.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    border-radius: 12px;
    padding: 32px 28px;
    transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(200,168,75,.18);
}
.service-card .sc-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}
.service-card h3 {
    font-size: 1.35rem;
    color: var(--gold-lt);
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--txt);
    margin-bottom: 0;
    text-align: justify !important;
}
@media (max-width: 600px) {
    .service-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   EDITORIAL — NEWSPAPER COLUMNS
   ============================================================ */
.editorial-grid {
    column-count: 2;
    column-gap: 52px;
    column-rule: 1px solid var(--border);
    margin-top: 32px;
}
.editorial-item {
    break-inside: avoid;
    margin-bottom: 32px;
}
.editorial-item h3 {
    border-left: 3px solid var(--gold);
    padding-left: 14px;
    color: var(--gold-lt);
    font-size: 1.18rem;
    margin-bottom: 10px;
}
.editorial-item p {
    font-size: 0.93rem;
    text-align: justify !important;
    margin-bottom: 0.6rem;
    color: var(--txt);
}
@media (max-width: 700px) {
    .editorial-grid { column-count: 1; }
}
