:root {
    --black: #080604;
    --ink: #15110c;
    --panel: #1d1710;
    --gold: #d8aa48;
    --gold-soft: #f4d990;
    --cream: #fff8e7;
    --muted: #cfc0a7;
    --line: rgba(216, 170, 72, 0.22);
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--cream);
    font-family: "Segoe UI", Arial, sans-serif;
    letter-spacing: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.top-strip {
    background: #000;
    border-bottom: 1px solid var(--line);
    color: var(--gold-soft);
    font-size: 13px;
    padding: 8px 0;
}

.top-strip a {
    color: var(--gold-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 6, 4, 0.88);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.navbar {
    padding: 14px 0;
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #171008;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 0 0 6px rgba(216, 170, 72, 0.12);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 248, 231, 0.78);
    font-size: 14px;
    padding: 10px 12px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--gold-soft);
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 12px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: #171008;
    border: 0;
    box-shadow: 0 12px 28px rgba(216, 170, 72, 0.22);
}

.btn-gold:hover,
.btn-dark-gold:hover {
    color: #171008;
    box-shadow: 0 18px 34px rgba(216, 170, 72, 0.32);
}

.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold-soft);
}

.btn-outline-gold:hover {
    background: rgba(216, 170, 72, 0.12);
    color: var(--gold-soft);
}

.btn-dark-gold {
    background: var(--black);
    color: var(--gold-soft);
    border: 1px solid rgba(255, 248, 231, 0.2);
}

.hero {
    min-height: 78vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: slowZoom 12s ease-in-out infinite alternate;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(8, 6, 4, 0.92), rgba(8, 6, 4, 0.66), rgba(8, 6, 4, 0.25));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 90px 12px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0;
}

h1 {
    font-size: clamp(44px, 10vw, 100px);
    line-height: 0.92;
    margin: 0 0 22px;
}

h2 {
    font-size: clamp(30px, 6vw, 54px);
    line-height: 1.02;
    margin-bottom: 18px;
}

h3 {
    font-size: 22px;
}

p {
    color: var(--muted);
    line-height: 1.75;
}

.hero p {
    max-width: 620px;
    font-size: 19px;
}

.hero-actions,
.academy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.section {
    padding: 76px 0;
    background: #100d09;
}

.intro-section,
.academy-preview,
.contact-section,
.booking-section {
    background: radial-gradient(circle at 20% 0%, rgba(216, 170, 72, 0.08), transparent 34%), #100d09;
}

.dark-band {
    background: linear-gradient(135deg, #050403, #1b140c);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.stats-grid div,
.value-box,
.contact-card,
.booking-card,
.booking-info,
.academy-card {
    background: rgba(255, 248, 231, 0.045);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.stats-grid div {
    padding: 18px;
}

.stats-grid strong {
    display: block;
    color: var(--gold-soft);
    font-size: 30px;
    font-family: Georgia, "Times New Roman", serif;
}

.stats-grid span {
    color: var(--muted);
    font-size: 13px;
}

.image-stack {
    position: relative;
    min-height: 420px;
}

.image-stack img {
    position: absolute;
    width: 68%;
    height: 330px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.image-stack img:first-child {
    right: 0;
    top: 0;
}

.image-stack img:last-child {
    left: 0;
    bottom: 0;
}

.rounded-image {
    width: 100%;
    min-height: 360px;
    max-height: 560px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.feature-panel {
    position: relative;
    display: block;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--cream);
}

.feature-panel img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    filter: saturate(0.95) brightness(0.72);
    transition: transform 0.5s ease;
}

.feature-panel:hover img {
    transform: scale(1.06);
}

.feature-panel div {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
}

.feature-panel span {
    color: var(--gold-soft);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
}

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

.chip-list span {
    color: var(--gold-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 14px;
    background: rgba(216, 170, 72, 0.08);
    font-size: 14px;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: #15100a;
}

.cta-section .eyebrow,
.cta-section p {
    color: #3b2b10;
}

.cta-section .eyebrow::before {
    background: #3b2b10;
}

.cta-section .container {
    max-width: 760px;
}

.page-hero {
    padding: 92px 0 58px;
    background: linear-gradient(135deg, #050403, #1c140b);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    max-width: 980px;
    font-size: clamp(38px, 8vw, 72px);
}

.service-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: start;
}

.service-layout.reverse {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.service-layout.reverse .service-intro {
    order: 2;
}

.service-intro {
    position: sticky;
    top: 116px;
}

.service-intro img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--line);
    margin-bottom: 24px;
}

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

.service-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 16px;
    background: rgba(255, 248, 231, 0.045);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--cream);
}

.service-card i,
.value-box i,
.academy-card i,
.booking-info i,
.contact-card i {
    color: var(--gold-soft);
}

.academy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.academy-card {
    padding: 22px;
    min-height: 145px;
}

.academy-card i {
    margin-bottom: 18px;
}

.academy-card h3 {
    font-size: 19px;
    margin: 0;
}

.value-box {
    height: 100%;
    padding: 26px;
}

.value-box.light {
    background: rgba(216, 170, 72, 0.07);
}

.value-box i {
    font-size: 30px;
    margin-bottom: 18px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(1.1);
}

.contact-card,
.booking-card,
.booking-info {
    padding: 28px;
    height: 100%;
}

.contact-card a,
.contact-card p {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--muted);
    margin-bottom: 16px;
}

.map-panel {
    min-height: 100%;
    background: #080604;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.map-panel img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.map-panel div {
    padding: 28px;
}

.booking-info ul {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.booking-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--muted);
}

.booking-card label {
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.form-control,
.form-select {
    min-height: 52px;
    color: var(--cream);
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(216, 170, 72, 0.28);
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    color: var(--cream);
    background: rgba(0, 0, 0, 0.36);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(216, 170, 72, 0.14);
}

.form-select option {
    color: #171008;
}

.alert {
    border-radius: 8px;
}

.footer {
    padding: 58px 0 28px;
    background: #050403;
    border-top: 1px solid var(--line);
}

.footer h3 {
    color: var(--gold-soft);
    font-size: 18px;
    margin-bottom: 18px;
}

.footer a {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--gold-soft);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 248, 231, 0.56);
    border-top: 1px solid var(--line);
    padding-top: 22px;
    margin-top: 38px;
    font-size: 13px;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1001;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
}

.reveal {
    opacity: 1;
    transform: none;
}

.js-reveal .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slowZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.1);
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding-top: 16px;
    }

    .hero {
        min-height: 72vh;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(8, 6, 4, 0.52), rgba(8, 6, 4, 0.94));
    }

    .service-layout,
    .service-layout.reverse {
        grid-template-columns: 1fr;
    }

    .service-layout.reverse .service-intro {
        order: 0;
    }

    .service-intro {
        position: static;
    }

    .academy-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .top-strip .container {
        justify-content: center !important;
        flex-wrap: wrap;
    }

    .hero-content {
        padding: 74px 12px;
    }

    .hero-actions,
    .academy-actions {
        flex-direction: column;
    }

    .hero-actions .btn,
    .academy-actions .btn {
        width: 100%;
    }

    .section {
        padding: 58px 0;
    }

    .stats-grid,
    .service-grid,
    .academy-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .image-stack {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .image-stack img {
        position: static;
        width: 100%;
        height: 260px;
    }

    .feature-panel,
    .feature-panel img {
        min-height: 320px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .navbar-brand {
        font-size: 14px;
    }

    .booking-card,
    .booking-info,
    .contact-card {
        padding: 20px;
    }
}

.admin-body {
    min-height: 100vh;
    background: radial-gradient(circle at 10% 10%, rgba(216, 170, 72, 0.12), transparent 28%), #080604;
}

.admin-shell {
    min-height: 100vh;
}

.admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.admin-login-card,
.admin-card,
.admin-topbar {
    background: rgba(255, 248, 231, 0.045);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.admin-login-card {
    width: min(100%, 460px);
    padding: 34px;
}

.admin-login-card h1,
.admin-card h1 {
    font-size: clamp(34px, 6vw, 54px);
}

.admin-login-card label {
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.admin-dashboard {
    padding: 24px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 18px;
    margin-bottom: 22px;
}

.admin-topbar p {
    margin: 8px 0 0;
}

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

.admin-card {
    padding: 24px;
}

.admin-card-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.admin-search {
    display: flex;
    gap: 10px;
    width: min(100%, 480px);
}

.admin-search .btn {
    min-width: 56px;
    padding-left: 16px;
    padding-right: 16px;
}

.admin-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 220px));
    gap: 12px;
    margin-bottom: 22px;
}

.admin-summary div {
    background: rgba(216, 170, 72, 0.08);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
}

.admin-summary strong {
    display: block;
    color: var(--gold-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.admin-summary span {
    color: var(--muted);
}

.admin-table-wrap {
    border: 1px solid var(--line);
    border-radius: 8px;
}

.admin-table {
    margin: 0;
    min-width: 1120px;
    color: var(--cream);
}

.admin-table thead th {
    color: var(--gold-soft);
    background: #050403;
    border-color: var(--line);
    font-size: 13px;
    text-transform: uppercase;
}

.admin-table tbody td {
    color: var(--muted);
    background: rgba(255, 248, 231, 0.025);
    border-color: rgba(216, 170, 72, 0.14);
}

.admin-table a {
    color: var(--gold-soft);
}

.status-pill {
    display: inline-flex;
    color: #171008;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-items: end;
}

.admin-form-grid label,
.billing-row label,
.admin-card label {
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.admin-check {
    display: flex;
    align-items: center;
    min-height: 52px;
    color: var(--muted);
}

.admin-check input {
    margin-right: 8px;
}

.billing-items {
    display: grid;
    gap: 12px;
}

.billing-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) minmax(180px, 1fr) 90px 120px 120px 48px;
    gap: 12px;
    align-items: end;
    padding: 14px;
    background: rgba(255, 248, 231, 0.035);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.billing-row .remove-row {
    min-width: 48px;
    height: 52px;
    padding: 0;
}

.billing-actions {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
}

.billing-total {
    color: var(--gold-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
}

.report-filter {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) auto;
    gap: 14px;
    align-items: end;
}

.report-filter label {
    color: var(--gold-soft);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.report-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

@media (max-width: 767px) {
    .admin-dashboard {
        padding: 14px;
    }

    .admin-topbar,
    .admin-card-head {
        flex-direction: column;
    }

    .admin-actions,
    .admin-actions .btn,
    .admin-search {
        width: 100%;
    }

    .admin-summary {
        grid-template-columns: 1fr;
    }

    .admin-form-grid,
    .report-filter,
    .billing-row {
        grid-template-columns: 1fr;
    }

    .billing-actions {
        align-items: stretch;
        flex-direction: column;
    }
}
