/* =============================================
   MJP SECURITY — STYLESHEET
   Theme: Black & Yellow | Security | Cape Town
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow:      #f5c400;
    --yellow-dark: #c9a000;
    --black:       #0d0d0d;
    --dark:        #141414;
    --dark-2:      #1c1c1c;
    --dark-3:      #242424;
    --white:       #ffffff;
    --grey:        #aaaaaa;
    --light-grey:  #e8e8e8;

    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body:    'Barlow', sans-serif;

    --nav-height: 80px;
    --transition: 0.3s ease;
    --radius: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- UTILITY ---- */
.btn-primary {
    display: inline-block;
    background-color: var(--yellow);
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: var(--yellow-dark);
    transform: translateY(-2px);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}

.title-bar {
    width: 60px;
    height: 4px;
    background-color: var(--yellow);
    margin-bottom: 28px;
}

.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-badge {
    width: 50px;
    height: 50px;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    flex-shrink: 0;
}

.logo-initials {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    color: var(--black);
    letter-spacing: 1px;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: var(--white);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    color: var(--light-grey);
    padding: 8px 12px;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow);
}

/* Nav right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-cta {
    padding: 10px 22px;
    font-size: 0.82rem;
}

.nav-social {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.nav-social:hover {
    background-color: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    background-color: rgba(13,13,13,0.98);
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(245,196,0,0.2);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1.5px;
    color: var(--light-grey);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color var(--transition);
}

.mobile-link:hover { color: var(--yellow); }

.mobile-cta {
    margin-top: 12px;
    background-color: var(--yellow);
    color: var(--black);
    text-align: center;
    padding: 14px;
    border: none;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

/* Dark geometric background — mimics security/tactical feel */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(30,30,30,0.7) 0%, transparent 60%),
        linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 40%, #111 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 30px,
            rgba(245,196,0,0.03) 30px,
            rgba(245,196,0,0.03) 31px
        );
    z-index: 1;
}

/* Animated accent line */
.hero-bg::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
    z-index: 2;
    animation: lineSlide 3s ease-in-out infinite;
}

@keyframes lineSlide {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero-eyebrow {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 5px;
    color: var(--grey);
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--light-grey);
    margin-bottom: 36px;
    letter-spacing: 1px;
}

.hero-btn {
    font-size: 0.9rem;
    padding: 16px 40px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--yellow);
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SERVICES STRIP
   ============================================= */
.services-view-all {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.services-strip {
    background-color: var(--dark-2);
    padding: 70px 0;
    border-top: 3px solid var(--yellow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2px;
}

.service-card {
    background-color: var(--dark-3);
    padding: 40px 28px;
    transition: background-color var(--transition), transform var(--transition);
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-card:hover {
    background-color: #2a2a2a;
    border-bottom-color: var(--yellow);
    transform: translateY(-4px);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--black);
    flex-shrink: 0;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.7;
    flex: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--yellow);
    transition: gap var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.service-link:hover { color: var(--yellow-dark); }

/* =============================================
   ABOUT
   ============================================= */
.about {
    background-color: var(--dark);
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
}

.about-block p {
    color: var(--grey);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Image placeholder */
.about-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.about-image-inner {
    position: relative;
    width: 200px;
    height: 200px;
    background-color: var(--dark-3);
    border: 2px solid rgba(245,196,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-shield-bg {
    font-size: 8rem;
    color: rgba(245,196,0,0.08);
}

.about-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background-color: var(--yellow);
    color: var(--black);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}

.about-badge i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

/* Commitment pillars */
.commitment-pillars {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background-color: var(--dark-3);
    padding: 20px 24px;
    flex: 1;
    min-width: 80px;
}

.pillar i {
    color: var(--yellow);
    font-size: 1.5rem;
}

.pillar span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
    background-color: var(--black);
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 20px;
}

.why-us-card {
    background-color: var(--dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 32px 26px;
    transition: border-color var(--transition), transform var(--transition);
}

.why-us-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.why-us-card i {
    color: var(--yellow);
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: block;
}

.why-us-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    color: var(--white);
}

.why-us-card p {
    color: var(--grey);
    font-size: 0.88rem;
    line-height: 1.7;
}

.why-intro {
    color: var(--grey);
    margin-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-bottom: 28px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--light-grey);
}

.features-list li i {
    color: var(--yellow);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.why-tagline {
    color: var(--grey);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.7;
    border-left: 3px solid var(--yellow);
    padding-left: 16px;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: rgba(255,255,255,0.08);
}

.stat-card {
    background-color: var(--black);
    padding: 44px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    transition: background-color var(--transition);
}

.stat-card:hover {
    background-color: var(--dark-2);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}

.stat-lbl {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--grey);
    text-transform: uppercase;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
    background-color: var(--dark-2);
    padding: 110px 0;
    border-top: 3px solid var(--yellow);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: start;
}

.contact-info p {
    color: var(--grey);
    margin-bottom: 32px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition);
}

a.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 2px;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.social-links p {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--grey);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1877f2;
    color: white;
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: opacity var(--transition);
}

.social-btn:hover { opacity: 0.85; }

/* Form */
.contact-form-wrap p {
    color: var(--grey);
}

form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

input, textarea {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 14px 16px;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
}

input:focus, textarea:focus {
    border-color: var(--yellow);
}

input::placeholder, textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

textarea { resize: vertical; min-height: 100px; }

.submit-btn {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    padding: 16px 40px;
}

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    color: var(--yellow);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 12px 0;
}

.form-success.visible {
    display: flex;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--black);
    padding: 48px 0 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px 60px;
    align-items: center;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-tagline {
    font-size: 0.78rem;
    color: var(--grey);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: center;
}

.footer-nav a {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--grey);
    text-transform: uppercase;
    transition: color var(--transition);
}

.footer-nav a:hover { color: var(--yellow); }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
}

.footer-contact a,
.footer-contact span {
    font-size: 0.85rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    transition: color var(--transition);
}

.footer-contact a:hover { color: var(--yellow); }

.footer-contact i {
    color: var(--yellow);
    font-size: 0.8rem;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.5px;
}

.footer-credit a {
    color: rgba(255,255,255,0.45);
    text-decoration: underline;
    text-decoration-color: rgba(245,196,0,0.4);
    transition: color var(--transition);
}

.footer-credit a:hover { color: var(--yellow); }

/* =============================================
   SCROLL ANIMATION
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-wrap { display: none; }

    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
        text-align: center;
    }

    .footer-contact a,
    .footer-contact span {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .nav-links, .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 700px) {
    :root { --nav-height: 64px; }

    .hero { padding: 0 5%; }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        gap: 8px 16px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 3rem; }

    .commitment-pillars { flex-direction: column; }

    .stat-card { padding: 28px 16px; }
}

/* =============================================
   HERO IMAGE + OUTLINE BUTTON + MULTI-PAGE ADDITIONS
   ============================================= */
.hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg img.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: 0;
}

.hero-bg::before { display: none; }
.hero-pattern { z-index: 1; }
.hero-bg img.hero-img { object-position: right center; }
.hero-overlay {
    z-index: 2;
    background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.1) 100%),
                linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 35%);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    padding: 14px 32px;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition), transform var(--transition);
    text-transform: uppercase;
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-2px);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section-heading-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.title-bar.center { margin-left: auto; margin-right: auto; }

.section-sub {
    color: var(--grey);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* Mobile submenu links */
.mobile-sublink {
    padding-left: 16px !important;
    font-size: 0.85rem !important;
    color: var(--grey) !important;
    border-bottom: none !important;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 1500;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 26px rgba(0,0,0,0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

@media (max-width: 480px) {
    .whatsapp-fab {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
        bottom: 16px;
        right: 16px;
    }
}

/* =============================================
   PAGE HERO (interior pages)
   ============================================= */
.page-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: calc(var(--nav-height) + 60px) 0 60px;
    border-bottom: 3px solid var(--yellow);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.page-hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.page-hero-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.05;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.page-lead {
    color: var(--grey);
    max-width: 640px;
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 12px;
}

.breadcrumb-link { color: var(--grey); transition: color var(--transition); }
.breadcrumb-link:hover { color: var(--yellow); }

/* =============================================
   CTA STRIP
   ============================================= */
.cta-strip {
    background-color: var(--dark-3);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-inner .section-title { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 8px; }
.cta-inner p { color: var(--grey); font-size: 0.95rem; }

.cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   SERVICES OVERVIEW PAGE — photo cards
   ============================================= */
.services-strip-page { border-top: none; padding-top: 60px; }

.service-card-photo {
    padding: 0;
    overflow: hidden;
}

.service-card-photo picture,
.service-card-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-card-photo .service-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* =============================================
   SERVICE DETAIL PAGE
   ============================================= */
.service-hero {
    position: relative;
    min-height: 46vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 3px solid var(--yellow);
}

.service-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.service-hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.service-hero-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
    padding-top: calc(var(--nav-height) + 40px);
}

.service-detail { background-color: var(--dark); padding: 80px 0; }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

.service-detail-intro {
    color: var(--light-grey);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 32px;
}

.service-detail-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.service-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.service-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--light-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-points li i {
    color: var(--yellow);
    margin-top: 3px;
    flex-shrink: 0;
}

.service-detail-closing {
    color: var(--grey);
    font-style: italic;
    border-left: 3px solid var(--yellow);
    padding-left: 16px;
    margin-bottom: 24px;
}

.sidebar-card {
    background-color: var(--dark-3);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 8px;
}

.sidebar-list { display: flex; flex-direction: column; gap: 4px; }

.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    color: var(--grey);
    font-size: 0.9rem;
    transition: color var(--transition), background-color var(--transition);
}

.sidebar-list a i { color: var(--yellow); width: 16px; }

.sidebar-list a:hover,
.sidebar-list a.active {
    color: var(--yellow);
    background-color: rgba(245,196,0,0.06);
}

.sidebar-cta p { color: var(--grey); font-size: 0.88rem; margin-bottom: 16px; }

.sidebar-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 0.82rem;
    padding: 12px 20px;
}

/* =============================================
   CONTACT FORM ADDITIONS
   ============================================= */
select {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 14px 16px;
    outline: none;
    width: 100%;
    transition: border-color var(--transition);
}

select:focus { border-color: var(--yellow); }

.form-error {
    display: none;
    align-items: center;
    gap: 10px;
    color: #e74c3c;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 12px 0;
}

.form-error.visible { display: flex; }

.map-section { line-height: 0; background-color: var(--dark-2); }
.map-section iframe { filter: grayscale(0.3) contrast(1.1); }

.not-found { text-align: center; min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }
.not-found .title-bar { margin-left: auto; margin-right: auto; }

/* =============================================
   RESPONSIVE — MULTI-PAGE ADDITIONS
   ============================================= */
@media (max-width: 1100px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 700px) {
    .service-card-photo picture,
    .service-card-photo img { height: 170px; }

    .page-hero { padding: calc(var(--nav-height) + 40px) 0 40px; }
}
