/* =====================================================================
   FAZAL INDUSTRIES — Unified design system (2025 redesign)
   Loaded on every public page. Styles the shared navbar, footer,
   buttons and typography, plus page-specific blocks further down.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
    --brand:        #0d2440;   /* deep steel navy   */
    --brand-2:      #14406b;   /* lighter steel      */
    --brand-3:      #1b5590;   /* highlight blue     */
    --accent:       #ff6b1a;   /* industrial orange  */
    --accent-dark:  #e2570c;
    --accent-soft:  #fff2e9;

    --ink:          #16202e;   /* headings           */
    --body:         #48566a;   /* body copy          */
    --muted:        #7d8aa0;
    --line:         #e6ebf2;   /* borders            */

    --bg:           #ffffff;
    --bg-soft:      #f4f7fb;   /* section tint       */
    --bg-dark:      #0b1c30;

    --radius:       14px;
    --radius-sm:    10px;
    --radius-lg:    22px;

    --shadow-sm:  0 2px 8px rgba(13, 36, 64, .06);
    --shadow:     0 12px 30px rgba(13, 36, 64, .10);
    --shadow-lg:  0 26px 60px rgba(13, 36, 64, .18);

    --container:  1200px;
    --ease:       cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--body);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    padding-top: 78px;            /* clears the fixed header */
}

h1, h2, h3, h4, h5, h6, .display {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.15;
}

a { color: var(--brand-2); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent); }

img { max-width: 100%; }

::selection { background: var(--accent); color: #fff; }

/* Reusable helpers */
.container { max-width: var(--container); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .75rem;
}
.eyebrow::before {
    content: "";
    width: 26px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 .75rem; }
.section-head p { color: var(--body); margin: 0; }

.section-pad { padding: 84px 0; }
.section-tint { background: var(--bg-soft); }

/* ---------- Buttons ---------- */
.btn-ind {
    --btn-bg: var(--accent);
    --btn-fg: #fff;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1.6rem;
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .01em;
    color: var(--btn-fg);
    background: var(--btn-bg);
    border: none;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
    box-shadow: 0 10px 22px rgba(255, 107, 26, .28);
}
.btn-ind:hover {
    color: #fff;
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(255, 107, 26, .38);
}
.btn-ind.ghost {
    --btn-bg: transparent;
    --btn-fg: #fff;
    border: 1.5px solid rgba(255, 255, 255, .55);
    box-shadow: none;
}
.btn-ind.ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; transform: translateY(-3px); }
.btn-ind.navy { --btn-bg: var(--brand); box-shadow: 0 10px 22px rgba(13, 36, 64, .22); }
.btn-ind.navy:hover { background: var(--brand-2); }

/* =====================================================================
   HEADER / NAVBAR  (shared, id="Header")
   ===================================================================== */
#Header {
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm) !important;
    transition: box-shadow .3s var(--ease);
}
#Header .navbar { padding-top: .4rem; padding-bottom: .4rem; }

#Header .navbar-brand .company-logo {
    box-shadow: 0 4px 12px rgba(13, 36, 64, .18);
    border: 2px solid #fff;
    transition: transform .3s var(--ease);
}
#Header .navbar-brand:hover .company-logo { transform: rotate(-6deg) scale(1.05); }
#Header .company-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700 !important;
    color: var(--brand) !important;
    letter-spacing: -.01em;
}

#Header .navbar-nav .nav-link {
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    color: var(--ink) !important;
    padding: .5rem .95rem !important;
    transition: color .2s var(--ease);
}
#Header .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: .95rem; right: .95rem; bottom: .28rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
    border-radius: 2px;
}
#Header .navbar-nav .nav-link:hover,
#Header .navbar-nav .nav-link.active { color: var(--accent) !important; }
#Header .navbar-nav .nav-link:hover::after { transform: scaleX(1); }

#Header .dropdown-menu {
    margin-top: .6rem;
    padding: .5rem;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow) !important;
    animation: dropIn .22s var(--ease);
}
@keyframes dropIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
#Header .dropdown-item {
    border-radius: 8px;
    padding: .55rem .85rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: background .18s, color .18s, padding-left .18s;
}
#Header .dropdown-item:hover {
    background: var(--accent-soft);
    color: var(--accent-dark);
    padding-left: 1.1rem;
}

.nav-cta {
    margin-left: .6rem;
    padding: .5rem 1.2rem !important;
}
.nav-cta::after { display: none; }

.navbar-toggler { border: none; padding: .25rem .4rem; }
.navbar-toggler:focus { box-shadow: none; }

/* =====================================================================
   FOOTER  (shared)
   ===================================================================== */
footer.bg-dark {
    background: var(--bg-dark) !important;
    margin-top: 0 !important;
    position: relative;
}
footer.bg-dark::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--brand-3));
}
footer .company-name { font-family: 'Space Grotesk', sans-serif; }
footer h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .85rem;
    letter-spacing: .12em;
    position: relative;
    padding-bottom: .7rem;
}
footer .footer-content h5::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 34px; height: 2px;
    background: var(--accent);
}
footer .text-center.text-md-start h5::after { left: 50%; transform: translateX(-50%); }
@media (min-width: 768px) {
    footer .text-md-start h5::after { left: 0; transform: none; }
}
footer #footerProduct li a,
footer .hover-underline { position: relative; opacity: .85; transition: opacity .2s, padding-left .2s; }
footer #footerProduct li { cursor: pointer; }
footer #footerProduct li:hover a { opacity: 1; padding-left: 6px; color: var(--accent) !important; }
footer .hover-underline:hover { opacity: 1; color: var(--accent) !important; }
footer .hover-zoom { transition: transform .25s var(--ease), color .2s; display: inline-block; }
footer .hover-zoom:hover { transform: translateY(-4px) scale(1.15); color: var(--accent) !important; }
footer .company-logo { transition: transform .4s var(--ease); }
footer .rounded-circle.bg-light:hover .company-logo { transform: rotate(8deg); }

/* =====================================================================
   PAGE HEADER BANNER  (products / about / contact — .page-bg-heading)
   ===================================================================== */
.page-bg-heading {
    position: relative;
    padding: 64px 0;
    background:
        linear-gradient(120deg, rgba(11, 28, 48, .92), rgba(20, 64, 107, .82)),
        url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1600&q=60") center/cover;
    overflow: hidden;
}
.page-bg-heading::after {
    content: "";
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .5;
}
.page-bg-heading h3 {
    position: relative;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0;
    text-align: center;
}
.page-bg-heading.header-text h3::after {
    content: "";
    display: block;
    width: 60px; height: 3px;
    background: var(--accent);
    border-radius: 3px;
    margin: 1rem auto 0;
}

/* Fade-in on scroll (progressive enhancement) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 991px) {
    #Header .navbar-collapse {
        background: #fff;
        margin-top: .6rem;
        padding: .75rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    .nav-cta { display: inline-block; margin: .4rem 0 0; }
}

/* =====================================================================
   HOME PAGE
   ===================================================================== */
/* ---- Hero carousel ---- */
#carouselExampleIndicators {
    position: relative;
    margin-top: -1px;
}
#carouselExampleIndicators .carousel-item { height: min(78vh, 640px); }
#carouselExampleIndicators .carousel-item .image,
#carouselExampleIndicators .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#carouselExampleIndicators .carousel-item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(11, 28, 48, .82) 0%, rgba(11, 28, 48, .45) 45%, rgba(11, 28, 48, .15) 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.hero-overlay .container { pointer-events: auto; }
.hero-overlay .eyebrow { color: #ffb27d; }
.hero-overlay .eyebrow::before { background: var(--accent); }
.hero-overlay h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.6rem);
    max-width: 640px;
    margin: 0 0 1rem;
}
.hero-overlay p {
    color: rgba(255, 255, 255, .9);
    max-width: 500px;
    font-size: 1.06rem;
    margin: 0 0 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
#carouselExampleIndicators .carousel-indicators { z-index: 6; margin-bottom: 1.4rem; }
#carouselExampleIndicators .carousel-indicators [data-bs-target] {
    width: 34px; height: 4px; border-radius: 4px; border: none;
    background: rgba(255, 255, 255, .45);
    transition: background .3s, width .3s;
}
#carouselExampleIndicators .carousel-indicators .active { background: var(--accent); width: 48px; }
#carouselExampleIndicators .carousel-control-prev,
#carouselExampleIndicators .carousel-control-next { width: 6%; z-index: 6; opacity: .7; }
#carouselExampleIndicators .carousel-control-prev:hover,
#carouselExampleIndicators .carousel-control-next:hover { opacity: 1; }

/* ---- Trust strip ---- */
.trust-strip {
    background: var(--brand);
    color: #fff;
    padding: 1.1rem 0;
}
.trust-strip .row > div {
    display: flex; align-items: center; justify-content: center; gap: .7rem;
    font-family: 'Space Grotesk', sans-serif; font-weight: 500; font-size: .98rem;
    padding: .4rem 0;
}
.trust-strip i { color: var(--accent); font-size: 1.4rem; }
.trust-strip .num { font-size: 1.35rem; font-weight: 700; color: #fff; }

/* ---- Product center ---- */
.padded { padding: 84px 0 40px; }
.padded section > .text-center b.h3,
.section-title-lg {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--ink) !important;
}
#categories .product-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    cursor: pointer;
    height: 100%;
}
#categories .col:hover .product-card {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
#categories .position-relative { overflow: hidden; }
#categories .zoom-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
    transition: transform .6s var(--ease);
}
#categories .col:hover .zoom-image { transform: scale(1.09); }
#categories .card-description {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.6rem 1.2rem .9rem;
    background: linear-gradient(to top, rgba(11, 28, 48, .92), rgba(11, 28, 48, 0));
}
#categories .card-description p {
    margin: 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex; align-items: center; justify-content: space-between;
}
#categories .card-description p::after {
    content: "\2192";
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--accent); color: #fff; font-size: 1rem;
    transform: translateX(-6px); opacity: 0;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
}
#categories .col:hover .card-description p::after { transform: none; opacity: 1; }

/* ---- Advantages ---- */
.card-margin {
    border: 1px solid var(--line) !important;
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    height: calc(100% - 1.5rem);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
    overflow: hidden;
}
.card-margin:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent !important;
}
.widget-49-date-primary {
    width: 60px; height: 60px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    box-shadow: 0 10px 20px rgba(255, 107, 26, .28);
}
.widget-49-date-primary svg { fill: #fff !important; width: 30px; height: 30px; }
.card-margin .card-title {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--ink);
    font-size: 1.12rem;
    letter-spacing: .01em;
}
.card-margin .widget-49 > .mt-3 { color: var(--body); font-size: .95rem; }

/* ---- About split section (#best-selling) ---- */
#best-selling {
    position: relative;
    padding: 96px 0;
    margin-top: 40px;
}
#best-selling::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(11, 28, 48, .93), rgba(11, 28, 48, .78));
}
#best-selling > * { position: relative; z-index: 2; }
#best-selling .section-title,
#best-selling .text-center b.h3 { color: #fff !important; }
#best-selling .single-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, .1);
}
#best-selling .products-thumb { position: relative; }
#best-selling .products-thumb::after {
    content: "";
    position: absolute; right: -14px; bottom: -14px;
    width: 120px; height: 120px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}
#best-selling .section-title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: .8rem;
}
#best-selling .section-title::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 54px; height: 3px; background: var(--accent); border-radius: 3px;
}
#best-selling .item-title {
    color: rgba(255, 255, 255, .92) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1.1rem !important;
    line-height: 1.7;
}

/* ---- CTA band ---- */
.cta-band {
    background: linear-gradient(120deg, var(--accent), var(--accent-dark));
    color: #fff;
    padding: 56px 0;
    text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: .6rem; }
.cta-band p { color: rgba(255, 255, 255, .92); margin-bottom: 1.6rem; }
.cta-band .btn-ind { background: #fff; color: var(--accent-dark); box-shadow: 0 12px 26px rgba(0, 0, 0, .18); }
.cta-band .btn-ind:hover { background: var(--brand); color: #fff; }

/* =====================================================================
   PRODUCTS PAGE
   ===================================================================== */
#productMenu { list-style: none; padding: 0; margin: 0; }
.sidebar {
    position: sticky;
    top: 96px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem 1.2rem;
    box-shadow: var(--shadow-sm);
}
.sidebar h5 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--ink);
    padding-bottom: .8rem;
    margin-bottom: .8rem;
    border-bottom: 2px solid var(--line);
    position: relative;
}
.sidebar h5::after {
    content: ""; position: absolute; left: 0; bottom: -2px;
    width: 40px; height: 2px; background: var(--accent);
}
.sidebar .nav-item { cursor: pointer; }
.sidebar .nav-link {
    color: var(--body);
    border-radius: var(--radius-sm);
    padding: .6rem .85rem;
    font-weight: 500;
    display: flex; align-items: center; gap: .5rem;
    transition: background .2s, color .2s, padding-left .2s;
}
.sidebar .nav-link::before {
    content: "\203A";
    color: var(--accent);
    font-weight: 700;
    opacity: .5;
    transition: opacity .2s, transform .2s;
}
.sidebar .nav-link:hover { background: var(--bg-soft); color: var(--accent-dark); padding-left: 1.1rem; }
.sidebar .nav-link.parent-active {
    background: linear-gradient(120deg, var(--brand), var(--brand-2));
    color: #fff;
}
.sidebar .nav-link.parent-active::before { color: #fff; opacity: 1; transform: translateX(2px); }

.product-grid .card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    position: relative;
}
.product-grid > div:hover .card { transform: translateY(-7px); box-shadow: var(--shadow); }
.product-grid .card-img-top {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--bg-soft);
    transition: transform .5s var(--ease);
}
.product-grid .card:hover .card-img-top { transform: scale(1.06); }
.product-grid .card .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 60px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(11, 28, 48, .55);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: .03em;
    opacity: 0;
    transition: opacity .3s var(--ease);
}
.product-grid .card:hover .overlay { opacity: 1; }
.product-grid .card-body { border-top: 1px solid var(--line); }
.product-grid .card-text {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--ink);
    font-size: 1rem;
}

/* ---- Product details ---- */
.product-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 2.4rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}
.product-container .product-image {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--bg-soft);
    aspect-ratio: 1 / 1;
    border: 1px solid var(--line);
}
.product-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--ink);
    margin-bottom: 1.2rem;
}
.product-specs { margin: 0 0 1.6rem; }
.product-specs dt {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--muted);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .7rem 0 .1rem;
}
.product-specs dd {
    color: var(--ink);
    padding-bottom: .7rem;
    margin: 0;
    border-bottom: 1px solid var(--line);
    font-weight: 500;
}
.buttons-container { display: flex; flex-wrap: wrap; gap: .8rem; }
.buttons-container .btn {
    border-radius: 999px;
    padding: .75rem 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border: none;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.buttons-container .btn-primary { background: var(--accent); box-shadow: 0 10px 22px rgba(255, 107, 26, .28); }
.buttons-container .btn-primary:hover { background: var(--accent-dark); transform: translateY(-3px); }
.buttons-container .btn-whatsapp { background: #25d366; color: #fff; }
.buttons-container .btn-whatsapp:hover { background: #1da851; color: #fff; transform: translateY(-3px); }

/* ---- Inquiry modal ---- */
#inquireModal .modal-content { border: none; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
#inquireModal .modal-header { background: var(--brand); color: #fff; border: none; padding: 1.2rem 1.6rem; }
#inquireModal .modal-title { font-family: 'Space Grotesk', sans-serif; }
#inquireModal .btn-close { filter: invert(1) grayscale(1) brightness(2); }
#inquireModal .modal-body { padding: 1.6rem; }
#inquireModal .form-label { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--ink); font-size: .9rem; }
#inquireModal .form-control {
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--line);
    padding: .7rem .9rem;
    transition: border-color .2s, box-shadow .2s;
}
#inquireModal .form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 107, 26, .15); }
#inquireModal .modal-footer { border: none; padding: 0; }
#inquireModal .btn-primary { background: var(--accent); border: none; border-radius: 999px; padding: .8rem; font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
#inquireModal .btn-primary:hover { background: var(--accent-dark); }

@media (max-width: 767px) {
    .product-container { grid-template-columns: 1fr; padding: 1.3rem; }
    .sidebar { position: static; margin-bottom: 1.5rem; }
}

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */
.abouts-us { padding-top: 72px; padding-bottom: 72px; }
.abouts-us .side-menu {
    padding: 0 1.5rem;
}
.abouts-us .side-menu h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 1.2rem;
    padding-bottom: .8rem;
    border-bottom: 2px solid var(--line);
    position: relative;
}
.abouts-us .side-menu h2::after {
    content: ""; position: absolute; left: 0; bottom: -2px; width: 46px; height: 2px; background: var(--accent);
}
.abouts-us .side-menu .nav-link {
    color: var(--body);
    border-radius: var(--radius-sm);
    padding: .7rem 1rem;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    transition: background .2s, color .2s, padding-left .2s;
}
.abouts-us .side-menu .nav-link.active,
.abouts-us .side-menu .nav-link:hover {
    background: linear-gradient(120deg, var(--brand), var(--brand-2));
    color: #fff;
}
.abouts-us .about-content { padding: 0 1.5rem; }
.abouts-us .about-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--ink);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: .8rem;
}
.abouts-us .about-content h3::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 54px; height: 3px; background: var(--accent); border-radius: 3px;
}
.abouts-us .about-content p.h5 { font-weight: 400 !important; color: var(--body); line-height: 1.8; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.about-stats .stat {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem 1rem;
    text-align: center;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.about-stats .stat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.about-stats .stat b {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.9rem;
    color: var(--accent);
    line-height: 1;
}
.about-stats .stat span { color: var(--muted); font-size: .88rem; }

.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2rem;
}
.image-gallery video {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--bg-soft);
}
@media (max-width: 767px) {
    .image-gallery { grid-template-columns: 1fr; }
    .abouts-us .side-menu { margin-bottom: 1.5rem; }
}

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.contact-page.section { padding: 72px 0; }
.contact-page .section-heading h6 {
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .82rem;
    margin-bottom: .6rem;
}
.contact-page .section-heading h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--ink);
    margin-bottom: 2rem;
}
.contact-page .item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.1rem 1.3rem;
    margin-bottom: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-page .item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-page .item img { max-width: 46px !important; }
.contact-page .item h6 { margin: 0; color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; }
.contact-page .item h6 span { color: var(--muted); font-weight: 400; font-size: .85rem; }

#contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
#contact-form fieldset { border: none; padding: 0; margin: 0 0 1.1rem; }
#contact-form label { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--ink); font-size: .88rem; margin-bottom: .4rem; display: block; }
#contact-form input,
#contact-form textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: .75rem .95rem;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--bg-soft);
    transition: border-color .2s, box-shadow .2s, background .2s;
}
#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 26, .14);
}
#contact-form textarea { min-height: 130px; resize: vertical; }
.orange-button {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: .85rem 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
    box-shadow: 0 10px 22px rgba(255, 107, 26, .28);
}
.orange-button:hover { background: var(--accent-dark); transform: translateY(-3px); box-shadow: 0 16px 30px rgba(255, 107, 26, .38); }

.thank-you-box {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 4px solid #28a745;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.thank-you-box .checkmark-icon { width: 56px; height: 56px; margin-bottom: 1rem; }
.thank-you-box .message { color: var(--ink); font-family: 'Space Grotesk', sans-serif; font-weight: 500; }

#map { margin-top: 2.4rem; }
#map iframe { display: block; border-radius: var(--radius) !important; }

/* Our Clients */
.client-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    box-shadow: var(--shadow-sm);
}
.client-card:hover { transform: translateY(-4px); box-shadow: 0 16px 30px rgba(0, 0, 0, .1); }
.client-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .8;
    transition: filter .25s var(--ease), opacity .25s var(--ease);
}
.client-card:hover .client-logo { filter: grayscale(0); opacity: 1; }
.client-name-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
}
.client-name { font-family: 'Space Grotesk', sans-serif; font-weight: 500; color: var(--ink); font-size: .95rem; }
