/* PSNR Service Limited — Black Leather & Gold Theme */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ---------- Palette ---------- */
:root {
    --gold:        #d4af37;
    --gold-light:  #f0d478;
    --gold-deep:   #a8842a;
    --ink:         #0a0a0a;
    --ink-2:       #121212;
    --panel:       #1a1a1a;
    --panel-2:     #232323;
    --line:        rgba(212, 175, 55, 0.22);
    --line-strong: rgba(212, 175, 55, 0.55);
    --text:        #e8e6e1;
    --text-muted:  #9a958c;

    --primary-color: var(--gold);
    --primary-dark:  var(--gold-deep);
}

/* ---------- Black leather background ---------- */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.65;
    color: var(--text);
    font-weight: 400;
    background-color: #16130f;
    background-image:
        radial-gradient(ellipse at 24% 10%, rgba(255,245,225,0.10) 0%, transparent 46%),
        radial-gradient(ellipse at 76% 90%, rgba(212,175,55,0.055) 0%, transparent 44%),
        url('../images/leather.png');
    background-size: auto, auto, 384px 384px;
    background-repeat: no-repeat, no-repeat, repeat;
    background-blend-mode: soft-light, soft-light, multiply;
    background-attachment: fixed, fixed, fixed;
}

/* A second, larger pass of the same hide at low opacity gives the surface
   depth at two scales, the way real leather reads up close and at distance. */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('../images/leather.png');
    background-size: 1100px 1100px;
    background-repeat: repeat;
    opacity: 0.22;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { color: var(--text); font-weight: 600; }
h1, h2, .crest-font { font-family: 'Cinzel', Georgia, serif; letter-spacing: 0.5px; }
h1 { font-size: 3.2rem; font-weight: 700; }
h2 { font-size: 2.3rem; font-weight: 600; }

.text-muted { color: var(--text-muted) !important; }
.text-primary, .text-gold { color: var(--gold) !important; }
.bg-light { background: transparent !important; }

.section-title {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--gold);
    text-align: center;
    font-size: 2.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.section-rule {
    width: 90px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0.9rem auto 0.6rem;
    position: relative;
}
.section-rule::after {
    content: '\25C6';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold); font-size: 0.6rem;
    background: var(--ink); padding: 0 8px;
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 0.98rem;
    letter-spacing: 0.4px;
}

/* ---------- Buttons ---------- */
.btn { letter-spacing: 0.6px; border-radius: 3px; transition: all 0.3s ease; }

.btn-gold, .btn-primary, .btn-blue, .btn-warning {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
    border: 1px solid var(--gold-deep);
    color: #15120a;
    font-weight: 700;
}
.btn-gold:hover, .btn-primary:hover, .btn-blue:hover, .btn-warning:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    color: #15120a;
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
}

.btn-outline-gold, .btn-outline-light {
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--gold);
    font-weight: 600;
}
.btn-outline-gold:hover, .btn-outline-light:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn-secondary {
    background: var(--panel-2);
    border: 1px solid var(--line);
    color: var(--text-muted);
}
.btn-secondary:hover { background: var(--panel); color: var(--text); border-color: var(--line-strong); }

.btn-success { background: #1f6b45; border: 1px solid #2c8d5c; color: #fff; font-weight: 600; }
.btn-success:hover { background: #2c8d5c; color: #fff; }

.btn-contact {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
    color: #15120a;
    font-weight: 700;
    border-radius: 3px;
    padding: 0.5rem 1.3rem;
    border: 1px solid var(--gold-deep);
}
.btn-contact:hover { color: #15120a; box-shadow: 0 4px 18px rgba(212,175,55,0.35); }

/* ---------- Top strip ---------- */
.top-strip {
    background: #000;
    border-bottom: 1px solid var(--line);
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.4px;
    padding: 0.5rem 0;
    position: relative;
    z-index: 1060;
}
.top-strip a { color: var(--text-muted); text-decoration: none; }
.top-strip a:hover { color: var(--gold); }
.top-strip i { color: var(--gold); }

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(8, 8, 8, 0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    z-index: 1050;
    transition: all 0.35s ease;
    padding: 0.55rem 2rem;
}

.navbar-brand img { height: 52px; width: auto; }
.navbar-brand .company-name {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    line-height: 1.15;
    letter-spacing: 1px;
}
.navbar-brand .company-subtitle {
    font-size: 0.58rem;
    letter-spacing: 2.6px;
    color: var(--text-muted);
    font-weight: 600;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text) !important;
    margin: 0 0.15rem;
    padding: 0.5rem 0.9rem !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
    border-bottom-color: var(--gold);
}

.navbar-toggler { border: 1px solid var(--line); padding: 0.25rem 0.6rem; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23d4af37' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ---------- Hero ---------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 40%, rgba(212,175,55,0.09) 0%, transparent 58%),
        linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.75) 100%);
    pointer-events: none;
}
.hero-section .container { position: relative; z-index: 2; }

.hero-crest {
    width: 190px; height: auto;
    margin-bottom: 1.6rem;
    filter: drop-shadow(0 10px 30px rgba(212,175,55,0.28));
}

.hero-eyebrow {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 0.72rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-size: 3.2rem;
    color: var(--text);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}
.hero-section h1 .gold { color: var(--gold); }

.hero-section p.lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 2.2rem;
}

.accred-strip {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 1.6rem 1rem;
    margin-top: 3rem;
    backdrop-filter: blur(4px);
}
.accred-item { position: relative; }
.accred-item + .accred-item::before {
    content: ''; position: absolute; left: 0; top: 12%;
    height: 76%; width: 1px; background: var(--line);
}
.accred-item i { font-size: 1.6rem; color: var(--gold); margin-bottom: 0.5rem; }
.accred-item h6 {
    font-size: 0.74rem; color: var(--text); font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 0.2rem;
}
.accred-item small { font-size: 0.68rem; color: var(--text-muted); }

/* ---------- Sections ---------- */
section { position: relative; }
.section-dark {
    background: rgba(0, 0, 0, 0.35);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

/* ---------- Service cards ---------- */
.card {
    background: linear-gradient(160deg, var(--panel) 0%, var(--ink-2) 100%);
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
    transition: all 0.35s ease;
    overflow: hidden;
    position: relative;
}
.card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
    transition: opacity 0.35s ease;
}
.card:hover {
    transform: translateY(-8px);
    border-color: var(--line-strong);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212,175,55,0.12);
}
.card:hover::before { opacity: 1; }

.card-body { padding: 2.1rem 1.6rem; }
.card i { color: var(--gold); transition: transform 0.35s ease; }
.card:hover i { transform: scale(1.12); }
.card-title {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--text);
    font-size: 1.05rem;
    letter-spacing: 0.6px;
    margin-bottom: 0.7rem;
}
.card-text { color: var(--text-muted); font-size: 0.86rem; line-height: 1.7; }

/* ---------- Accreditation scroll ---------- */
.brand-scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 22px 0;
    margin-top: 2.5rem;
}
.brand-scroll-track { display: inline-block; animation: scroll-left 32s linear infinite; }
.brand-scroll-container:hover .brand-scroll-track { animation-play-state: paused; }

.brand-badge {
    display: inline-flex; flex-direction: column;
    align-items: center; justify-content: center;
    margin: 0 2.6rem; width: 150px; height: 74px;
    opacity: 0.65; transition: all 0.3s ease;
}
.brand-badge i { font-size: 1.75rem; color: var(--gold); margin-bottom: 0.45rem; }
.brand-badge span {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 1.6px;
    color: var(--text-muted); text-transform: uppercase;
}
.brand-badge:hover { opacity: 1; transform: scale(1.06); }
.brand-badge:hover span { color: var(--gold); }

@keyframes scroll-left {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ---------- About ---------- */
.about-list li { color: var(--text-muted); font-size: 0.92rem; }
.about-list i { color: var(--gold); }
.about-list strong { color: var(--text); }

.about-frame {
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 10px;
    background: rgba(0,0,0,0.35);
}
.about-frame img { border-radius: 2px; display: block; width: 100%; }

/* ---------- Forms ---------- */
.form-control, .form-select {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 0.75rem 1rem;
    color: var(--text);
    font-size: 0.92rem;
    transition: all 0.3s ease;
}
.form-control::placeholder { color: #6b6760; }
.form-control:focus, .form-select:focus {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.12);
    color: var(--text);
}
.form-select option { background: var(--panel); color: var(--text); }
.form-label {
    font-weight: 600; font-size: 0.82rem;
    color: var(--text); margin-bottom: 0.45rem;
    letter-spacing: 0.5px;
}
.form-control.is-invalid { border-color: #b5453f; }

.form-panel {
    background: linear-gradient(160deg, var(--panel) 0%, var(--ink-2) 100%);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 2.4rem;
    box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}

.alert-info {
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid var(--line);
    color: var(--text-muted);
    border-radius: 3px;
    font-size: 0.9rem;
}
.alert-info strong, .alert-info i { color: var(--gold); }
.alert-success {
    background: rgba(63, 166, 107, 0.1);
    border: 1px solid rgba(63, 166, 107, 0.4);
    color: #7fd3a3;
    border-radius: 3px;
}

/* ---------- Modals ---------- */
.modal-content {
    background: linear-gradient(160deg, var(--panel) 0%, var(--ink) 100%);
    border: 1px solid var(--line-strong);
    border-radius: 5px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
    color: var(--text);
}
.modal-header { border-bottom: 1px solid var(--line); padding: 1.4rem 2rem; }
.modal-title {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--gold);
    font-size: 1.15rem;
    letter-spacing: 1px;
}
.modal-body { padding: 2rem; }
.modal-body h6 {
    color: var(--gold);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.modal-body ul { padding-left: 1.1rem; }
.modal-body li { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 0.45rem; }
.modal-footer { border-top: 1px solid var(--line); padding: 1.2rem 2rem; }
.btn-close { filter: invert(1) sepia(1) saturate(4) hue-rotate(5deg); opacity: 0.7; }
.btn-close:hover { opacity: 1; }

.carousel-inner { border: 1px solid var(--line); border-radius: 3px; }
.carousel-caption {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 0.4rem 1rem;
    left: 12%; right: 12%; bottom: 12px;
}
.carousel-caption h5 { font-size: 0.85rem; color: var(--gold); letter-spacing: 1px; margin: 0; }

/* ---------- Footer ---------- */
footer {
    background: #000;
    border-top: 1px solid var(--line-strong);
    color: var(--text-muted);
    padding-top: 3.5rem;
}
footer .footer-logo { height: 72px; width: auto; margin-bottom: 1rem; }
footer h5 {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 1.4px;
}
footer .footer-heading {
    color: var(--gold);
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
footer a { color: var(--text-muted); text-decoration: none; font-size: 0.86rem; }
footer a:hover { color: var(--gold); }
footer .contact-item { display: flex; align-items: flex-start; font-size: 0.88rem; }
footer .contact-item i { width: 22px; margin-top: 3px; color: var(--gold); }
footer hr { border-color: var(--line); opacity: 1; }
footer .small-print { font-size: 0.76rem; color: #6b6760; }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
    position: fixed; bottom: 25px; right: 25px;
    width: 54px; height: 54px;
    background: #1f6b45;
    border: 1px solid var(--line-strong);
    color: var(--gold-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    z-index: 1040; text-decoration: none;
    transition: transform 0.25s ease;
}
.float-wa:hover { transform: scale(1.1); color: #fff; }

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up { animation: fadeInUp 0.65s ease forwards; }

html { scroll-behavior: smooth; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .navbar { padding: 0.5rem 1rem; }
    .navbar-collapse { background: rgba(8,8,8,0.98); border-top: 1px solid var(--line); margin-top: 0.6rem; padding: 0.8rem; }
    .hero-section h1 { font-size: 2.2rem; }
    .hero-crest { width: 140px; }
    .section-title { font-size: 1.7rem; }
    .accred-item + .accred-item::before { display: none; }
    .modal-dialog { max-width: 95% !important; }
    .form-panel { padding: 1.5rem; }
}

@media (max-width: 576px) {
    .hero-section { padding-top: 120px; }
    .hero-section h1 { font-size: 1.8rem; }
    .brand-badge { width: 118px; margin: 0 1rem; }
    .brand-scroll-track { animation-duration: 22s; }
}

/* ---------- Service photography ---------- */
/* Card banner */
.card-shot {
    position: relative;
    height: 150px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.card-shot img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(35%) contrast(1.06) brightness(0.82) sepia(0.12);
    transition: transform 0.6s ease, filter 0.45s ease;
}
.card-shot::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(10,10,10,0.85) 100%);
    pointer-events: none;
}
.card:hover .card-shot img {
    transform: scale(1.07);
    filter: grayscale(0%) contrast(1.08) brightness(0.95) sepia(0.05);
}
/* pull the icon up so it sits over the photo edge */
.card-shot + .card-body { padding-top: 1.5rem; }

/* Modal photo */
.service-shot {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 3px;
    overflow: hidden;
    background: #000;
}
.service-shot img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: contrast(1.04) brightness(0.92) sepia(0.08);
}
.service-shot::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}
.shot-caption {
    position: absolute;
    left: 14px; bottom: 12px;
    z-index: 2;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(0,0,0,0.9);
}

@media (max-width: 991px) {
    .card-shot { height: 130px; }
    .service-shot img { height: 220px; }
}

/* ---------- Direct call block ---------- */
.direct-line {
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 1.2rem 1rem;
    background: rgba(0, 0, 0, 0.35);
}
.direct-label {
    display: block;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}
.direct-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.direct-numbers a {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.25s ease;
}
.direct-numbers a:hover { color: var(--gold-light); }
.direct-numbers .divider { color: var(--line-strong); font-size: 0.6rem; }

@media (max-width: 576px) {
    .direct-numbers { flex-direction: column; gap: 0.5rem; }
    .direct-numbers .divider { display: none; }
    .direct-numbers a { font-size: 0.95rem; }
}

/* ---------- Eyebrow rule (Irongate style) ---------- */
.eyebrow-rule {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
}
.eyebrow-rule span { width: 34px; height: 2px; background: var(--gold); display: inline-block; }

/* ---------- Coverage ---------- */
.coverage-head {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2.5rem; line-height: 1.15;
    color: var(--text); text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 1.2rem;
}
.coverage-list { margin-top: 1.8rem; }
.cov-item {
    position: relative; padding-left: 18px;
    font-size: 0.92rem; color: var(--text-muted);
    margin-bottom: 0.75rem; letter-spacing: 0.3px;
}
.cov-item::before {
    content: '\25AA'; position: absolute; left: 0;
    color: var(--gold); font-size: 0.7rem;
}

.clock-panel {
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(0,0,0,0.45);
    padding: 3.2rem 1.5rem;
    text-align: center;
    box-shadow: inset 0 0 60px rgba(212,175,55,0.05);
}
.clock-time {
    font-family: 'Courier New', monospace;
    font-size: 3.6rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: 6px; line-height: 1;
    text-shadow: 0 0 28px rgba(212,175,55,0.3);
}
.clock-label {
    margin-top: 1.1rem;
    font-size: 0.7rem; letter-spacing: 2.6px;
    text-transform: uppercase; color: var(--text-muted);
}

/* ---------- Reviews ---------- */
.review-card {
    background: linear-gradient(160deg, var(--panel) 0%, var(--ink-2) 100%);
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 1.9rem;
    height: 100%;
    position: relative;
    transition: all 0.35s ease;
}
.review-card:hover { border-color: var(--line-strong); border-left-color: var(--gold); transform: translateY(-5px); }
.review-card::before {
    content: '\201C';
    position: absolute; top: 6px; right: 18px;
    font-family: Georgia, serif; font-size: 4.5rem;
    color: var(--gold); opacity: 0.14; line-height: 1;
}
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 0.9rem; }
.review-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; font-style: italic; margin-bottom: 1.2rem; }
.review-author { border-top: 1px solid var(--line); padding-top: 0.9rem; }
.review-name {
    display: block; font-family: 'Cinzel', Georgia, serif;
    color: var(--gold); font-size: 0.9rem; letter-spacing: 0.8px;
}
.review-role { display: block; font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }

.client-strip {
    margin-top: 3.5rem; padding: 2rem 1rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(0,0,0,0.3);
}
.client-strip-label {
    text-align: center; font-family: 'Cinzel', Georgia, serif;
    font-size: 0.72rem; letter-spacing: 3.5px;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 1.6rem;
}
.client-logos {
    display: flex; align-items: center; justify-content: center;
    gap: 2.5rem; flex-wrap: wrap;
}
.client-logo {
    min-width: 130px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    border: 1px dashed var(--line);
    border-radius: 3px;
    color: #57534c; font-size: 0.72rem;
    letter-spacing: 1.4px; text-transform: uppercase;
    padding: 0 1rem;
}

/* ---------- Careers ---------- */
.role-card {
    background: linear-gradient(160deg, var(--panel) 0%, var(--ink-2) 100%);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 1.9rem 1.4rem;
    height: 100%;
    text-align: center;
    transition: all 0.35s ease;
}
.role-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.role-card i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.role-card h5 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1rem; color: var(--text);
    letter-spacing: 0.6px; margin-bottom: 0.7rem;
}
.role-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.role-req {
    display: inline-block;
    font-size: 0.66rem; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gold);
    border: 1px solid var(--line); border-radius: 2px;
    padding: 4px 10px;
}

.careers-sub {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--gold); font-size: 1.05rem;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.apply-panel {
    background: linear-gradient(160deg, var(--panel) 0%, var(--ink-2) 100%);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}
.apply-panel h5 {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--gold); font-size: 1.1rem;
    letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.apply-panel p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 1.3rem; }
.apply-note {
    font-size: 0.72rem !important; color: #6b6760 !important;
    margin: 1.1rem 0 0 !important; line-height: 1.6;
}

@media (max-width: 991px) {
    .coverage-head { font-size: 1.7rem; }
    .clock-time { font-size: 2.4rem; letter-spacing: 3px; }
    .clock-panel { padding: 2.2rem 1rem; }
    .client-logos { gap: 1.2rem; }
    .client-logo { min-width: 105px; height: 46px; font-size: 0.65rem; }
}

/* ---------- Big condensed section heading (Irongate style) ---------- */
.big-head {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2.6rem;
    line-height: 1.15;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    max-width: 900px;
}

/* ---------- How We Work ---------- */
.step-block {
    border-top: 1px solid var(--line-strong);
    padding-top: 1.6rem;
    height: 100%;
}
.step-num {
    display: block;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.4rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    text-stroke: 1px var(--gold);
    opacity: 0.85;
    transition: all 0.4s ease;
}
.step-block:hover .step-num {
    color: var(--gold);
    -webkit-text-stroke: 1px var(--gold);
    opacity: 1;
}
.step-block h5 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.95rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.8rem;
}
.step-block p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ---------- Sectors grid ---------- */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border: 1px solid var(--line);
    background: var(--line);
    gap: 1px;
}
.sector-cell {
    background: rgba(18, 18, 18, 0.96);
    padding: 1.9rem 1rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
}
.sector-cell:hover {
    background: rgba(212, 175, 55, 0.07);
    color: var(--gold);
}

@media (max-width: 991px) {
    .big-head { font-size: 1.7rem; }
    .step-num { font-size: 2.6rem; }
    .sector-grid { grid-template-columns: repeat(2, 1fr); }
    .sector-cell { padding: 1.3rem 0.7rem; font-size: 0.72rem; min-height: 74px; }
}
@media (max-width: 480px) {
    .sector-grid { grid-template-columns: 1fr; }
}

/* Tighter nav now there are more items */
@media (min-width: 992px) {
    .navbar-nav .nav-link { font-size: 0.74rem; padding: 0.5rem 0.7rem !important; letter-spacing: 1px; }
    .navbar { padding: 0.55rem 1.5rem; }
}
@media (min-width: 1200px) {
    .navbar-nav .nav-link { font-size: 0.78rem; padding: 0.5rem 0.85rem !important; }
}

/* ---------- Six Rules ---------- */
.rules-intro {
    max-width: 720px;
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-top: 1.4rem;
    line-height: 1.85;
}
.rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    background: var(--line);
    gap: 1px;
}
.rule-cell {
    background: rgba(14, 14, 14, 0.97);
    padding: 2.1rem 2rem;
    display: flex;
    gap: 1.4rem;
    transition: background 0.3s ease;
}
.rule-cell:hover { background: rgba(212, 175, 55, 0.045); }
.rule-num {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.75;
    flex-shrink: 0;
    padding-top: 2px;
    letter-spacing: 1px;
}
.rule-cell h5 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 0.92rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 0.6rem;
}
.rule-cell p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ---------- Vision / Mission / Promise ---------- */
.vmp-card {
    background: rgba(22, 22, 22, 0.9);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 1.4rem 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.vmp-card:last-child { margin-bottom: 0; }
.vmp-card:hover { border-color: var(--line-strong); }
.vmp-card h6 {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.vmp-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ---------- Pull quote ---------- */
.pull-quote { max-width: 940px; margin-bottom: 3rem; }
.pull-quote p {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.75rem;
    line-height: 1.45;
    color: var(--text);
    margin-bottom: 1.2rem;
}
.pq-gold { color: var(--gold); }
.pq-attrib {
    font-family: 'Courier New', monospace;
    font-size: 0.76rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---------- Review grid ---------- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    background: var(--line);
    gap: 1px;
}
.review-cell {
    background: rgba(14, 14, 14, 0.97);
    padding: 2.1rem 1.9rem;
    display: flex;
    flex-direction: column;
    transition: background 0.3s ease;
}
.review-cell:hover { background: rgba(212, 175, 55, 0.04); }
.review-cell .review-stars {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 3px;
    margin-bottom: 1.1rem;
}
.review-cell .review-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.85;
    font-style: normal;
    margin-bottom: 1.6rem;
    flex-grow: 1;
}
.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
    flex-wrap: wrap;
}
.review-role {
    font-family: 'Courier New', monospace;
    font-size: 0.76rem;
    color: var(--text-muted);
    letter-spacing: 0.6px;
}
.review-sector {
    font-family: 'Courier New', monospace;
    font-size: 0.76rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.6px;
}
.review-note {
    margin-top: 1.6rem;
    font-size: 0.75rem;
    color: #6b6760;
    line-height: 1.7;
    max-width: 780px;
}

@media (max-width: 991px) {
    .rules-grid { grid-template-columns: 1fr; }
    .rule-cell { padding: 1.6rem 1.3rem; }
    .review-grid { grid-template-columns: 1fr; }
    .pull-quote p { font-size: 1.2rem; }
    .review-meta { flex-direction: column; gap: 0.2rem; }
}

/* ---------- Stats band ---------- */
.stats-band-outer {
    padding: 4rem 0;
    background:
        linear-gradient(180deg, rgba(212,175,55,0.05) 0%, transparent 60%),
        rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}
.stat-col { position: relative; }
@media (min-width: 992px) {
    .stat-col + .stat-col::before {
        content: ''; position: absolute; left: 0; top: 18%;
        height: 64%; width: 1px; background: var(--line);
    }
}
.stat-figure {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212,175,55,0.25);
    margin-bottom: 0.6rem;
}
.stat-cap {
    font-size: 0.72rem;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .stats-band-outer { padding: 2.6rem 0; }
    .stat-figure { font-size: 2.2rem; }
    .stat-cap { font-size: 0.64rem; letter-spacing: 1.4px; }
}

/* ---------- 24/7 line button in navbar ---------- */
.btn-247 {
    background: linear-gradient(135deg, #8b1a1a 0%, #5c0f0f 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 0.55rem 1.1rem;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.btn-247:hover {
    background: linear-gradient(135deg, #a32020 0%, #7a1414 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(139, 26, 26, 0.5);
}
.btn-247 .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #ff5a5a; margin-right: 8px;
    box-shadow: 0 0 8px #ff5a5a;
    animation: pulse247 2s ease-in-out infinite;
}
@keyframes pulse247 {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.82); }
}

@media (max-width: 991px) {
    .btn-247 { width: 100%; justify-content: center; margin-top: 0.5rem; }
}

/* ---------- Leather on panels ---------- */
/* Cards, modals and panels pick up the same hide so nothing reads as flat */
/* Panels stay solid and dark so text is always readable. The hide shows
   through the page behind them; a faint grain sits on top at low opacity. */
.card,
.modal-content,
.form-panel,
.apply-panel,
.vmp-card,
.review-cell,
.rule-cell,
.sector-cell,
.clock-panel {
    position: relative;
    isolation: isolate;
}

.card::after,
.form-panel::after,
.apply-panel::after,
.vmp-card::after,
.review-cell::after,
.rule-cell::after,
.sector-cell::after,
.clock-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/leather-soft.png');
    background-size: 300px 300px;
    background-repeat: repeat;
    opacity: 0.10;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

/* Content sits above the grain layer */
.card > *,
.form-panel > *,
.apply-panel > *,
.vmp-card > *,
.review-cell > *,
.rule-cell > *,
.sector-cell > *,
.clock-panel > * { position: relative; z-index: 1; }

/* Keep the grain subtle on the darkest panels */
.rule-cell,
.sector-cell,
.review-cell {
    background-color: rgba(16, 15, 15, 0.97);
}

/* Section bands: solid dark base, grain applied as a faint overlay */
.section-dark {
    background-color: #141110;
    position: relative;
    isolation: isolate;
}

/* Hero: solid dark base, grain as an overlay */
.hero-section {
    background-color: #121010;
}

/* Footer: darkest base */
footer {
    background-color: #0d0b0a;
    position: relative;
    isolation: isolate;
}

/* Stitched edge on the main bands — a leather-goods detail */
.section-dark::before,
.stats-band-outer::before {
    content: '';
    position: absolute;
    top: 9px; left: 0; right: 0;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(212,175,55,0.30) 0px,
        rgba(212,175,55,0.30) 7px,
        transparent 7px,
        transparent 15px
    );
    pointer-events: none;
}
.stats-band-outer { position: relative; }

/* ---------- Crest sits on the hide, not on a plate ---------- */
/* The PNG is feathered to a circle, so its rope border meets the page
   leather directly. A soft drop shadow and a faint glow do the rest. */
.hero-crest {
    filter:
        drop-shadow(0 3px 5px rgba(0,0,0,0.9))
        drop-shadow(0 14px 34px rgba(0,0,0,0.75))
        drop-shadow(0 0 44px rgba(212,175,55,0.22));
    mix-blend-mode: normal;
}

/* Warm pool of light under the crest, as if the hide catches it */
.hero-crest-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 1.6rem;
}
.hero-crest-wrap::before {
    content: '';
    position: absolute;
    left: 50%; top: 50%;
    width: 150%; height: 150%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
        rgba(212,175,55,0.16) 0%,
        rgba(212,175,55,0.06) 42%,
        transparent 68%);
    pointer-events: none;
    z-index: 0;
}
.hero-crest-wrap .hero-crest { position: relative; z-index: 1; margin-bottom: 0; }

.navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.85));
}

footer .footer-logo {
    filter:
        drop-shadow(0 2px 4px rgba(0,0,0,0.9))
        drop-shadow(0 0 26px rgba(212,175,55,0.16));
}


/* ---------- Faint grain on the large bands ---------- */
.section-dark::after,
.hero-section::after,
footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/leather-soft.png');
    background-size: 300px 300px;
    background-repeat: repeat;
    opacity: 0.13;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}
.section-dark > *,
.hero-section > *,
footer > * { position: relative; z-index: 1; }


/* ---------- Header stacking fix ----------
   The contact strip and the navbar are both pinned to the top on desktop,
   strip first, navbar directly underneath it. */
.top-strip {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    height: 38px;
    padding: 0 !important;
}
.top-strip .container { height: 38px; }
@media (min-width: 992px) {
    .navbar { top: 38px; }
}

/* Keep nav labels and the two header buttons on one line */
.navbar-nav .nav-link { white-space: nowrap; }
@media (min-width: 992px) {
    .nav-cta { flex-wrap: nowrap !important; }
    .nav-cta .btn-contact, .nav-cta .btn-247 { white-space: nowrap; }
}
@media (min-width: 992px) and (max-width: 1399px) {
    .navbar-brand .company-name { font-size: 0.95rem; }
    .navbar-brand img { height: 44px; }
    .navbar-nav .nav-link { font-size: 0.68rem; padding: 0.5rem 0.5rem !important; letter-spacing: 0.6px; }
    .nav-cta .btn-contact { padding: 0.45rem 0.8rem; font-size: 0.8rem; }
    .nav-cta .btn-247 { padding: 0.45rem 0.7rem; font-size: 0.66rem; }
}

/* Let the header use the full width so everything fits */
@media (min-width: 992px) {
    .navbar > .container { max-width: 100%; padding-left: 1.5rem; padding-right: 1.5rem; }
    .navbar-nav .nav-link { font-size: 0.72rem; padding: 0.5rem 0.6rem !important; letter-spacing: 0.8px; }
}
/* Narrow laptops/tablets: the phone numbers are already in the strip above,
   so drop the 24/7 button rather than squeeze the menu */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-cta .btn-247 { display: none; }
    .navbar-nav .nav-link { font-size: 0.64rem; padding: 0.5rem 0.4rem !important; letter-spacing: 0.4px; }
    .navbar-brand .company-subtitle { display: none; }
}
