/* styles-bw.css — Black & White theme with Yellow buttons and Green WhatsApp */

/* Variables */

:root {
    --bg-1: #000000;
    --bg-2: #0a0a0a;
    --text: #f4f4f4;
    --muted: #cfcfcf;
    --primary: #ffd400;
    /* yellow buttons */
    --accent: #ffec80;
    /* light yellow */
    --whats: #25D366;
    /* WhatsApp green */
    --line: #2a2a2a;
    /* borders */
    --pill: #141414;
    /* chips/pills */
    --elev: rgba(16, 16, 16, .92);
    --shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

/* Base */

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans";
    color: var(--text);
    background: linear-gradient(180deg, var(--bg-1), var(--bg-2)) fixed;
    line-height: 1.6;
}

a {
    color: yellow;
    font-size: 14px;
    font-weight: bold;
}

/* Containers and sections */

.container {
    width: min(1160px, 92%);
    margin-inline: auto
}

.section {
    padding: 12px 0
}

.section-alt {
    background: transparent
}

.section-intro {
    color: var(--muted);
    margin-top: -8px
}

/* Grid */

.grid {
    display: grid;
    gap: 24px
}

.grid.two {
    grid-template-columns: 1fr
}

@media (min-width: 900px) {
    .grid.two {
        grid-template-columns: 1fr 1fr
    }
}

.prose p {
    margin: 0 0 10px
}

.prose h2,
.prose h3 {
    margin-top: 24px
}

/* Skip link */

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: #000;
    color: #fff;
    z-index: 9999;
    border-radius: 6px
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(12, 12, 12, .92), rgba(12, 12, 12, .7));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text)
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: #111;
    color: #ffff00;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    font-weight: 700;
}

.brand-text {
    font-weight: 700;
    letter-spacing: .2px
}

/* Nav and buttons */

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 8px;
    transition: .2s
}

.main-nav a:hover {
    background: #111;
    border: 1px solid var(--line)
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: 1px solid #f6d200;
    box-shadow: 0 6px 14px rgba(255, 212, 0, .25);
}

.btn:hover {
    filter: brightness(1.04)
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line)
}

.btn-sm {
    padding: 8px 12px;
    font-size: .925rem
}

.btn-row {
    display: flex;
    gap: 10px;
    margin-top: 10px
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whats), #40f08a);
    color: #0a2a16 !important;
    border: 1px solid #1ecf68;
    box-shadow: 0 6px 14px rgba(37, 211, 102, .25);
}

/* Mobile nav */

.nav-toggle {
    display: none
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text);
    margin: 6px 0
}

@media (max-width: 960px) {
    .hamburger {
        display: block
    }
    .main-nav {
        position: fixed;
        inset: 64px 0 auto 0;
        background: var(--elev);
        transform: translateY(-140%);
        transition: .3s;
        border-bottom: 1px solid var(--line)
    }
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 12px
    }
    .main-nav a {
        padding: 14px
    }
    .nav-toggle:checked~.main-nav {
        transform: translateY(0)
    }
}

/* Hero */

.hero {
    padding: 84px 0 48px;
    position: relative;
    overflow: hidden
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr;
    gap: 28px;
    align-items: center
}

.hero-copy h1 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.1;
    color: #fff;
}

.hero-copy p {
    color: var(--muted);
    max-width: 56ch
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 16px
}

.hero-media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow)
}

@media (min-width: 960px) {
    .hero-inner {
        grid-template-columns: 1.1fr .9fr
    }
}

/* Banners */

.promo-banners {
    grid-template-columns: 1fr
}

@media (min-width: 860px) {
    .promo-banners {
        grid-template-columns: 1fr 1fr
    }
}

.banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #0e0e0e;
    box-shadow: var(--shadow);
}

.banner-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block
}

.banner-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .55));
}

.banner-overlay h3 {
    margin: 0 0 6px;
    color: #fff
}

.banner-overlay p {
    margin: 0 0 10px;
    color: var(--muted)
}

/* Split 50/50 */

.split {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr
}

@media (min-width: 900px) {
    .split {
        grid-template-columns: 1fr 1fr
    }
}

.split-media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow)
}

.split-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center
}

.justify {
    text-align: justify
}

/* Tables */

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: inset 0 0 24px rgba(0, 0, 0, .15);
    background: #0d0d0d
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px
}

.table caption {
    text-align: left;
    padding: 14px;
    color: var(--muted)
}

.table th,
.table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line)
}

.table tr:nth-child(even) {
    background: #0f0f0f
}

.table-compact th,
.table-compact td {
    padding: 10px 12px
}

/* Tags */

.pill-list,
.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none
}

.pill-list li,
.tag-pills li {
    background: var(--pill);
    border: 1px solid var(--line);
    padding: 8px 12px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eaeaea
}

/* Simple cards */

.cards {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

@media (min-width: 640px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width: 980px) {
    .cards {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

.card {
    background: #0f0f0f;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.card img {
    width: 100%;
    height: 260px;
    object-fit: cover
}

.card-body {
    padding: 14px
}

.card-title {
    margin: 2px 0 8px
}

/* Key-value & stars */

.kv {
    list-style: none;
    margin: 0 0 8px;
    padding: 0
}

.kv li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--line)
}

.kv li:last-child {
    border-bottom: 0
}

.stars {
    letter-spacing: 2px;
    color: #ffe680;
    margin: 8px 0 12px
}

/* Profile cards */

.profiles {
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

@media (min-width: 760px) {
    .profiles {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width: 1120px) {
    .profiles {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

.profile-card {
    background: #0f0f0f;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.profile-card>img {
    width: 100%;
    height: 240px;
    object-fit: cover
}

.profile-card__body {
    padding: 14px
}

.profile-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px
}

.profile-card__name {
    margin: 0
}

.profile-card__meta {
    margin: .25rem 0;
    color: var(--muted)
}

.profile-card__desc {
    margin: .25rem 0 .5rem
}

.badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .2px;
    border: 1px solid var(--line);
    background: #111;
    color: #eaeaea
}

.badge--available {
    border-color: #388e3c;
    color: #d6ffe1
}

.badge--busy {
    border-color: #8e3c3c;
    color: #ffdbdb
}

/* Video */

.video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow)
}

.video-wrap video {
    display: block;
    width: 100%;
    height: auto;
    background: #000
}

/* Reels */

.slider {
    position: relative
}

.slider .slider-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px;
    scroll-padding-inline: 50%;
    scroll-behavior: smooth;
}

.reels-track .reel {
    scroll-snap-align: center
}

.slider .slider-track>* {
    flex: 0 0 min(90vw, 420px);
    max-width: min(90vw, 420px)
}

@media (min-width: 900px) {
    .slider .slider-track>* {
        flex: 0 0 360px;
        max-width: 360px
    }
}

.slider .reel {
    background: #0f0f0f;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.reel video.reel-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #000;
    display: block;
    object-fit: cover
}

.reel figcaption {
    padding: 10px 12px;
    color: var(--muted)
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #1a1a1a;
    font-weight: 900;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 14px rgba(255, 212, 0, .25)
}

.slider-arrow.left {
    left: -6px
}

.slider-arrow.right {
    right: -6px
}

/* Positions Gallery */

.positions-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 720px) {
    .positions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
}

.positions-grid figure {
    margin: 0;
    background: #0f0f0f;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.positions-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block
}

.positions-grid figcaption {
    padding: 8px 10px;
    color: var(--muted)
}

/* Forms */

.form {
    background: #0f0f0f;
    border: 1px solid var(--line);
    padding: 18px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px
}

.form-row.two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px
}

@media (min-width: 680px) {
    .form-row.two {
        grid-template-columns: 1fr 1fr
    }
}

label {
    color: var(--muted);
    font-size: .95rem
}

input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #121212;
    color: var(--text);
}

input:focus,
textarea:focus {
    outline: 2px solid #333;
    outline-offset: 2px
}

/* FAQ (Black & White) */

.faqs {
    display: grid;
    gap: 12px
}

.faqs details {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0f0f0f;
    box-shadow: var(--shadow);
    overflow: hidden
}

.faqs summary {
    cursor: pointer;
    padding: 12px 14px;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    color: var(--text);
    font-weight: 600
}

.faqs summary::-webkit-details-marker {
    display: none
}

.faqs summary::before {
    content: "▸";
    font-weight: 900;
    margin-right: 6px;
    color: #bbb
}

.faqs details[open]>summary::before {
    content: "▾"
}

.faq-body {
    padding: 12px 14px 14px;
    color: #e9e9e9;
    background: #0a0a0a
}

/* Cities */

.city-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px
}

.city-links a {
    text-decoration: none;
    color: #eaeaea;
    background: var(--pill);
    border: 1px solid var(--line);
    padding: 8px 12px;
    border-radius: 999px;
}

.city-links a:hover {
    filter: brightness(1.06)
}

/* Footer */

.site-footer {
    margin-top: 24px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(8, 8, 8, .65), rgba(8, 8, 8, .5));
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .25) inset;
}

.footer-inner {
    display: grid;
    gap: 18px;
    align-items: center;
    grid-template-columns: 1fr
}

@media (min-width: 900px) {
    .footer-inner {
        grid-template-columns: 1.6fr 1fr auto
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0
}

.footer-links a {
    color: #d9d9d9;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 8px
}

.footer-links a:hover {
    background: #111;
    border: 1px solid var(--line)
}

.to-top {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(255, 212, 0, .25)
}

/* Footer Extras: Map + Social */

.footer-extras {
    display: grid;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    grid-template-columns: 1fr
}

@media (min-width: 960px) {
    .footer-extras {
        grid-template-columns: 1.2fr .8fr
    }
}

.footer-subtitle {
    margin: 0 0 10px;
    color: #d5d5d5
}

.map-embed {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0f0f0f;
    aspect-ratio: 16 / 9;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}

.social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.social-btn {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid var(--line)
}

.social-btn:hover {
    background: #151515
}

.social-wa {
    background: linear-gradient(135deg, var(--whats), #40f08a);
    color: #0a2a16;
    border: 1px solid #1ecf68
}

/* Accessibility helper */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.tag-pills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.tag-pills li {
    display: inline-block;
    background: #660303;
    color: #222;
    padding: 7px 18px;
    margin: 6px 6px 6px 0;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.tag-pills li:hover {
    background: #ffe400;
    /* Yellow */
    color: #222;
    /* Optional: text remains dark */
}

.tag-pills .ico {
    margin-right: 7px;
    /* Optional: add icon styling here */
}

.city-links a {
    display: inline-block;
    margin: 6px 6px 6px 0;
    padding: 9px 22px;
    background: #edc500;
    color: #222;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.city-links a:hover {
    background: #ffe400;
    /* Yellow */
    color: #222;
    /* Keeps text readable */
}

.table-compact th,
.table-compact td {
    text-align: center;
    vertical-align: middle;
}

.table thead th,
.table tbody td {
    text-align: center;
    vertical-align: middle;
}

.floating-contact-left {
    position: fixed;
    left: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999
}

.floating-contact-left a {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgb(0 0 0 / .35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    position: relative
}

.floating-contact-left svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

.floating-call-left {
    background-color: #1e55e5
}

.floating-whatsapp-left {
    background-color: #10c855
}

.floating-contact-left a .number {
    position: absolute;
    right: 100%;
    bottom: 50%;
    transform: translateY(50%);
    margin-right: 10px;
    background-color: rgb(0 0 0 / .8);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none
}

.floating-contact-left a:hover .number {
    opacity: 1;
    visibility: visible
}

.floating-contact-left a:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgb(0 0 0 / .45)
}

@media (max-width:400px) {
    .floating-contact-left a {
        width: 44px;
        height: 44px
    }
    .floating-contact-left svg {
        width: 22px;
        height: 22px
    }
    .floating-contact-left a .number {
        font-size: 13px;
        padding: 4px 8px
    }
}

@media (min-width:992px) {
    .floating-contact-left {
        left: 24px;
        bottom: 24px
    }
}

*