:root {
    --navy: #061426;
    --gold: #d6a744;
    --gold2: #f2cf7a;
    --tech: #1764d6;
    --trade: #15824a;
    --ink: #0b1725;
    --muted: #6b7583;
    --paper: #f5f7fa;
    --line: #dfe4eb;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial,Helvetica,sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: calc(100% - 96px);
    max-width: 1600px;
    margin: auto
}

/* TOP BAR */
.topbar {
    background: #020b15;
    color: #c4ceda;
    font-size: 10px;
    letter-spacing: .12em
}

    .topbar .container {
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

.gold {
    color: var(--gold2)
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(4,15,29,.985);
    border-bottom: 1px solid rgba(214,167,68,.16);
}

.nav {
    min-height: 112px;
    display: flex;
    align-items: center;
    gap: 34px;
}

.brand-mini {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-weight: 800;
    letter-spacing: .18em;
    min-width: 240px;
}

    .brand-mini img {
        width: 82px;
        height: auto;
    }

    .brand-mini span {
        font-size: 22px;
        line-height: 1.05;
    }

    .brand-mini small {
        display: block;
        color: var(--gold2);
        font-size: 10px;
        letter-spacing: .38em;
        margin-top: 5px;
    }

.navlinks {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: auto;
}

    .navlinks a {
        position: relative;
        font-size: 13px;
        font-weight: 700;
        color: #e5ebf1;
        padding: 44px 0 38px;
    }

        .navlinks a:hover {
            color: var(--gold2)
        }

        .navlinks a.active:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 30px;
            height: 2px;
            background: var(--gold);
        }

.nav-cta {
    margin-left: 16px;
    min-height: 58px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    color: #071426;
    background: linear-gradient(90deg,#c58d28,#efc45f);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
}

.menu {
    display: none;
    margin-left: auto;
    border: 0;
    background: none;
    color: #fff;
    font-size: 28px;
}

/* HERO — MATCHED TO REFERENCE */
.hero {
    min-height: 700px;
    background: radial-gradient(circle at 72% 38%,rgba(214,167,68,.10),transparent 27%), linear-gradient(120deg,#02101e 0%,#07192b 50%,#10263a 100%);
    color: #fff;
}

    .hero .container {
        width: calc(100% - 96px);
        max-width: 1600px;
    }

.hero-grid {
    min-height: 700px;
    display: grid;
    grid-template-columns: 520px minmax(0,1fr);
    gap: 58px;
    align-items: center;
    padding: 68px 0 76px;
}

.hero-copy {
    width: 100%;
    max-width: 520px;
    transform: translateY(18px);
}

.hero .kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #f0be4c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .20em;
    text-transform: uppercase;
    margin-bottom: 34px;
}

    .hero .kicker:before {
        content: "";
        width: 48px;
        height: 2px;
        background: #d6a744;
    }

.hero h1 {
    margin: 0;
    color: #fff;
    font-size: 96px;
    line-height: .95;
    letter-spacing: -.05em;
    font-weight: 800;
}

    .hero h1 em {
        display: block;
        margin-top: 10px;
        color: #f2c45f;
        font-family: Georgia,"Times New Roman",serif;
        font-size: .84em;
        font-weight: 400;
        line-height: 1.02;
        letter-spacing: -.035em;
        white-space: nowrap;
    }

.hero-copy p {
    max-width: 520px;
    margin: 34px 0 0;
    color: #d2dae3;
    font-size: 16px;
    line-height: 1.85;
}

.hero .actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero .btn {
    min-height: 58px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .045em;
}

.hero .btn-gold {
    background: linear-gradient(90deg,#c88f27,#efc05a);
    color: #071426;
    border: 1px solid #d9a83f;
}

.hero .btn-outline {
    background: rgba(4,16,30,.25);
    color: #fff;
    border: 1px solid rgba(255,255,255,.42);
}

.hero-logo-box {
    width: 100%;
    max-width: 900px;
    justify-self: end;
    padding: 14px;
    background: rgba(2,12,24,.24);
    border: 1px solid rgba(214,167,68,.74);
    box-shadow: 0 0 40px rgba(214,167,68,.08), 0 30px 75px rgba(0,0,0,.26);
}

    .hero-logo-box img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

/* GENERAL BUTTONS */
.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px
}

.btn {
    min-height: 48px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .07em;
    border: 0;
    cursor: pointer;
}

.btn-gold {
    background: linear-gradient(90deg,#b88022,#e0b658);
    color: #061426
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.26);
    color: #fff
}

.btn-dark {
    background: #061426;
    color: #fff
}

/* SAFE BRAND IMAGES */
.brand-panel,
.vimg,
.sub-brand-panel,
.identity {
    overflow: visible
}

    .brand-panel img,
    .vimg img,
    .sub-brand-panel img,
    .identity img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

.dark-panel {
    background: #061426;
    padding: 10px;
    border: 1px solid rgba(214,167,68,.22)
}

.vimg {
    background: #fff;
    padding: 0;
    border-bottom: 1px solid var(--line)
}

/* METRICS */
.metrics {
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.metric {
    padding: 28px 32px;
    border-right: 1px solid var(--line);
    text-align: center
}

    .metric:last-child {
        border-right: 0
    }

    .metric strong {
        display: block;
        font: 700 32px Georgia,serif;
        color: #8b6328
    }

    .metric span {
        font-size: 9px;
        letter-spacing: .11em;
        text-transform: uppercase;
        color: #7a8491
    }

/* SECTIONS */
.section {
    padding: 105px 0
}

.section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 52px
}

    .section-head .kicker {
        justify-content: center;
        color: #98702f
    }

    .section-head h2 {
        font-size: clamp(38px,4.8vw,62px);
        line-height: 1.05;
        margin: 17px 0
    }

    .section-head p {
        font-size: 14px;
        line-height: 1.8;
        color: var(--muted)
    }

.verticals, .soft {
    background: var(--paper)
}

.vertical-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px
}

.vcard {
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 35px rgba(8,25,45,.05)
}
.card-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    cursor: pointer;
}

    .vcard:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 4px;
        z-index: 2
    }

    .vcard.tech:before {
        background: var(--tech)
    }

    .vcard.build:before {
        background: var(--gold)
    }

    .vcard.trade:before {
        background: var(--trade)
    }

.vbody {
    padding: 28px
}

.tag {
    font-size: 8px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 900
}

.tech .tag {
    color: var(--tech)
}

.build .tag {
    color: #9a6b23
}

.trade .tag {
    color: var(--trade)
}

.vcard h3 {
    font: 700 27px Georgia,serif;
    margin: 9px 0 12px
}

.vcard p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.75
}

.vcard ul {
    list-style: none;
    padding: 0;
    margin: 19px 0 26px;
    border-top: 1px solid var(--line)
}

.vcard li {
    font-size: 10.5px;
    color: #4e5968;
    padding: 10px 0;
    border-bottom: 1px solid var(--line)
}

.vcard a {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase
}

/* PHILOSOPHY */
.philosophy {
    background: var(--navy);
    color: #fff
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.philosophy h2 {
    font-size: 54px;
    line-height: 1.08;
    margin: 18px 0 22px
}

    .philosophy h2 em {
        color: var(--gold2);
        font-family: Georgia,serif;
        font-weight: 400
    }

.philosophy p {
    color: #aebccb;
    line-height: 1.8;
    font-size: 14px
}

.pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.pillar {
    border: 1px solid rgba(214,167,68,.19);
    padding: 24px
}

    .pillar strong {
        font: 700 24px Georgia,serif;
        color: var(--gold2)
    }

    .pillar span {
        display: block;
        margin-top: 7px;
        color: #b8c3d0;
        font-size: 9px;
        text-transform: uppercase
    }

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.identity {
    background: var(--navy);
    padding: 10px
}

.about h2, .contact h2 {
    font-size: 52px;
    line-height: 1.08;
    margin: 18px 0 22px
}

    .about h2 span, .contact h2 span {
        color: #9b6f2a;
        font-family: Georgia,serif
    }

.about p, .contact p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted)
}

.checks {
    display: grid;
    gap: 11px;
    margin-top: 26px
}

.check {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 11px
}

    .check i {
        font-style: normal;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #f1e6d2;
        color: #906624;
        display: grid;
        place-items: center
    }

/* CONTACT */
.contact {
    background: #f3f6f9
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px
}

.contact-points {
    margin-top: 30px
}

    .contact-points div {
        padding: 14px 0;
        border-top: 1px solid #dbe1e8
    }

    .contact-points small {
        font-size: 8px;
        letter-spacing: .14em;
        color: #9b6f2b
    }

    .contact-points strong {
        display: block;
        font-size: 12px;
        margin-top: 5px;
        line-height: 1.6
    }

form {
    background: #fff;
    border: 1px solid var(--line);
    padding: 34px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

label {
    display: grid;
    gap: 7px;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    color: #566172;
    margin-bottom: 15px
}

input, select, textarea {
    padding: 13px;
    width: 100%;
    border: 1px solid #d9dfe7;
    background: #fbfcfd;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

form .btn {
    width: 100%
}


/* FOOTER */
footer {
    background: #020c18;
    color: #fff;
    padding: 50px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 45px
}

    .footer-grid h4 {
        font-size: 9px;
        color: var(--gold2);
        text-transform: uppercase;
        margin: 0 0 14px
    }

    .footer-grid a {
        display: block;
        color: #aeb9c7;
        font-size: 10.5px;
        margin: 9px 0
    }

.footer-tagline {
    font-size: 9px;
    color: #7e8da0
}

.copy {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 35px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    color: #718094;
    font-size: 8px
}

/* SUB PAGES */
.subhero {
    color: #fff;
    padding: 100px 0 80px
}

.subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.subhero h1 {
    font-size: 64px;
    line-height: 1;
    margin: 17px 0 20px
}

.subhero p {
    font-size: 14px;
    line-height: 1.8;
    color: #cbd4de
}

.sub-brand-panel {
    background: #fff;
    padding: 0
}

.tech-bg {
    background: linear-gradient(135deg,#061426,#133d78)
}

.build-bg {
    background: linear-gradient(135deg,#061426,#3d2d19)
}

.trade-bg {
    background: linear-gradient(135deg,#061426,#0f5933)
}

.service-section {
    padding: 95px 0
}

.services {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.service {
    border: 1px solid var(--line);
    padding: 28px;
    background: #fff;
    min-height: 215px
}

    .service h3 {
        font: 700 23px Georgia,serif;
        margin: 11px 0
    }

    .service p {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.7
    }

.gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.gallery-item {
    min-height: 260px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
    background: radial-gradient(circle at 70% 20%,rgba(214,167,68,.55),transparent 30%),linear-gradient(135deg,#3c2b18,#07172b)
}

    .gallery-item h3 {
        font: 700 24px Georgia,serif;
        margin: 8px 0
    }

    .gallery-item p {
        font-size: 11px;
        color: #d0d8e2
    }

.catalog {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 18px
}

.product-visual {
    height: 170px;
    background: linear-gradient(135deg,#edf0f4,#fff);
    display: grid;
    place-items: center;
    font: 700 48px Georgia,serif;
    color: #adb4be
}

.product-card h3 {
    font: 700 19px Georgia,serif;
    margin: 14px 0 6px
}

.product-card p {
    font-size: 10.5px;
    line-height: 1.6;
    color: var(--muted)
}

/* RESPONSIVE */
@media(max-width:1200px) {
    .container, .hero .container {
        width: min(100% - 40px,1440px)
    }

    .navlinks {
        gap: 24px
    }

        .navlinks a {
            font-size: 11px
        }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 70px 0
    }

    .hero-copy {
        max-width: 720px
    }

    .hero-logo-box {
        max-width: 900px;
        justify-self: center
    }

    .philosophy-grid, .about-grid, .contact-grid, .subgrid {
        grid-template-columns: 1fr
    }

    .vertical-grid, .services, .gallery {
        grid-template-columns: 1fr
    }

    .catalog {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:900px) {
    .topbar {
        display: none
    }

    .nav {
        min-height: 78px
    }

    .brand-mini {
        min-width: auto
    }

        .brand-mini img {
            width: 58px
        }

        .brand-mini span {
            font-size: 16px
        }

    .navlinks, .nav-cta {
        display: none
    }

    .menu {
        display: block
    }

    .navlinks.open {
        display: flex;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        padding: 22px;
        background: #061426;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

        .navlinks.open a {
            width: 100%;
            padding: 14px 0
        }

    .navlinks a:first-child:after {
        display: none
    }

    .hero {
        min-height: auto
    }

    .hero-grid {
        min-height: auto;
        padding: 58px 0 65px
    }

    .hero h1 {
        font-size: 68px
    }

    .metric-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .container, .hero .container {
        width: min(100% - 26px,1440px)
    }

    .hero h1 {
        font-size: 54px
    }

        .hero h1 em {
            white-space: normal
        }

    .hero-copy p {
        font-size: 14px
    }

    .hero .actions {
        flex-direction: column;
        align-items: stretch
    }

    .hero .btn {
        width: 100%
    }

    .section {
        padding: 78px 0
    }

    .philosophy h2, .about h2, .contact h2 {
        font-size: 42px
    }

    .pillar-grid, .form-row, .catalog {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .copy {
        flex-direction: column;
        gap: 7px
    }

    .subhero h1 {
        font-size: 46px
    }
}


.enquiry-error {
    margin-bottom: 18px;
    padding: 14px 16px;
    background: #fff0f0;
    border: 1px solid #e0a0a0;
    color: #9d2525;
    font-size: 12px;
    font-weight: 700
}

.enquiry-error {
    margin-bottom: 18px;
    padding: 15px 18px;
    background: #fff0f0;
    border: 1px solid #e0a0a0;
    color: #9d2525;
    font-size: 13px;
    font-weight: 700
}


.success-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0,8,18,.76);
    backdrop-filter: blur(4px);
}

.success-modal {
    position: relative;
    width: min(540px,100%);
    padding: 62px 52px 46px;
    background: #fff;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 28px 90px rgba(0,0,0,.38);
    overflow: hidden;
    animation: successPopup .28s ease-out;
}

@keyframes successPopup {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #6f7781;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.success-check {
    width: 122px;
    height: 122px;
    margin: 15px auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f5e8;
    color: #2e9d51;
    font-size: 62px;
    font-weight: 700;
}

.success-modal h2 {
    margin: 0;
    color: #247d3d;
    font-family: Georgia,"Times New Roman",serif;
    font-size: 34px;
}

.success-gold-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 14px auto 25px;
}

    .success-gold-line span {
        width: 75px;
        height: 1px;
        background: #d6a744;
    }

    .success-gold-line i {
        color: #d6a744;
        font-style: normal;
        font-size: 11px;
    }

.success-modal h3 {
    max-width: 400px;
    margin: 0 auto;
    color: #111827;
    font-size: 21px;
    line-height: 1.5;
}

.success-modal p {
    margin: 17px 0 30px;
    color: #75808f;
    font-size: 15px;
}

.success-ok-btn {
    min-width: 130px;
    height: 54px;
    border: 0;
    border-radius: 5px;
    background: linear-gradient(90deg,#c99129,#e9b84f);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(190,137,40,.24);
}

    .success-ok-btn:hover {
        filter: brightness(1.05);
    }

.success-confetti span {
    position: absolute;
    color: #d6a744;
    font-size: 12px;
}

    .success-confetti span:nth-child(1) {
        top: 40px;
        left: 55px;
        color: #66aac0;
        transform: rotate(35deg)
    }

    .success-confetti span:nth-child(2) {
        top: 65px;
        left: 130px;
        color: #ef8796
    }

    .success-confetti span:nth-child(3) {
        top: 45px;
        right: 75px;
        color: #d6a744
    }

    .success-confetti span:nth-child(4) {
        top: 110px;
        left: 70px;
        color: #78b887
    }

    .success-confetti span:nth-child(5) {
        top: 90px;
        right: 60px;
        color: #ef9c5f
    }

    .success-confetti span:nth-child(6) {
        top: 135px;
        right: 115px;
        color: #c96bd4
    }

@media(max-width:600px) {
    .success-modal {
        padding: 52px 24px 36px;
    }

    .success-check {
        width: 95px;
        height: 95px;
        font-size: 48px;
    }

    .success-modal h2 {
        font-size: 29px;
    }

    .success-modal h3 {
        font-size: 18px;
    }
}

.phone-field .iti {
    width: 100%;
}

    .phone-field .iti input {
        width: 100%;
    }

.phone-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

/* NAME + PHONE SAME LEVEL FIX */
.form-row {
    align-items: flex-start;
}

    .form-row > label {
        display: flex;
        flex-direction: column;
    }

.phone-field .iti {
    width: 100%;
    display: block;
}

    .phone-field .iti input,
    .form-row input {
        height: 52px !important;
        box-sizing: border-box;
    }

    .phone-field .iti input {
        margin: 0 !important;
    }

.phone-field .iti__selected-country {
    height: 52px !important;
}

.phone-field .iti__country-container {
    height: 52px !important;
}

/* COUNTRY CODE SIZE */
.iti__selected-dial-code {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111827 !important;
}
.iti__selected-country {
    display: flex !important;
    align-items: center !important;
}

/* ===== PROFESSIONAL FORM TYPOGRAPHY ===== */

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    font-family: Helvetica,Arial,sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    letter-spacing: 0 !important;
    color: #101828 !important;
}

    .enquiry-form input::placeholder,
    .enquiry-form textarea::placeholder {
        font-family: "Helvetica", Arial, sans-serif !important;
        font-weight: 400 !important;
        color: #667085 !important;
    }

.enquiry-form label {
    font-family: Helvetica, sans-serif !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    letter-spacing: .7px !important;
}


.admin-page,
.admin-details {
    padding: 60px;
    background: #f5f7fa;
    min-height: 100vh;
}

    .admin-header h1,
    .admin-details h1 {
        margin: 0;
        font-size: 34px;
        color: #071426;
    }

.admin-header p {
    color: #667085;
}

.admin-filters {
    margin: 30px 0;
    display: flex;
    gap: 12px;
    padding: 20px;
    background: #fff;
}

    .admin-filters input,
    .admin-filters select {
        height: 46px;
    }

    .admin-filters button,
    .admin-filters a {
        min-height: 46px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: #071426;
        color: #fff;
        cursor: pointer;
    }

.admin-table-wrap {
    background: #fff;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th {
        padding: 15px;
        text-align: left;
        background: #071426;
        color: #fff;
        font-size: 11px;
    }

    .admin-table td {
        padding: 15px;
        border-bottom: 1px solid #e5e7eb;
        font-size: 13px;
    }

        .admin-table td strong {
            display: block;
        }

        .admin-table td small {
            display: block;
            color: #667085;
            margin-top: 4px;
        }

.status-form {
    padding: 0;
    border: 0;
    box-shadow: none;
}

    .status-form select {
        padding: 8px 10px;
    }

.view-btn {
    padding: 8px 14px;
    background: #d6a744;
    color: #071426;
    font-weight: 700;
}

.detail-card {
    margin-top: 30px;
    max-width: 900px;
    padding: 35px;
    background: #fff;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

    .detail-grid div {
        padding: 18px;
        border: 1px solid #e5e7eb;
    }

    .detail-grid small,
    .requirement-box small {
        display: block;
        color: #8b6a32;
        margin-bottom: 7px;
    }

.requirement-box {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.back-link {
    color: #8b6a32;
    font-weight: 700;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.social-icon {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
}

/* WhatsApp button */
.btn-gold.social-btn {
    background: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

/* Instagram button */
.btn-dark.social-btn {
    background: linear-gradient( 45deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5 );
    color: #ffffff;
    border-color: transparent;
}

.btn-gold.social-btn:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    transform: translateY(-2px);
}

.btn-dark.social-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.social-btn {
    transition: transform .2s ease, filter .2s ease, background .2s ease;
}

/* LANGUAGE SWITCHER */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    color: #d8e0ea;
    font-size: 11px;
    font-weight: 600;
}

    .language-switcher a {
        color: #d8e0ea;
    }

        .language-switcher a:hover {
            color: var(--gold2);
        }

    .language-switcher span {
        color: #6b7583;
    }