/* ==========================================================================
   ZAM FM LTD — Custom Stylesheet
   ========================================================================== */

:root {
    --zam-red: #D02028;
    --zam-red-dark: #a5171d;
    --zam-black: #000000;
    --zam-white: #ffffff;
    --zam-gray: #f5f5f5;
    --zam-font: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--zam-font);
    color: #222;
    overflow-x: hidden;
    background: var(--zam-white);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ---------- Section Heading ---------- */
.section-heading {
    color: var(--zam-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.help-text {
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
}

/* ---------- Buttons ---------- */
.zam-btn-red {
    background-color: var(--zam-red);
    color: var(--zam-white);
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.zam-btn-red:hover {
    background-color: var(--zam-red-dark);
    color: var(--zam-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   FIXED SOCIAL ICONS
   ========================================================================== */
.fixed-social {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--zam-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: filter 0.25s ease, transform 0.25s ease;
}

.social-circle.social-facebook {
    background: #1877F2;
}

.social-circle.social-linkedin {
    background: #0A66C2;
}

.social-circle.social-instagram {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-circle:hover {
    filter: brightness(1.12);
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .fixed-social {
        left: 8px;
    }

    .social-circle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.zam-navbar {
    background-color: rgba(0, 0, 0, 1);
    padding-top: 14px;
    padding-bottom: 14px;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
    z-index: 1050;
}

.zam-navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.1);
    padding-top: 8px;
    padding-bottom: 8px;
}

.zam-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 53px;
    transition: opacity 0.3s ease;
}

.zam-nav-center {
    gap: 4px;
}

.zam-navbar .nav-link {
    color: var(--zam-white);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 0.6rem 0.85rem !important;
    transition: color 0.3s ease;
}

.zam-navbar.scrolled .nav-link {
    color: #1a1a1a;
}

.zam-navbar .nav-link:hover,
.zam-navbar .nav-link:focus,
.zam-navbar .nav-link.active {
    color: var(--zam-red);
}

.zam-search-btn {
    color: var(--zam-white);
    background: transparent;
    border: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.zam-navbar.scrolled .zam-search-btn {
    color: #1a1a1a;
}

.zam-search-btn:hover {
    color: var(--zam-red);
}

/* Dropdowns — always legible regardless of navbar state */
.zam-dropdown .dropdown-menu {
    background-color: var(--zam-white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    width: 260px;
}

.zam-dropdown .dropdown-item {
    color: #222 !important;
    font-size: 0.85rem;
    padding: 0.55rem 1.2rem;
    font-weight: 500;
    white-space: normal;
}

.zam-dropdown .dropdown-item i {
    color: var(--zam-red);
    font-size: 0.85rem;
    margin-right: 8px;
}

.zam-dropdown .dropdown-item:hover,
.zam-dropdown .dropdown-item:focus {
    background-color: var(--zam-gray);
    color: var(--zam-red) !important;
}

@media (min-width: 992px) {
    .zam-dropdown:hover>.dropdown-menu {
        display: block;
        animation: dropFade 0.2s ease;
    }
}

/* ---------- Nested submenu (e.g. Policies inside About Us) ---------- */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-item.dropdown-toggle::after {
    transform: rotate(-90deg);
    margin-left: auto;
}

.dropdown-submenu>.dropdown-item.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .dropdown-submenu>.dropdown-menu {
        top: -0.5rem;
        left: 100%;
        margin-left: 2px;
    }
}

@media (max-width: 991px) {
    .dropdown-submenu>.dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 0.75rem;
        display: none;
    }

    .dropdown-submenu.show>.dropdown-menu {
        display: block;
    }
}

.mobile-submenu-label {
    color: #888;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.4rem;
}

.mobile-submenu-link {
    padding-left: 1rem !important;
    font-size: 0.82rem !important;
}

@keyframes dropFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-toggler {
    border: none;
    color: var(--zam-white);
    z-index: 1051;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.zam-navbar.scrolled .navbar-toggler-icon {
    filter: invert(0);
}

/* ---------- Mobile Offcanvas ---------- */
.zam-offcanvas {
    width: 300px;
}

#mobileAccordion {
    display: flex;
    flex-direction: column;
}

.zam-offcanvas .accordion-item {
    border: none;
    background: transparent;
}

.zam-offcanvas .accordion-button {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #111;
    padding: 0.75rem 0.25rem;
    background: transparent;
    border-bottom: 1px solid #eee;
    border-radius: 0;
}

.zam-offcanvas .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--zam-red);
    box-shadow: none;
}

.zam-offcanvas .accordion-button:focus {
    box-shadow: none;
}

.zam-offcanvas .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.zam-offcanvas .accordion-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.75rem 0.25rem;
}

.zam-offcanvas .accordion-body a {
    color: #333;
    font-size: 0.85rem;
    padding: 0.2rem 0;
}

.zam-offcanvas .accordion-body a i {
    color: var(--zam-red);
    font-size: 0.8rem;
    margin-right: 6px;
}

.zam-offcanvas .accordion-body a:hover {
    color: var(--zam-red);
}

.mobile-simple-links {
    display: flex;
    flex-direction: column;
}

.mobile-link {
    display: block;
    color: #111;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid #eee;
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 480px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    width: 100%;
}

.hero-content h1 {
    color: var(--zam-white);
    font-weight: 600;
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    line-height: 1.15;
    letter-spacing: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.25rem;
}

.hero-subtext {
    color: var(--zam-white);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    max-width: 650px;
    margin-bottom: 2rem;
    opacity: 0.92;
}

#heroCycleWord {
    color: var(--zam-red);
}

.hero-cycle-cursor {
    display: inline-block;
    color: var(--zam-red);
    animation: heroCursorBlink 0.8s steps(1) infinite;
}

@keyframes heroCursorBlink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

.hero-btn {
    display: inline-block;
    color: var(--zam-white);
    /* border: 1.5px solid var(--zam-white); */
    border-radius: 50px;
    padding: 0.85rem 2.25rem;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: background-color 0.25s ease, color 0.25s ease;
    background: var(--zam-red);
}

.hero-btn:hover {
    background-color: var(--zam-white);
    color: var(--zam-black);
}

@media (max-width: 767px) {
    .hero-content {
        text-align: center;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ==========================================================================
   TRUST / CREDIBILITY BAR
   ========================================================================== */
.trust-bar {
    background: var(--zam-black);
    padding: 1.1rem 0;
}

.trust-bar-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 2.5rem;
    margin: 0;
    padding: 0;
}

.trust-bar-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zam-white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.trust-bar-list li i {
    color: var(--zam-red);
    font-size: 1rem;
}

@media (max-width: 767px) {
    .trust-bar-list {
        justify-content: flex-start;
        gap: 0.6rem 1.5rem;
    }

    .trust-bar-list li {
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
    background: linear-gradient(135deg, #0a0f0d, #000000);
    padding: 2.75rem 0;
}

.stats-bar-row {
    display: flex;
    flex-wrap: wrap;
}

.stats-bar-item {
    flex: 1 1 0;
    min-width: 140px;
    text-align: left;
    padding: 0 1.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-bar-item:first-child {
    border-left: none;
    padding-left: 0.5rem;
}

.stats-bar-number {
    display: block;
    color: var(--zam-white);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.stats-bar-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .stats-bar-item {
        flex: 1 1 45%;
        min-width: 45%;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .stats-bar-item:nth-child(odd) {
        border-left: none;
        padding-left: 0.5rem;
    }

    .stats-bar-item:nth-child(1),
    .stats-bar-item:nth-child(2) {
        margin-bottom: 1.5rem;
    }
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-choose-section {
    background: var(--zam-gray);
}

.why-choose-eyebrow {
    display: block;
    color: var(--zam-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    text-decoration: underline;
    margin-bottom: 0.5rem;
}

.why-choose-title {
    color: #111;
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    letter-spacing: 0.5px;
    margin: 0;
}

.why-choose-subtext {
    color: #666;
    font-size: 0.95rem;
    max-width: 640px;
    margin: 0.75rem 0 0;
}

.why-card {
    height: 100%;
    text-align: center;
    background: var(--zam-white);
    border-radius: 10px;
    padding: 2.5rem 1.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.why-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--zam-red);
    color: var(--zam-white);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.why-card h3 {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}

.why-card p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.why-choose-panel {
    display: flex;
    align-items: stretch;
    background: var(--zam-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.why-choose-sidebar {
    flex: 0 0 115px;
    margin-right: .5rem;
    background: var(--zam-red);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem 0;
    overflow: hidden;
}

.why-choose-sidebar-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--zam-white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.why-choose-img {
    flex: 0 0 32%;
    max-width: 425px;
}

.why-choose-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-content {
    flex: 1;
    padding: 2.5rem 3rem;
}

.why-choose-content h3 {
    font-weight: 800;
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 1.25rem;
    line-height: 1.35;
}

.why-choose-content p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.why-choose-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.why-choose-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.1rem;
}

.why-choose-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 9px;
    height: 9px;
    background: var(--zam-red);
}

.why-choose-list li strong {
    display: block;
    color: #111;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.why-choose-list li span {
    display: block;
    color: #666;
    font-size: 0.88rem;
}

@media (max-width: 991px) {
    .why-choose-panel {
        flex-wrap: wrap;
    }

    .why-choose-sidebar {
        flex: 0 0 100%;
        writing-mode: initial;
        padding: 1rem;
    }

    .why-choose-sidebar-text {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: center;
        font-size: 0.85rem;
    }

    .why-choose-img {
        flex: 0 0 100%;
        max-width: 100%;
        height: 320px;
    }

    .why-choose-content {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   HOW CAN WE HELP
   ========================================================================== */
.help-section {
    background: var(--zam-white);
}

.zam-contact-form {
    background: var(--zam-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.zam-input {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

.zam-input:focus {
    border-color: var(--zam-red);
    box-shadow: 0 0 0 0.2rem rgba(208, 32, 40, 0.15);
}

/* Contact form spam trap: off screen for people, still filled in by bots */
.zam-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ==========================================================================
   FACILITIES MANAGEMENT EXPERTS
   ========================================================================== */
.experts-section {
    background: var(--zam-gray);
}

.experts-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==========================================================================
   PROFESSIONAL SUPPORT SERVICES — CAROUSEL
   ========================================================================== */
.services-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.services-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.services-slider-track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.service-card {
    position: relative;
    flex: 0 0 calc(25% - 0.95rem);
    min-width: 220px;
    display: flex;
    flex-direction: column;
    background: #17181b;
    border-radius: 4px;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 1.5rem 1.35rem 1.75rem;
    text-align: center;
    flex: 1;
}

.service-card-title {
    color: var(--zam-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.service-card-text {
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.65;
    margin: 0;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--zam-red);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    margin-top: 0.9rem;
}

.service-card-link i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.service-card-link:hover {
    color: var(--zam-red);
    text-decoration: underline;
}

.service-card-link:hover i {
    transform: translateX(4px);
}

.slider-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: var(--zam-white);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.25s ease;
    z-index: 2;
}

.slider-arrow:hover {
    background: var(--zam-red);
    border-color: var(--zam-red);
    color: var(--zam-white);
}

.services-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.75rem;
}

.services-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.25s ease;
}

.services-dots .dot.active {
    background: var(--zam-red);
    width: 26px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .service-card {
        flex: 0 0 calc(50% - 0.65rem);
    }
}

@media (max-width: 575px) {
    .service-card {
        flex: 0 0 85%;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   OUR CLIENTS
   ========================================================================== */
.clients-banner {
    background: var(--zam-black);
    padding: 2.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.clients-track-viewport {
    overflow: hidden;
    width: 100%;
}

.clients-track {
    display: flex;
    gap: 4rem;
    width: max-content;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 60px;
    opacity: 0.85;
    filter: grayscale(1) brightness(1.6);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.client-logo img {
    height: 100%;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

.client-logo:hover {
    opacity: 1;
    filter: none;
}

.client-arrow {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: var(--zam-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.client-arrow:hover {
    background: var(--zam-red);
    border-color: var(--zam-red);
}

/* ==========================================================================
   EVENTS GALLERY — auto + draggable carousel
   ========================================================================== */
.events-gallery-wrap {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    user-select: none;
}

.events-gallery-wrap.dragging {
    cursor: grabbing;
}

.events-gallery-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    padding: 0 1rem;
}

.event-card {
    flex: 0 0 auto;
    width: 350px;
    height: 360px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 575px) {
    .event-card {
        width: 260px;
        height: 190px;
    }
}

/* ==========================================================================
   ACCREDITATIONS
   ========================================================================== */
.accreditations-section {
    background: var(--zam-gray);
}

.accred-badge {
    width: 100px;
    height: 100px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.accred-caption {
    max-width: 640px;
    font-weight: 600;
    color: #222;
    margin-top: 1rem;
}

.accred-badge-wide {
    max-width: 220px;
    height: auto;
}

.awards-row-wrap {
    width: 100%;
    padding-bottom: 0.5rem;
}

.awards-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.award-logo {
    width: 100%;
    max-width: 1100px;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
    transition: transform 0.3s ease;
}

.award-logo:hover {
    transform: translateY(-4px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.zam-footer {
    background: var(--zam-black);
    color: #ccc;
}

.footer-logo {
    height: 90px;
}

.footer-tagline {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--zam-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: var(--zam-red);
}

.footer-heading {
    color: var(--zam-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-contact-row {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
    font-size: 0.88rem;
    color: #bbb;
    line-height: 1.6;
}

.footer-contact-row i {
    color: var(--zam-red);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-row strong {
    color: var(--zam-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #888;
    letter-spacing: 0.3px;
}

.cookie-link {
    color: var(--zam-red);
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   GSAP ANIMATION START STATES (fallback before JS runs / no-js safe)
   ========================================================================== */
.anim-fade-left,
.anim-fade-right,
.anim-slide-left,
.anim-slide-right,
.anim-fade-up,
.anim-scale-in {
    will-change: transform, opacity;
}

/* ==========================================================================
   ABOUT US PAGE — page-specific styles
   ========================================================================== */

/* ---------- About Hero / Banner ---------- */
.about-hero {
    position: relative;
    width: 100%;
    height: 740px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.about-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 8%;
    padding-bottom: 3rem;
    margin: auto;
    text-align: center;
}

.about-hero-badge {
    display: inline-block;
    background: var(--zam-red);
    color: var(--zam-white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: clamp(1.8rem, 4vw, 4rem);
    padding: 1px 21px;
}

/* ---------- Intro Section ---------- */

.about-intro-section{
    background: var(--zam-gray);
}
.about-intro-composition {
    position: relative;
    max-width: 420px;
    padding: 1rem 2rem 2rem 0;
}

.about-intro-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    min-height: 280px;
}

.about-intro-card-img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.about-intro-play-btn {
    position: absolute;
    top: 24%;
    left: 92%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--zam-white);
    color: var(--zam-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.about-intro-play-btn i {
    margin-left: 3px;
}

.about-intro-play-btn::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: aboutPlayPulse 2.4s ease-out infinite;
    z-index: -1;
}

@keyframes aboutPlayPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.about-intro-play-btn:hover {
    background: var(--zam-red);
    color: var(--zam-white);
    transform: translate(-50%, -50%) scale(1.08);
}

.about-intro-composition {
    z-index: 0;
}

.about-intro-play-btn {
    z-index: 3;
}

/* ---------- About Intro Video Modal (portrait video, 1080x1920 / 9:16) ---------- */
.about-video-modal-dialog {
    max-width: 400px;
}

.about-video-ratio {
    --bs-aspect-ratio: 177.78%;
    max-height: 85vh;
}

@media (max-height: 700px) {
    .about-video-modal-dialog {
        max-width: 320px;
    }
}

.about-video-modal .modal-content {
    background: var(--zam-black);
    border: none;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.about-video-modal .btn-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 5;
    opacity: 1;
}

.about-video-modal video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-overlap-img {
    position: absolute;
    right: -9.5rem;
    bottom: -2rem;
    width: 62%;
    max-width: 260px;
    border-radius: 8px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
    transform: rotate(-2deg);
    border: 4px solid var(--zam-white);
}

.about-intro-dots {
    position: absolute;
    left: -0.5rem;
    bottom: -1.5rem;
    width: 70px;
    height: 46px;
    background-image: radial-gradient(circle, #cccccc 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    z-index: -1;
}

.about-intro-text {
    font-size: 1.02rem;
}

.about-intro-divider {
    border: none;
    border-top: 1px solid #e2e2e2;
    margin: 1.75rem 0 1.5rem;
}

.about-founder-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.about-founder-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.05rem;
}

.about-founder-role {
    color: #888;
    font-size: 0.85rem;
}

/* ---------- Mission & Vision Section ---------- */
.mv-section {
    background: var(--zam-white);
    overflow: hidden;
}

.mv-heading {
    color: #1a1a1a;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 0.6rem;
}

.mv-subheading {
    color: #666;
    font-size: 0.95rem;
    max-width: 720px;
    line-height: 1.7;
}

.mv-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.mv-img {
    position: relative;
    z-index: 1;
    width: 340px;
    flex: 0 0 auto;
    border-radius: 170px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mv-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.mv-pill {
    position: relative;
    flex: 1 1 0;
    max-width: 420px;
    z-index: 2;
}

.mv-pill-left {
    margin-right: -60px;
    align-self: flex-start;
    margin-top: 0;
}

.mv-pill-right {
    margin-left: -60px;
    align-self: flex-end;
    margin-bottom: 0;
}

.mv-pill-inner {
    background: #1c1f26;
    color: var(--zam-white);
    padding: 3rem 3.5rem 3rem 2.5rem;
    text-align: center;
}

.mv-pill-left .mv-pill-inner {
    border-radius: 260px 20px 20px 260px;
    padding: 3rem 1.5rem 3rem 3.5rem;
}

.mv-pill-right .mv-pill-inner {
    border-radius: 20px 260px 260px 20px;
    padding: 2rem 2.5rem 2rem 1.5rem;
}

.mv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--zam-red);
    color: var(--zam-white);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.mv-pill-inner h3 {
    color: var(--zam-white);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.mv-pill-inner p {
    color: #cfcfcf;
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
    text-align: left;
}

@media (max-width: 991px) {
    .mv-row {
        flex-direction: column;
        min-height: auto;
        gap: 2rem;
    }

    .mv-img {
        order: 1;
        width: 280px;
    }

    .mv-img img {
        height: 340px;
    }

    .mv-pill-left {
        order: 2;
        margin-right: 0;
        max-width: 100%;
    }

    .mv-pill-right {
        order: 3;
        margin-left: 0;
        max-width: 100%;
    }

    .mv-pill-left .mv-pill-inner,
    .mv-pill-right .mv-pill-inner {
        border-radius: 20px;
        padding: 2.5rem 2rem;
    }
}

/* ---------- Why Choose Us Section ---------- */
.about-why-row {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-why-card {
    background: var(--zam-black);
    color: var(--zam-white);
    height: 100%;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-why-label {
    color: var(--zam-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.about-why-heading {
    color: var(--zam-white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.about-why-text {
    color: #ccc;
    font-size: 0.92rem;
    margin-bottom: 2rem;
}

.about-skill {
    margin-bottom: 1.25rem;
}

.about-skill-label {
    display: block;
    color: var(--zam-white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-skill-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.about-skill-fill {
    width: 0;
    height: 100%;
    background: var(--zam-red);
    border-radius: 2px;
}

.about-why-img-col {
    position: relative;
    min-height: 320px;
}

.about-why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-why-vertical-text {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    color: var(--zam-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: translateY(-50%) rotate(180deg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    color:#000000
}

.about-why-deco-icon {
    position: absolute;
    left: 0.5rem;
    bottom: -1rem;
    font-size: 2.25rem;
    color: #ddd;
}

@media (max-width: 991px) {
    .about-why-img-col {
        min-height: 260px;
    }
}

/* ---------- Excellence in Action (culture card grid) ---------- */
.culture-grid-section {
    background: var(--zam-gray);
}

.culture-grid-card {
    height: 100%;
    background: var(--zam-white);
    border-radius: 10px;
    padding: 2.25rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.culture-grid-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(208, 32, 40, 0.1);
    color: var(--zam-red);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.culture-grid-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.culture-grid-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ---------- Blogs Page ---------- */
.blogs-section {
    background: var(--zam-white);
}

.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--zam-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
    position: relative;
    display: block;
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-tag {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    background: var(--zam-red);
    color: var(--zam-white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
}

.blog-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.35rem 1.25rem 1.5rem;
}

.blog-card-meta {
    color: #999;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
}

.blog-card-meta i {
    color: var(--zam-red);
    margin-right: 4px;
}

.blog-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.blog-card-body h3 a {
    color: #1a1a1a;
    transition: color 0.25s ease;
}

.blog-card-body h3 a:hover {
    color: var(--zam-red);
}

.blog-card-body p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--zam-red);
    font-weight: 600;
    font-size: 0.82rem;
}

.blog-card-link i {
    transition: transform 0.25s ease;
}

.blog-card-link:hover {
    text-decoration: underline;
}

.blog-card-link:hover i {
    transform: translateX(4px);
}

/* ---------- News Cards (horizontal, one per row) ---------- */
.news-card {
    display: flex;
    align-items: stretch;
    background: var(--zam-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.news-card-img {
    position: relative;
    display: block;
    flex: 0 0 300px;
    max-width: 300px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 210px;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.08);
}

.news-card-tag {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    background: var(--zam-red);
    color: var(--zam-white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
}

.news-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.75rem;
}

.news-card-meta {
    color: #999;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
}

.news-card-meta i {
    color: var(--zam-red);
    margin-right: 4px;
}

.news-card-meta .news-card-badge {
    display: inline-block;
    background: var(--zam-gray);
    color: var(--zam-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.4px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-right: 0.6rem;
}

.news-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.news-card-body h3 a {
    color: #1a1a1a;
    transition: color 0.25s ease;
}

.news-card-body h3 a:hover {
    color: var(--zam-red);
}

.news-card-body p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--zam-red);
    font-weight: 600;
    font-size: 0.82rem;
    width: fit-content;
}

.news-card-link i {
    transition: transform 0.25s ease;
}

.news-card-link:hover {
    text-decoration: underline;
}

.news-card-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .news-card {
        flex-direction: column;
    }

    .news-card-img {
        flex: 0 0 auto;
        max-width: 100%;
        height: 200px;
    }
}

/* ---------- Blog Sidebar ---------- */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-widget {
    background: var(--zam-gray);
    border-radius: 10px;
    padding: 1.75rem;
}

.blog-widget-title {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--zam-red);
}

.blog-search-form {
    display: flex;
    gap: 0.5rem;
}

.blog-search-form .zam-input {
    background: var(--zam-white);
}

.blog-search-form button {
    flex: 0 0 auto;
    width: 46px;
    background: var(--zam-red);
    color: var(--zam-white);
    border: none;
    border-radius: 6px;
    transition: background-color 0.25s ease;
}

.blog-search-form button:hover {
    background: var(--zam-red-dark);
}

.blog-recent-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-recent-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.blog-recent-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex: 0 0 auto;
}

.blog-recent-date {
    display: block;
    color: #999;
    font-size: 0.72rem;
    margin-bottom: 0.2rem;
}

.blog-recent-title {
    display: block;
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.25s ease;
}

.blog-recent-item:hover .blog-recent-title {
    color: var(--zam-red);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.blog-tags a {
    background: var(--zam-white);
    color: #444;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    border: 1px solid #e2e2e2;
    transition: all 0.25s ease;
}

.blog-tags a:hover {
    background: var(--zam-red);
    border-color: var(--zam-red);
    color: var(--zam-white);
}

/* ==========================================================================
   SERVICE DETAIL PAGE (Security Guarding template)
   ========================================================================== */
.svc-eyebrow {
    display: inline-block;
    position: relative;
    color: var(--zam-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.svc-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 2px;
    background: var(--zam-red);
}

.svc-section-title {
    color: #111;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 0.75rem;
}

.svc-section-subtext {
    color: #666;
    font-size: 0.95rem;
    max-width: 680px;
    margin: 0 auto 0;
    line-height: 1.7;
}

.svc-process-section .svc-section-subtext,
.svc-industries-section .svc-section-subtext {
    margin-left: 0;
}

/* ---------- Hero ---------- */
.svc-hero-section {
    background: var(--zam-gray);
    padding: 4.5rem 0 3.5rem;
}

.svc-hero-eyebrow {
    display: inline-block;
    position: relative;
    color: var(--zam-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.svc-hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.1rem;
    height: 2px;
    background: var(--zam-red);
}

.svc-hero-title {
    color: #111;
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 2.9rem);
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.svc-hero-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 1.75rem;
}

.svc-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
}

.svc-hero-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.svc-hero-feature i {
    color: var(--zam-red);
    font-size: 1.3rem;
    flex: 0 0 auto;
}

.svc-hero-feature span {
    color: #333;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.3;
}

.svc-hero-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.svc-hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 767px) {
    .svc-hero-section {
        padding-top: 3.5rem;
    }

    .svc-hero-features {
        gap: 1.1rem 1.5rem;
    }
}

/* ---------- Services Cards ---------- */
.svc-services-section {
    background: var(--zam-white);
}

.svc-card {
    display: block;
    height: 100%;
    background: var(--zam-white);
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.svc-card:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.svc-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--zam-gray);
    color: var(--zam-red);
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.svc-card:hover .svc-card-icon {
    background: var(--zam-red);
    color: var(--zam-white);
}

.svc-card h3 {
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.svc-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}


/* ---------- Why Choose Our Security Guards ---------- */
.svc-why-section {
    background: var(--zam-gray);
}

.svc-why-img {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.svc-why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-checklist {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
}

.svc-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.svc-check-icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--zam-red);
    color: var(--zam-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    margin-top: 0.15rem;
}

.svc-checklist strong {
    display: block;
    color: #111;
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.svc-checklist span {
    display: block;
    color: #666;
    font-size: 0.82rem;
    line-height: 1.5;
}

@media (max-width: 575px) {
    .svc-checklist {
        grid-template-columns: 1fr;
    }
}

/* ---------- How It Works ---------- */
.svc-process-section {
    background: var(--zam-white);
}

.svc-process-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.svc-process-step {
    flex: 1 1 0;
    background: var(--zam-gray);
    border-radius: 10px;
    padding: 1.5rem 1.35rem;
}

.svc-process-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.svc-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--zam-black);
    color: var(--zam-white);
    font-weight: 700;
    font-size: 0.85rem;
}

.svc-process-icon {
    color: var(--zam-red);
    font-size: 1.35rem;
}

.svc-process-step h3 {
    color: #111;
    font-weight: 700;
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
}

.svc-process-step p {
    color: #666;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0;
}

.svc-process-connector {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.1rem;
    padding-top: 4.5rem;
}

@media (max-width: 991px) {
    .svc-process-row {
        flex-wrap: wrap;
    }

    .svc-process-step {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .svc-process-connector {
        display: none;
    }
}

@media (max-width: 575px) {
    .svc-process-step {
        flex: 1 1 100%;
    }
}

/* ---------- Industries We Protect ---------- */
.svc-industries-section {
    background: var(--zam-gray);
}

.svc-industries-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.svc-industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: var(--zam-white);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-industry-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.svc-industry-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--zam-gray);
    color: var(--zam-red);
    font-size: 1.2rem;
}

.svc-industry-item span:last-child {
    color: #333;
    font-size: 0.82rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .svc-industries-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .svc-industries-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Sector Detail Page: Understanding Your Sector ---------- */
.sector-understand-section {
    background: var(--zam-gray);
}

.sector-understand-card {
    height: 100%;
    background: var(--zam-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.sector-understand-text {
    color: #555;
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 1.75rem;
}

.sector-understand-divider {
    border-top: 1px solid #eee;
    margin-bottom: 1.75rem;
}

.sector-understand-subheading {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1.1rem;
}

.sector-understand-subheading i {
    color: var(--zam-red);
}

.sector-understand-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sector-understand-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.85rem;
    color: #555;
    font-size: 0.92rem;
}

.sector-understand-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--zam-red);
}

.sector-understand-img {
    position: relative;
    height: 100%;
    min-height: 360px;
    border-radius: 12px;
    overflow: hidden;
}

.sector-understand-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sector-understand-img-caption {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sector-understand-img-caption strong {
    display: block;
    color: #1a1a1a;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.sector-understand-img-caption span {
    display: block;
    color: #777;
    font-size: 0.8rem;
}

/* ---------- Sector Detail Page: Services Cards ---------- */
.sector-services-section {
    background: var(--zam-white);
}

.sector-service-card {
    position: relative;
    display: block;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.sector-service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sector-service-card:hover img {
    transform: scale(1.08);
}

.sector-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 15, 30, 0.55) 0%, rgba(10, 15, 30, 0.85) 100%);
}

.sector-service-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(208, 32, 40, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--zam-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sector-service-body {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
}

.sector-service-body h3 {
    color: var(--zam-white);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.sector-service-body p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ---------- Blog Details Page: Article ---------- */
.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-article-meta i {
    color: var(--zam-red);
    margin-right: 5px;
}

.blog-article-title {
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 1.75rem;
}

.blog-article-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-article-img img {
    width: 100%;
    height: auto;
    display: block;
    /* Keep the wide 1000x560 shape of the design, whatever size of photo is uploaded */
    aspect-ratio: 1000 / 560;
    object-fit: cover;
}

.blog-article-body p {
    color: #444;
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.blog-article-body h2 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin: 2rem 0 1rem;
}

.blog-article-body blockquote {
    border-left: 4px solid var(--zam-red);
    background: var(--zam-gray);
    color: #333;
    font-style: italic;
    font-size: 1rem;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    border-radius: 0 8px 8px 0;
}

.blog-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid #eee;
}

.blog-article-tags span {
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.25rem;
}

.blog-article-tags a {
    background: var(--zam-gray);
    color: #444;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.blog-article-tags a:hover {
    background: var(--zam-red);
    color: var(--zam-white);
}

.blog-article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.blog-article-share span {
    color: #888;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.25rem;
}

.blog-article-share a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--zam-gray);
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.blog-article-share a:hover {
    background: var(--zam-red);
    color: var(--zam-white);
}

/* ---------- Gallery Page: Photo Grid (events page: the original mosaic, 1st and 6th tiles large) ---------- */
.gallery-grid-section {
    background: var(--zam-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery-grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.08);
}

.gallery-grid-item:nth-child(1),
.gallery-grid-item:nth-child(6) {
    grid-column: span 2;
    grid-row: span 2;
}

/* Event gallery page: every photo the same size, 4 in a row */
.gallery-grid--even {
    grid-auto-rows: auto;
}

.gallery-grid--even .gallery-grid-item {
    aspect-ratio: 4 / 3;
}

.gallery-grid--even .gallery-grid-item:nth-child(1),
.gallery-grid--even .gallery-grid-item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-grid--even {
        grid-auto-rows: auto;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 0.6rem;
    }

    .gallery-grid-item:nth-child(1),
    .gallery-grid-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-grid--even {
        grid-auto-rows: auto;
    }

    .gallery-grid--even .gallery-grid-item:nth-child(1),
    .gallery-grid--even .gallery-grid-item:nth-child(6) {
        grid-column: auto;
    }
}

/* ---------- Contact Us Page: Info Cards ---------- */
.contact-info-section {
    background: var(--zam-white);
}

.contact-info-card {
    height: 100%;
    text-align: center;
    background: var(--zam-gray);
    border-radius: 10px;
    padding: 2.5rem 1.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--zam-red);
    color: var(--zam-white);
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.contact-info-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
}

.contact-info-card p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 0.4rem;
}

.contact-info-card p a {
    color: #555;
    font-weight: 600;
}

.contact-info-card p a:hover {
    color: var(--zam-red);
}

.contact-info-note {
    display: block;
    color: #999;
    font-size: 0.78rem;
}

/* ---------- Area Page Coverage Map ---------- */
.area-map-section {
    background: var(--zam-gray);
}

.area-map-wrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    line-height: 0;
}

.area-map-wrap iframe {
    width: 100%;
    display: block;
    filter: grayscale(0.15);
}

@media (max-width: 575px) {
    .area-map-wrap iframe {
        height: 320px;
    }
}

/* ---------- Our Team Section ---------- */
.team-section {
    background: var(--zam-white);
}

.team-subheading {
    color: #666;
    font-size: 0.95rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.team-card {
    flex: 0 0 calc(25% - 0.95rem);
    min-width: 220px;
    background: var(--zam-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-slider-wrap .services-slider-viewport {
    padding: 6px 4px 18px;
}

@media (max-width: 991px) {
    .team-card {
        flex: 0 0 calc(50% - 0.65rem);
    }
}

@media (max-width: 575px) {
    .team-card {
        flex: 0 0 85%;
    }
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-card-img {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-img img {
    transform: scale(1.06);
}

.team-card-socials {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 1rem 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.team-card:hover .team-card-socials {
    transform: translateY(0);
    opacity: 1;
}

.team-card-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--zam-red);
    color: var(--zam-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background-color 0.25s ease;
}

.team-card-socials a:hover {
    background: var(--zam-red-dark);
}

.team-card-body {
    text-align: center;
    padding: 1.25rem 1rem 1.5rem;
}

.team-card-body h3 {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.team-card-body span {
    color: var(--zam-red);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ---------- Process Steps Section ---------- */
.about-process-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 0.5rem;
    margin-top: 3rem;
}

.about-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
    width: 140px;
}

.about-process-icon {
    width: 64px;
    height: 64px;
    background: var(--zam-red);
    color: var(--zam-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.about-process-label {
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.about-process-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e8e8e8;
    line-height: 1;
}

.about-process-dots {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 1rem;
    align-self: center;
    flex: 0 0 auto;
}

.about-process-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ccc;
}

@media (max-width: 767px) {
    .about-process-row {
        gap: 0.25rem;
    }

    .about-process-step {
        width: 96px;
    }

    .about-process-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        border-radius: 8px;
    }

    .about-process-label {
        font-size: 0.7rem;
    }

    .about-process-number {
        font-size: 1.6rem;
    }

    .about-process-dots {
        padding: 0 0.15rem;
    }
}

@media (max-width: 480px) {
    .about-process-step {
        width: 76px;
    }

    .about-process-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .about-process-label {
        font-size: 0.6rem;
    }

    .about-process-number {
        font-size: 1.3rem;
    }

    .about-process-dots {
        display: none !important;
    }
}

.about-process-deco-triangle {
    position: absolute;
    left: 1.5rem;
    bottom: 1rem;
    width: 0;
    height: 0;
    border-left: 32px solid transparent;
    border-bottom: 32px solid var(--zam-black);
    opacity: 0.85;
}

/* ==========================================================================
   OUR CULTURE PAGE — page-specific styles
   ========================================================================== */

.culture-commitment-section {
    background: var(--zam-white);
}

.culture-accordion .accordion-item {
    border: none;
    margin-bottom: 0.85rem;
    border-radius: 6px;
    overflow: hidden;
}

.culture-accordion .accordion-button {
    background-color: var(--zam-gray);
    color: #111;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    padding: 1.1rem 1.5rem;
    box-shadow: none;
}

.culture-accordion .accordion-button:not(.collapsed) {
    background-color: var(--zam-gray);
    color: #111;
    box-shadow: none;
}

.culture-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.culture-accordion .accordion-button::after {
    display: none;
}

.culture-accordion-caret {
    color: var(--zam-red);
    font-size: 0.8rem;
    margin-right: 0.85rem;
    transition: transform 0.25s ease;
}

.culture-accordion .accordion-button:not(.collapsed) .culture-accordion-caret {
    transform: rotate(180deg);
}

.culture-accordion .accordion-body {
    padding: 1.5rem 1.75rem;
    color: #333;
    font-size: 0.92rem;
    line-height: 1.75;
}

.culture-accordion .accordion-body p {
    margin-bottom: 1rem;
}

.culture-accordion .accordion-body ol,
.culture-accordion .accordion-body ul {
    margin-bottom: 1rem;
    padding-left: 1.25rem;
}

.culture-accordion .accordion-body li {
    margin-bottom: 0.4rem;
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    line-height: 2 !important;
}

/* ==================== BLOG / NEWS PAGINATION ==================== */
.blog-pagination .pagination {
    justify-content: center;
    gap: 0.35rem;
}

.blog-pagination .page-link {
    color: #444;
    border-radius: 6px;
    border-color: #e2e2e2;
}

.blog-pagination .page-link:hover {
    color: var(--zam-red);
}

.blog-pagination .page-item.active .page-link {
    background: var(--zam-red);
    border-color: var(--zam-red);
    color: var(--zam-white);
}

/* The "Showing x of y results" line Bootstrap's paginator adds on wide screens */
.blog-pagination nav > .d-none.flex-sm-fill > div:first-child {
    display: none;
}
.blog-pagination nav > .d-none.flex-sm-fill {
    justify-content: center !important;
}

/* News cards: the text decides the card's height; the photo fills that space (cropped),
   so a tall/portrait photo no longer stretches the card */
.news-card-img {
    min-height: 210px;
}

.news-card-img img {
    position: absolute;
    inset: 0;
    min-height: 0;
}

/* Footer phone / email links: same look as the surrounding text, red on hover */
.footer-contact-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-link:hover {
    color: var(--zam-red);
}

/* ==================== GALLERY LIGHTBOX (event gallery page) ==================== */
.gallery-grid-item {
    display: block;
    cursor: zoom-in;
}

/* Events page: each tile opens its event, with the title over the photo */
.gallery-event-item {
    cursor: pointer;
    color: var(--zam-white);
}

.gallery-event-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.gallery-event-count {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background: var(--zam-red);
    color: var(--zam-white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
}

.gallery-event-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 14px 16px;
}

.gallery-event-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--zam-white);
    line-height: 1.3;
}

.gallery-event-meta {
    font-size: 13px;
    opacity: 0.9;
}

.gallery-event-item:hover .gallery-event-info h3,
.gallery-event-item:focus-visible .gallery-event-info h3 {
    color: var(--zam-red);
}

/* The two large mosaic tiles get larger text */
@media (min-width: 576px) {
    .gallery-event-item:nth-child(1) .gallery-event-info,
    .gallery-event-item:nth-child(6) .gallery-event-info {
        padding: 22px 24px;
    }

    .gallery-event-item:nth-child(1) .gallery-event-info h3,
    .gallery-event-item:nth-child(6) .gallery-event-info h3 {
        font-size: 26px;
    }

    .gallery-event-item:nth-child(1) .gallery-event-meta,
    .gallery-event-item:nth-child(6) .gallery-event-meta {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .gallery-event-count {
        top: 8px;
        left: 8px;
        font-size: 11px;
        padding: 3px 8px;
    }

    .gallery-event-info {
        padding: 10px;
    }

    .gallery-event-meta > span {
        display: block;
        margin-left: 0 !important;
    }

    .gallery-event-info h3 {
        font-size: 14px;
    }

    .gallery-event-meta {
        font-size: 11px;
    }
}

.zam-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.5rem 4.5rem;
}

.zam-lightbox[hidden] {
    display: none;
}

.zam-lightbox-figure {
    margin: 0;
    max-width: 100%;
    max-height: 100%;
    text-align: center;
}

.zam-lightbox-figure img {
    max-width: 100%;
    max-height: calc(100vh - 9rem);
    object-fit: contain;
    border-radius: 6px;
}

.zam-lightbox-figure figcaption {
    color: #ddd;
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

.zam-lightbox button {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    color: var(--zam-white);
    border: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease;
}

.zam-lightbox button:hover,
.zam-lightbox button:focus-visible {
    background: var(--zam-red);
}

.zam-lightbox-close {
    top: 1rem;
    right: 1rem;
}

.zam-lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.zam-lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.zam-lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: #bbb;
    font-size: 0.85rem;
}

@media (max-width: 575px) {
    .zam-lightbox {
        padding: 3.5rem 0.5rem;
    }

    .zam-lightbox-prev,
    .zam-lightbox-next {
        top: auto;
        bottom: 0.5rem;
        transform: none;
    }
}
