/* ============================================================
   Kevi Business Media — Public Stylesheet
   Ref: NCL-KBM-2026-0048
   ============================================================ */

/* Performance: GPU-composited layers for animated elements */
.hero-video,
.hero-overlay { will-change: auto; }

/* Performance: contain layout/paint for heavy below-fold sections */
.section:not(:first-of-type) { content-visibility: auto; contain-intrinsic-size: 0 600px; }

/* --- Design Tokens ----------------------------------------- */
:root {
    --red:        #CC0000;
    --red-dark:   #AA0000;
    --red-light:  #FFEEEE;
    --black:      #1A1A1A;
    --dark:       #333333;
    --gray:       #666666;
    --light-gray: #F5F5F5;
    --border:     #E0E0E0;
    --white:      #FFFFFF;

    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Open Sans', sans-serif;

    --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
    --shadow:    0 2px 12px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.10);

    --radius:    6px;
    --transition: 0.25s ease;
    --container: 1200px;
    --nav-height: 70px;
}

/* --- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; touch-action: manipulation; }
input, textarea, select { font-family: inherit; }

/* iPhone safe areas */
.navbar { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
.whatsapp-float { bottom: calc(20px + env(safe-area-inset-bottom)); right: calc(20px + env(safe-area-inset-right)); }

/* --- Typography -------------------------------------------- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--black); line-height: 1.2; }
h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; }
h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 700; }
h3 { font-size: clamp(20px, 3vw, 24px); font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }
p  { font-size: 16px; color: var(--gray); line-height: 1.8; }
small { font-size: 14px; }

/* --- Layout Utilities -------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt { background: var(--light-gray); }
.text-center { text-align: center; }
.text-red { color: var(--red); }

/* Section heading with red underline accent */
.section-title { margin-bottom: 48px; }
.section-title h2 { margin-bottom: 14px; }
.section-title p  { max-width: 600px; margin: 0 auto; }
.section-title::after,
.heading-accent {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 12px 0 0;
}
.text-center .heading-accent { margin: 12px auto 0; }

/* --- Buttons ----------------------------------------------- */
.btn {
    display: inline-block;
    padding: 13px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    transition: var(--transition);
    line-height: 1;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-outline-red {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 17px 38px; font-size: 16px; }

/* --- Cards ------------------------------------------------- */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-body { padding: 28px 24px; }

/* --- Navbar ------------------------------------------------ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--black);
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    color: rgba(255,255,255,0.88);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 4px;
    transition: color var(--transition);
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}
.nav-links .nav-cta { margin-left: 8px; }

/* Client Portal login link in nav */
.nav-client-login {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark) !important;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    padding: 6px 12px !important;
    transition: border-color .2s, color .2s, background .2s;
}
.nav-client-login:hover,
.nav-client-login.active {
    border-color: var(--red);
    color: var(--red) !important;
    background: rgba(204,0,0,.04);
}
.nav-client-login::after { display: none !important; }

/* --- Dropdown Nav ------------------------------------------ */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
}
.dropdown-caret {
    flex-shrink: 0;
    transition: transform 0.22s ease;
    opacity: 0.75;
}
.nav-dropdown:hover .dropdown-caret,
.nav-dropdown.open .dropdown-caret { transform: rotate(180deg); opacity: 1; }

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 8px;
    min-width: 210px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
    list-style: none;
    padding: 8px 0;
    z-index: 1050;
    animation: dropFadeIn 0.18s ease;
}
@keyframes dropFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 11px; height: 11px;
    background: #1a1a1a;
    border-top: 1px solid rgba(255,255,255,0.09);
    border-left: 1px solid rgba(255,255,255,0.09);
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    color: rgba(255,255,255,0.82);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 6px;
    border-bottom: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    margin: 2px 6px;
}
.dropdown-menu li a:hover { background: rgba(204,0,0,0.15); color: #fff; }
.dropdown-menu li a::after { display: none; }
.drop-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 28px; height: 28px; background: rgba(204,0,0,0.12); border-radius: 6px; }
.drop-icon svg { stroke: var(--red); }
.dropdown-menu li a:hover .drop-icon { background: rgba(204,0,0,0.25); }

/* --- Image-grid dropdowns (Portfolio & Blog) --------------- */
.dropdown-img-grid {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    z-index: 1050;
    width: 340px;
    flex-wrap: wrap;
    gap: 8px;
    animation: dropFadeIn 0.18s ease;
}
.dropdown-img-grid::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 11px; height: 11px;
    background: #1a1a1a;
    border-top: 1px solid rgba(255,255,255,0.09);
    border-left: 1px solid rgba(255,255,255,0.09);
}
.nav-dropdown:hover .dropdown-img-grid,
.nav-dropdown.open .dropdown-img-grid { display: flex; }

.drop-img-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: calc(50% - 4px);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    background: #111;
}
.drop-img-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.drop-img-card::after { display: none; }

.drop-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #222;
    border-radius: 6px;
}
.drop-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.drop-img-card:hover .drop-img-wrap img { transform: scale(1.05); }

.drop-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #222;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drop-img-card span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    padding: 0 6px 8px;
    line-height: 1.35;
    font-family: var(--font-heading);
}
.drop-img-card:hover span { color: #fff; }

.drop-img-view-all {
    display: block;
    width: 100%;
    text-align: center;
    padding: 9px 0 3px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--red) !important;
    letter-spacing: 0.3px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 4px;
    text-decoration: none;
    transition: color 0.15s;
}
.drop-img-view-all:hover { color: #ff3333 !important; }
.drop-img-view-all::after { display: none !important; }

/* Mobile: image dropdowns stack vertically */
@media (max-width: 768px) {
    .dropdown-img-grid {
        position: static;
        transform: none;
        width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: none;
        background: rgba(255,255,255,0.04);
        padding: 10px 16px;
        animation: none;
        gap: 6px;
    }
    .dropdown-img-grid::before { display: none; }
    .nav-dropdown.open .dropdown-img-grid { display: flex; }
    .drop-img-card { width: calc(50% - 3px); }
    .drop-img-view-all { padding: 10px 0 6px; }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Body padding for fixed navbar */
body { padding-top: var(--nav-height); }

/* --- Hero Section (Video Background) ----------------------- */
.hero {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 60px 24px;
    overflow: hidden;
    background: #111; /* fallback while video loads */
}
/* Video element fills the hero */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}
/* Dark overlay on top of video */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.45) 60%,
        rgba(0,0,0,0.65) 100%
    );
    z-index: 1;
}
/* Content sits above overlay */
.hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}
.hero p {
    color: rgba(255,255,255,0.90);
    font-size: 18px;
    margin-bottom: 36px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}
.hero-scroll svg { stroke: rgba(255,255,255,0.7); }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* --- Page Hero Banner -------------------------------------- */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.62)),
                url('../images/brand.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 24px;
    text-align: center;
    color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.8); font-size: 17px; }
.breadcrumb   { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.7); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }

/* --- Service Cards ----------------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { text-align: left; padding: 0; overflow: hidden; }
.service-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 22px 24px 26px; }
.service-card-body h3 { margin-bottom: 8px; font-size: 18px; }
.service-card-body p  { font-size: 14px; color: var(--gray); line-height: 1.65; }
.service-card-body a  { color: var(--red); font-weight: 600; font-size: 14px; display: inline-block; margin-top: 14px; transition: var(--transition); }
.service-card-body a:hover { color: var(--red-dark); }
/* icon-only variant (about page mission/vision/values) */
.service-card--icon { text-align: center; padding: 36px 24px; }
.service-card--icon h3 { margin-bottom: 10px; font-size: 20px; }
.service-card--icon p  { font-size: 15px; }
.service-card--icon .service-icon {
    width: 72px; height: 72px;
    background: var(--red-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.service-card--icon .service-icon svg { stroke: var(--red); }

/* --- Why Choose Us ----------------------------------------- */
.why-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image img,
.why-image video {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.why-check svg { stroke: var(--white); }
.why-list li h4 { margin-bottom: 2px; font-size: 17px; }
.why-list li p  { font-size: 14px; margin: 0; }

/* --- Stats Counter ----------------------------------------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-card { padding: 36px 20px; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--red);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 15px; color: var(--gray); font-weight: 500; }

/* --- Portfolio Grid ---------------------------------------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
    padding: 9px 20px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray);
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.portfolio-grid { columns: 3; column-gap: 20px; }
.portfolio-item { break-inside: avoid; margin-bottom: 20px; position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.portfolio-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(204,0,0,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); margin-bottom: 6px; font-size: 16px; }
.portfolio-overlay span { color: rgba(255,255,255,0.8); font-size: 13px; }
.portfolio-overlay svg { stroke: var(--white); margin-bottom: 12px; }

/* --- Lightbox ---------------------------------------------- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
}
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--red); }
.lightbox-caption { text-align: center; color: rgba(255,255,255,0.8); margin-top: 14px; font-size: 14px; }

/* --- Testimonials ------------------------------------------ */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; padding: 0 20px; }
.testimonial-card { max-width: 720px; margin: 0 auto; text-align: center; padding: 48px 40px; }
.testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 28px;
    position: relative;
}
.testimonial-quote::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 72px;
    color: var(--red);
    position: absolute;
    top: -24px;
    left: -10px;
    line-height: 1;
    opacity: 0.3;
}
.testimonial-author h4 { margin-bottom: 4px; }
.testimonial-author span { font-size: 14px; color: var(--gray); }
.stars { color: #FFC107; font-size: 18px; margin-bottom: 12px; }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: background var(--transition);
}
.slider-dot.active { background: var(--red); }
.client-logos-strip { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; align-items: center; margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--border); }
.client-logo-item { filter: grayscale(100%); opacity: 0.5; transition: filter var(--transition), opacity var(--transition); }
.client-logo-item:hover { filter: grayscale(0%); opacity: 1; }
.client-logo-item img { height: 48px; width: auto; }

/* --- Blog Cards -------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card .card-img { height: 200px; overflow: hidden; }
.blog-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .card-img img { transform: scale(1.06); }
.blog-card .card-body { padding: 22px 24px; }
.blog-meta { display: flex; gap: 12px; font-size: 13px; color: var(--gray); margin-bottom: 10px; }
.blog-category { color: var(--red); font-weight: 600; }
.blog-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 14px; margin-bottom: 16px; }
.read-more { color: var(--red); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.read-more:hover { gap: 10px; color: var(--red-dark); }

/* --- CTA Banner -------------------------------------------- */
.cta-banner {
    background: var(--red);
    text-align: center;
    padding: 70px 24px;
    color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.88); margin-bottom: 30px; font-size: 17px; }

/* --- Contact Form ------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info h3 { margin-bottom: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--red-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon svg { stroke: var(--red); }
.contact-detail h4 { margin-bottom: 3px; font-size: 15px; }
.contact-detail p, .contact-detail a { font-size: 15px; color: var(--gray); margin: 0; }
.contact-detail a:hover { color: var(--red); }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.hours-row:last-child { border: none; }

/* --- Forms ------------------------------------------------- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 7px; }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-hint { font-size: 12px; color: var(--gray); margin-top: 5px; }
.required { color: var(--red); }
.form-check { display: flex; gap: 10px; align-items: flex-start; }
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--red); }

/* File upload zone */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}
.upload-zone:hover, .upload-zone.dragover { border-color: var(--red); background: var(--red-light); }
.upload-zone svg { stroke: var(--gray); margin-bottom: 10px; }
.upload-zone p { margin: 0; font-size: 14px; }

/* --- Alerts / Messages ------------------------------------- */
.alert { padding: 14px 20px; border-radius: var(--radius); font-size: 15px; margin-bottom: 20px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffc107; }
#formMsg { display: none; }
#formMsg.success { display: block; }
#formMsg.error   { display: block; }

/* --- Team Grid --------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-img { border-radius: var(--radius); overflow: hidden; height: 240px; margin-bottom: 16px; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-card h4 { margin-bottom: 4px; }
.team-card span { font-size: 14px; color: var(--gray); }

/* --- Services Page ----------------------------------------- */
.services-tabs { display: flex; gap: 0; flex-wrap: wrap; border-bottom: 2px solid var(--border); margin-bottom: 40px; }
.service-tab {
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}
.service-tab:hover, .service-tab.active { color: var(--red); border-bottom-color: var(--red); }
.service-panel { display: none; }
.service-panel.active { display: block; }
.service-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-panel-img img { border-radius: var(--radius); width: 100%; height: 360px; object-fit: cover; }
.feature-list { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--dark); }
.feature-list li::before { content: '✓'; color: var(--red); font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.pricing-table { width: 100%; border-collapse: collapse; margin-top: 28px; font-size: 14px; }
.pricing-table th, .pricing-table td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; }
.pricing-table thead { background: var(--black); color: var(--white); font-family: var(--font-heading); }
.pricing-table tbody tr:nth-child(even) { background: var(--light-gray); }
.pricing-table .price { color: var(--red); font-weight: 700; }

/* --- Google Map -------------------------------------------- */
.map-section { height: 420px; overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: none; }

/* --- Blog Single ------------------------------------------- */
.blog-single-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }
.blog-content { max-width: 100%; }
.blog-cover { border-radius: var(--radius); overflow: hidden; height: 400px; margin-bottom: 32px; }
.blog-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-single-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; font-size: 14px; color: var(--gray); }
.blog-single-meta span { display: flex; align-items: center; gap: 6px; }
.blog-single-meta svg { stroke: var(--gray); }
.post-content { line-height: 1.9; }
.post-content h2, .post-content h3 { margin: 28px 0 12px; }
.post-content p { margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 6px; }
.post-content img { border-radius: var(--radius); margin: 20px 0; }
.post-content blockquote { border-left: 4px solid var(--red); padding-left: 20px; margin: 24px 0; font-style: italic; color: var(--gray); }
.share-buttons { display: flex; gap: 12px; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.share-btn { padding: 9px 18px; border-radius: var(--radius); color: var(--white); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; transition: opacity var(--transition); }
.share-btn:hover { opacity: 0.85; }
.share-wa { background: #25D366; }
.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }

/* Blog Sidebar */
.blog-sidebar { position: sticky; top: calc(var(--nav-height) + 24px); }
.sidebar-widget { margin-bottom: 32px; }
.sidebar-widget h4 { margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--red); font-size: 16px; }
.sidebar-search { display: flex; gap: 0; }
.sidebar-search input { flex: 1; border-radius: var(--radius) 0 0 var(--radius); border-right: none; }
.sidebar-search button { padding: 12px 16px; background: var(--red); color: var(--white); border-radius: 0 var(--radius) var(--radius) 0; }
.recent-post { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
.recent-post img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.recent-post h5 { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.recent-post span { font-size: 12px; color: var(--gray); }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-link { padding: 5px 12px; border: 1px solid var(--border); border-radius: 20px; font-size: 13px; color: var(--gray); transition: var(--transition); }
.tag-link:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* --- Related Posts ----------------------------------------- */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* --- Comments ---------------------------------------------- */
.comment-list { list-style: none; margin-bottom: 32px; }
.comment-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
.comment-meta { font-size: 14px; margin-bottom: 8px; }
.comment-meta strong { color: var(--black); margin-right: 10px; }
.comment-meta span { color: var(--gray); }

/* --- Clients Page ------------------------------------------ */
.logos-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; align-items: center; }
.logo-item { padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); filter: grayscale(100%); opacity: 0.5; transition: var(--transition); text-align: center; }
.logo-item:hover { filter: grayscale(0%); opacity: 1; border-color: var(--red); }
.logo-item img { height: 50px; width: auto; margin: 0 auto; }

/* Client cards with images */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.client-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow var(--transition), transform var(--transition);
}
.client-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.client-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.client-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(0.88);
}
.client-card:hover .client-card-img img {
    transform: scale(1.06);
    filter: brightness(1);
}
.client-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}
.client-card-body {
    padding: 16px 18px 18px;
}
.client-card-body h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--black);
    line-height: 1.35;
}
.client-card-body p {
    font-size: 12.5px;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 1024px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 420px)  { .clients-grid { grid-template-columns: 1fr; } }

/* Case Study Cards */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.case-study-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow var(--transition), transform var(--transition);
}
.case-study-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.case-study-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.case-study-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(0.85);
}
.case-study-card:hover .case-study-img img {
    transform: scale(1.05);
    filter: brightness(1);
}
.case-study-body { padding: 24px 26px 28px; }
.case-tag {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}
.case-study-body h3 { font-size: 17px; margin-bottom: 12px; line-height: 1.4; }
.case-study-body p  { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 8px; }
.case-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.case-stats div { text-align: center; }
.case-stats span {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--red);
}
.case-stats small { font-size: 11.5px; color: var(--gray); }

@media (max-width: 900px) { .case-studies-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.testimonial-item { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); }
.testimonial-text { font-style: italic; font-size: 15px; margin-bottom: 20px; line-height: 1.8; }
.testi-author { display: flex; gap: 14px; align-items: center; }
.testi-author-info h4 { font-size: 15px; margin-bottom: 2px; }
.testi-author-info span { font-size: 13px; color: var(--gray); }

/* --- Order / Quote Form ------------------------------------ */
.order-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.order-aside { position: sticky; top: calc(var(--nav-height) + 24px); }
.order-info-card { padding: 28px; }
.order-info-card h4 { margin-bottom: 16px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; }
.info-row svg { stroke: var(--red); flex-shrink: 0; margin-top: 2px; }

/* --- WhatsApp Float ---------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* --- Scroll Animation -------------------------------------- */
.animate { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* --- Pagination -------------------------------------------- */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
}
.page-link:hover, .page-link.active { background: var(--red); border-color: var(--red); color: var(--white); }
.page-link.disabled { opacity: 0.4; pointer-events: none; }

/* --- Branch Cards ------------------------------------------ */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 780px;
    margin: 40px auto 0;
}
.branch-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
}
.branch-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    transform: translateY(-3px);
}
.branch-icon {
    width: 60px; height: 60px;
    background: rgba(204,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.branch-card h3 {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}
.branch-badge {
    font-size: 11px;
    font-weight: 700;
    background: var(--red);
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.branch-address {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 14px;
}
.branch-phones {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.branch-phones a {
    font-size: 15px;
    font-weight: 600;
    color: var(--red);
}
.branch-phones a:hover { color: var(--black); }

@media (max-width: 600px) {
    .branches-grid { grid-template-columns: 1fr; max-width: 100%; }
}

/* --- Footer ------------------------------------------------ */
.footer { background: #111111; color: #aaa; }
.footer-main { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: #777; margin-bottom: 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: #888; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--red); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; font-size: 14px; color: #888; }
.footer-contact li span { line-height: 1.7; }
.footer-contact li strong { color: rgba(255,255,255,0.7); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 2px; }
.footer-contact svg { stroke: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact a { color: #888; }
.footer-contact a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: #666; margin: 0; }
.footer-bottom a { color: var(--red); }
.footer-bottom a:hover { color: var(--white); }
.footer-staff-links { font-size: 11px !important; color: #444 !important; margin-top: 6px !important; }
.footer-staff-links a { color: #555 !important; font-size: 11px; text-decoration: none; }
.footer-staff-links a:hover { color: #999 !important; }

/* --- 404 page ---------------------------------------------- */
.error-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 24px; }
.error-page h1 { font-size: 120px; color: var(--red); line-height: 1; margin-bottom: 10px; }
.error-page h2 { margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ============================================================
   TABLET  (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .logos-grid { grid-template-columns: repeat(4, 1fr); }
    .blog-single-wrap { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .order-wrap { grid-template-columns: 1fr; }
    .order-aside { position: static; }
}

/* ============================================================
   MOBILE  (≤768px)
   ============================================================ */
@media (max-width: 768px) {
    :root { --nav-height: 60px; }

    /* Global spacing */
    .container { padding: 0 16px; }
    .section   { padding: 48px 0; }
    .section-title { margin-bottom: 32px; }

    /* Typography — fluid but readable */
    h1 { font-size: 28px; line-height: 1.2; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    h4 { font-size: 17px; }
    p  { font-size: 15px; line-height: 1.75; }

    /* ── Mobile Nav ── */
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: #111;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0 16px;
        transform: translateY(-110%);
        transition: transform 0.3s cubic-bezier(.4,0,.2,1);
        box-shadow: 0 8px 32px rgba(0,0,0,0.35);
        z-index: 998;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
    }
    .nav-links.open { transform: translateY(0); }
    /* Touch-friendly tap targets (≥48px) */
    .nav-links a {
        padding: 16px 24px;
        font-size: 15px;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        min-height: 52px;
        display: flex;
        align-items: center;
    }
    .nav-links a.active::after { display: none; }
    .nav-links .nav-cta {
        margin: 16px 24px 4px;
        text-align: center;
        justify-content: center;
        border-bottom: none;
    }
    .nav-client-login {
        margin: 4px 24px;
        justify-content: center;
        border-color: rgba(255,255,255,0.2) !important;
        color: rgba(255,255,255,0.85) !important;
        border-bottom: none !important;
    }
    .nav-client-login:hover {
        border-color: var(--red) !important;
        color: #fff !important;
    }

    /* ── Mobile Dropdown ── */
    .nav-dropdown { position: static; }
    .dropdown-menu {
        display: none;
        position: static;
        transform: none;
        left: auto;
        background: rgba(255,255,255,0.05);
        border: none;
        border-radius: 0;
        box-shadow: none;
        animation: none;
        padding: 0;
        min-width: 0;
    }
    .dropdown-menu::before { display: none; }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu li a {
        padding: 13px 24px 13px 40px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-dropdown-toggle {
        padding: 16px 24px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        min-height: 52px;
        justify-content: space-between;
    }

    /* ── Hero ── */
    .hero { min-height: 88svh; }
    .hero h1 { font-size: 30px; }
    .hero p  { font-size: 15px; max-width: 100%; }
    .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; padding: 15px 24px; }

    /* ── Page hero banner ── */
    .page-hero { padding: 60px 16px 40px; }
    .page-hero h1 { font-size: 26px; }

    /* ── Buttons — bigger tap area ── */
    .btn { padding: 14px 24px; font-size: 14px; min-height: 48px; }
    .btn-lg { padding: 16px 28px; font-size: 15px; min-height: 52px; }
    .btn-sm { padding: 10px 16px; font-size: 13px; min-height: 40px; }

    /* ── Layouts → single column ── */
    .why-split   { grid-template-columns: 1fr; gap: 32px; }
    .why-video-wrap { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid   { grid-template-columns: 1fr; }
    .team-grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .form-row    { grid-template-columns: 1fr; gap: 0; }
    .related-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .service-panel-grid { grid-template-columns: 1fr; }

    /* ── Stats ── */
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-item { padding: 24px 16px; }
    .stat-number { font-size: 36px; }

    /* ── Portfolio ── */
    .portfolio-grid { columns: 2; column-gap: 10px; }
    .portfolio-filters { gap: 8px; flex-wrap: wrap; justify-content: center; }
    .filter-btn { padding: 8px 14px; font-size: 13px; }

    /* ── Blog ── */
    .blog-card-body { padding: 20px; }

    /* ── Logos ── */
    .logos-grid { grid-template-columns: repeat(3, 1fr); }

    /* ── Contact details ── */
    .contact-detail { gap: 14px; margin-bottom: 20px; }
    .contact-icon { width: 42px; height: 42px; flex-shrink: 0; }

    /* ── Forms ── */
    .form-control { padding: 13px 14px; font-size: 15px; min-height: 48px; }
    textarea.form-control { min-height: 120px; }

    /* ── Cards ── */
    .card { padding: 20px; }

    /* ── Lightbox controls ── */
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 20px; }

    /* ── Testimonials ── */
    .testimonial-card { padding: 24px 20px; }
    .testimonial-dots { bottom: -32px; }

    /* ── Services tabs ── */
    .service-tabs { flex-wrap: wrap; gap: 6px; }
    .service-tab-btn { padding: 10px 14px; font-size: 13px; }

    /* ── Footer ── */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
    .footer-col h4 { font-size: 14px; }
    .footer-col ul li a { font-size: 14px; padding: 4px 0; display: block; }

    /* ── WhatsApp float — won't cover content ── */
    .whatsapp-float { bottom: 20px; right: 14px; width: 54px; height: 54px; }
}

/* ============================================================
   SMALL MOBILE  (≤480px)
   ============================================================ */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .section   { padding: 40px 0; }

    .hero { min-height: 92svh; }
    .hero h1 { font-size: 26px; }
    .hero p  { font-size: 14px; }

    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-number { font-size: 30px; }

    .portfolio-grid { columns: 1; }
    .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

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

    /* Footer → single column */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }

    /* Blog card image taller on small screens */
    .blog-card-img img { height: 180px; }

    /* Pricing table scrollable */
    .pricing-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

    /* Testimonial arrows hidden on tiny screens */
    .testimonial-prev,
    .testimonial-next { display: none; }

    /* CTA banner */
    .cta-banner { padding: 48px 16px; }
    .cta-banner h2 { font-size: 22px; }
    .cta-banner .btn { display: block; margin: 0 auto; max-width: 260px; }

    /* Order form upload zone */
    .upload-zone { padding: 24px 16px; }

    .whatsapp-float { bottom: 16px; right: 12px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}
