/* =========================================================
   WOW INTERIORS — GLOBAL STYLESHEET
   Design tokens + base + shared components
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    /* Colors */
    --maroon-900: #2a0a0e;
    --maroon-800: #3d0f14;
    --maroon-700: #4a1218;
    --maroon-600: #5c161d;
    --gold-500: #d9a534;
    --gold-400: #e8c468;
    --gold-050: #fdf6e3;
    --cream-050: #f8f6f3;
    --cream-100: #f1ede6;
    --ink-900: #1a1414;
    --ink-700: #3a3232;
    --ink-500: #665c5c;
    --ink-300: #9a9090;
    --white: #ffffff;
    --line: #e7e0d8;
    --success: #2e7d4f;
    --danger: #b3261e;

    /* Type */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-w: 1240px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 10px rgba(26,20,20,0.06);
    --shadow-md: 0 10px 30px rgba(26,20,20,0.12);
    --shadow-lg: 0 20px 50px rgba(26,20,20,0.18);
    --header-h: 82px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink-700);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink-900);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

.accent { color: var(--gold-500); }

:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    border-radius: var(--radius-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    white-space: nowrap;
}
.btn svg, .btn .arrow { width: 16px; height: 16px; transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--maroon-900);
    box-shadow: var(--shadow-sm);
}
.btn-gold:hover { box-shadow: var(--shadow-md); }

.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.55);
    color: var(--white);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-maroon {
    background: var(--maroon-800);
    color: var(--white);
}
.btn-maroon:hover { background: var(--maroon-700); box-shadow: var(--shadow-md); }

.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* =========================================================
   NAVBAR
   ========================================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    background: rgba(20, 10, 12, 0.92);
    backdrop-filter: blur(10px);
    height: var(--header-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
}

.navbar { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand .brand-mark { color: var(--gold-500); font-size: 1.7rem; }
.brand-text { font-family: var(--font-display); line-height: 1; }
.brand-text .brand-wow {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.brand-text .brand-wow span { color: var(--gold-500); }
.brand-text .brand-sub {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    color: var(--cream-100);
    font-weight: 500;
    margin-top: 2px;
}
.brand-text .brand-tagline {
    display: block;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
    color: var(--gold-400);
    font-weight: 400;
    margin-top: 2px;
}

.nav-menu { display: flex; align-items: center; gap: 34px; }
.nav-menu > li { position: relative; }
.nav-menu a.nav-link {
    color: rgba(255,255,255,0.86);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: color 0.2s ease;
}
.nav-menu a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 26px; left: 0;
    width: 0; height: 2px;
    background: var(--gold-500);
    transition: width 0.25s ease;
}
.nav-menu > li.active > a.nav-link,
.nav-menu a.nav-link:hover { color: var(--gold-400); }
.nav-menu > li.active > a.nav-link::after,
.nav-menu a.nav-link:hover::after { width: 100%; }

.nav-menu .caret { width: 10px; height: 10px; transition: transform 0.2s ease; }
.nav-menu li.has-dropdown:hover .caret { transform: rotate(180deg); }

.dropdown {
    position: absolute;
    top: 100%; left: -18px;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0; visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}
.nav-menu li.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
    display: block;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    color: var(--ink-700);
    font-size: 0.87rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.dropdown a:hover { background: var(--cream-050); color: var(--maroon-800); padding-left: 18px; }

.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav-toggle span { height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s ease; }

/* =========================================================
   HERO (inner pages)
   ========================================================= */
.page-hero {
    position: relative;
    min-height: 460px;
    margin-top: var(--header-h);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.page-hero .hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.page-hero .hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(20,8,10,0.94) 0%, rgba(20,8,10,0.78) 42%, rgba(20,8,10,0.25) 100%);
}
.page-hero .hero-inner {
    position: relative;
    z-index: 2;
    padding: 70px 0 40px;
    width: 100%;
}
.breadcrumb {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
    display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb .current { color: var(--gold-400); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 14px;
}
.hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}
.hero-title .line-gold { color: var(--gold-500); }
.hero-desc {
    max-width: 560px;
    color: rgba(255,255,255,0.82);
    font-size: 1.02rem;
    margin-bottom: 26px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.16);
}
.hero-badge { display: flex; align-items: center; gap: 10px; }
.hero-badge .icon-circ {
    width: 34px; height: 34px;
    border: 1.4px solid var(--gold-500);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-400);
    flex-shrink: 0;
}
.hero-badge span { font-size: 0.78rem; color: rgba(255,255,255,0.85); line-height: 1.3; }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
    position: relative; z-index: 3;
    background: var(--maroon-800);
    color: var(--white);
}
.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    text-align: center;
    padding: 26px 14px;
    border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-icon { color: var(--gold-500); margin-bottom: 8px; }
.stat-item .stat-num { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold-400); }
.stat-item .stat-label { font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 2px; }
.stat-item .stat-note { font-size: 0.74rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* =========================================================
   SECTION HEADING
   ========================================================= */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-alt { background: var(--cream-050); }
.section-dark { background: var(--maroon-800); color: var(--white); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.section-head .eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.section-head .eyebrow::before, .section-head .eyebrow::after {
    content: ''; width: 24px; height: 1px; background: var(--gold-500);
}
.section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-sub { color: var(--ink-500); margin-top: 12px; font-size: 1rem; }
.section-dark .section-title, .section-dark h2 { color: var(--white); }
.section-dark .section-sub { color: rgba(255,255,255,0.72); }

/* =========================================================
   TWO COLUMN / ABOUT-STYLE BLOCKS
   ========================================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; }
.split-media .float-tag {
    position: absolute;
    bottom: -18px; right: -18px;
    background: var(--maroon-800);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-md);
}
.split-media .float-tag .icon { color: var(--gold-500); margin-bottom: 4px; }
.split-media .float-tag span { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.03em; }

.check-list { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--ink-700); }
.check-list li .chk {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--gold-050); color: var(--maroon-800);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}

.feature-points { display: flex; flex-direction: column; gap: 20px; }
.feature-point { display: flex; gap: 14px; }
.feature-point .fp-icon {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--gold-050); color: var(--maroon-800);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.feature-point .fp-title { font-family: var(--font-display); font-weight: 600; font-size: 0.96rem; color: var(--maroon-800); margin-bottom: 3px; }
.feature-point .fp-desc { font-size: 0.86rem; color: var(--ink-500); }

/* =========================================================
   CARDS: CATEGORIES / APPLICATIONS / PRODUCTS
   ========================================================= */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.cat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat-card .cat-media { position: relative; height: 220px; overflow: hidden; }
.cat-card .cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.cat-card:hover .cat-media img { transform: scale(1.08); }
.cat-card .cat-icon {
    position: absolute; top: 14px; left: 14px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(20,10,12,0.7); backdrop-filter: blur(4px);
    color: var(--gold-400);
    display: flex; align-items: center; justify-content: center;
}
.cat-card .cat-body { padding: 22px; }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.cat-card p { font-size: 0.86rem; color: var(--ink-500); margin-bottom: 14px; }
.cat-card .cat-link { font-family: var(--font-display); font-size: 0.8rem; font-weight: 600; color: var(--maroon-800); display: inline-flex; align-items: center; gap: 6px; }
.cat-card .cat-link svg { width: 14px; height: 14px; transition: transform 0.25s ease; }
.cat-card:hover .cat-link svg { transform: translateX(4px); }

/* application category / app cards on Applications page */
.app-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.app-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.app-card .app-media { height: 170px; overflow: hidden; }
.app-card .app-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.app-card:hover .app-media img { transform: scale(1.07); }
.app-card .app-body { padding: 20px; position: relative; }
.app-card .app-icon-badge {
    position: absolute; top: -24px; left: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--maroon-800); color: var(--gold-400);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-sm);
}
.app-card h3 { margin-top: 12px; font-size: 1rem; }
.app-card p { font-size: 0.84rem; color: var(--ink-500); margin: 8px 0 12px; }
.app-card .cat-link { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; color: var(--maroon-800); display: inline-flex; align-items: center; gap: 5px; }

/* product sub-item tiles (Products & Solutions page) */
.subprod-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 20px; }
.subprod {
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: transform 0.3s ease;
}
.subprod:hover { transform: translateY(-4px); }
.subprod .subprod-media { height: 110px; overflow: hidden; }
.subprod .subprod-media img { width: 100%; height: 100%; object-fit: cover; }
.subprod .subprod-label { padding: 10px 12px; font-size: 0.8rem; font-weight: 600; font-family: var(--font-display); text-align: center; color: var(--ink-700); }

.category-block { margin-bottom: 60px; }
.category-block-head { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 6px; }
.category-block-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold-050); -webkit-text-stroke: 1.4px var(--gold-500); line-height: 1; }
.category-block-head h3 { font-size: 1.3rem; margin-bottom: 6px; }
.category-block-head p { color: var(--ink-500); font-size: 0.9rem; max-width: 480px; }

/* =========================================================
   APPLICATIONS "USE WITH" PILLS
   ========================================================= */
.pill-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    background: var(--maroon-900);
    padding: 34px 0;
}
.pill-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--white); }
.pill-item .pill-icon { color: var(--gold-500); }
.pill-item span { font-size: 0.82rem; font-weight: 500; }

/* =========================================================
   TESTIMONIAL / QUOTE
   ========================================================= */
.quote-box {
    background: var(--maroon-800);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    position: relative;
}
.quote-box .quote-mark { font-family: Georgia, serif; font-size: 3rem; color: var(--gold-500); line-height: 1; margin-bottom: 6px; }
.quote-box p { font-size: 1.02rem; line-height: 1.6; }
.quote-box .quote-name { margin-top: 20px; font-family: var(--font-display); font-style: italic; color: var(--gold-400); }

/* =========================================================
   TEAM
   ========================================================= */
.team-card { text-align: center; }
.team-card .team-photo {
    width: 100%; aspect-ratio: 1/1; border-radius: var(--radius-md);
    overflow: hidden; margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1rem; }
.team-card .role { color: var(--gold-500); font-size: 0.82rem; font-weight: 600; margin: 4px 0 10px; }
.team-card .team-social { display: flex; justify-content: center; gap: 10px; }
.team-card .team-social a {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--cream-050); color: var(--maroon-800);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.team-card .team-social a:hover { background: var(--maroon-800); color: var(--white); }

/* =========================================================
   AWARDS / ACHIEVEMENTS
   ========================================================= */
.award-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.award-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.award-card .award-media { height: 170px; overflow: hidden; }
.award-card .award-media img { width: 100%; height: 100%; object-fit: cover; }
.award-card .award-body { padding: 18px; }
.award-card h4 { font-size: 0.94rem; margin-bottom: 6px; }
.award-card p { font-size: 0.82rem; color: var(--ink-500); }

.timeline { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; text-align: center; }
.timeline::before {
    content: ''; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px;
    background: repeating-linear-gradient(90deg, var(--gold-500) 0 6px, transparent 6px 12px);
}
.timeline-item { position: relative; padding-top: 0; }
.timeline-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--maroon-800); color: var(--gold-400);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; position: relative; z-index: 2;
    box-shadow: 0 0 0 6px var(--white);
}
.timeline-item h4 { font-family: var(--font-display); font-size: 0.98rem; margin-bottom: 8px; }
.timeline-item p { font-size: 0.8rem; color: var(--ink-500); }

/* =========================================================
   PROJECTS
   ========================================================= */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter-tabs button {
    padding: 11px 20px;
    border-radius: 30px;
    border: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 0.84rem; font-weight: 600;
    color: var(--ink-700);
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.25s ease;
    background: var(--white);
}
.filter-tabs button:hover { border-color: var(--maroon-800); color: var(--maroon-800); }
.filter-tabs button.active { background: var(--maroon-800); border-color: var(--maroon-800); color: var(--white); }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-sm);
}
.project-card.tall { height: 300px; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover img { transform: scale(1.08); }
.project-card .project-tag {
    position: absolute; top: 16px; left: 16px;
    background: var(--maroon-800); color: var(--gold-400);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
    padding: 6px 12px; border-radius: 4px; text-transform: uppercase;
    z-index: 2;
}
.project-card .project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,7,8,0.92) 0%, rgba(15,7,8,0.15) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 22px; color: var(--white); z-index: 1;
}
.project-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.project-card .meta { display: flex; flex-direction: column; gap: 4px; font-size: 0.78rem; color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.project-card .meta span { display: flex; align-items: center; gap: 6px; }
.project-card .view-link { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--gold-400); display: inline-flex; align-items: center; gap: 6px; }

/* =========================================================
   LOGOS STRIP
   ========================================================= */
.logos-strip { display: flex; align-items: center; justify-content: center; gap: 50px; flex-wrap: wrap; }
.logos-strip img { height: 46px; object-fit: contain; filter: grayscale(15%); opacity: 0.9; }
.logos-strip .more-text { font-family: var(--font-display); font-weight: 600; color: var(--ink-500); }

/* =========================================================
   MINI STAT STRIP (accent bar variant)
   ========================================================= */
.mini-stats {
    background: var(--maroon-800);
    border-radius: var(--radius-md);
    display: grid; grid-template-columns: repeat(5, 1fr);
    color: var(--white);
    overflow: hidden;
}
.mini-stats .ms-item { text-align: center; padding: 26px 10px; border-right: 1px solid rgba(255,255,255,0.12); }
.mini-stats .ms-item:last-child { border-right: none; }
.mini-stats .ms-icon { color: var(--gold-500); margin-bottom: 8px; }
.mini-stats .ms-num { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--gold-400); }
.mini-stats .ms-label { font-size: 0.76rem; color: rgba(255,255,255,0.78); margin-top: 2px; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
    background: linear-gradient(120deg, var(--maroon-900), var(--maroon-700));
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 44px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 30px; flex-wrap: wrap;
}
.cta-banner .cta-left { display: flex; align-items: center; gap: 20px; }
.cta-banner .cta-icon-circ {
    width: 56px; height: 56px; border-radius: 50%;
    border: 1.5px solid var(--gold-500); color: var(--gold-400);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-banner h3 { color: var(--white); font-size: 1.35rem; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 4px; }
.cta-banner .cta-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-whatsapp-link { display: flex; align-items: center; gap: 8px; color: var(--gold-400); font-size: 0.86rem; font-weight: 600; }

/* full-width dark cta (home/projects style) */
.cta-strip {
    background: var(--maroon-800);
    color: var(--white);
    padding: 34px 0;
}
.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-strip .cta-text h3 { color: var(--white); font-size: 1.3rem; }
.cta-strip .cta-text span { color: var(--gold-400); }
.cta-strip .cta-features { display: flex; gap: 30px; flex-wrap: wrap; }
.cta-strip .cta-feature { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.85); }
.cta-strip .cta-feature .fico { color: var(--gold-500); }

/* =========================================================
   BOTTOM INFO STRIP (icons row)
   ========================================================= */
.info-strip { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.info-strip .info-item { display: flex; align-items: center; gap: 12px; }
.info-strip .info-item .ii-icon { color: var(--maroon-800); }
.info-strip .info-item .ii-num { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--maroon-800); }
.info-strip .info-item .ii-label { font-size: 0.78rem; color: var(--ink-500); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: #150809; color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand-text .brand-sub, .footer-brand .brand-text .brand-tagline { color: rgba(255,255,255,0.55); }
.footer-brand p { font-size: 0.86rem; margin: 16px 0 20px; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--maroon-900); }
.footer-col h5 { color: var(--white); font-family: var(--font-display); font-size: 0.94rem; margin-bottom: 20px; letter-spacing: 0.03em; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.62); transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col ul li a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; margin-bottom: 16px; color: rgba(255,255,255,0.68); }
.footer-contact li svg { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); 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: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--gold-400); }

/* Floating action buttons */
.float-actions { position: fixed; right: 24px; bottom: 26px; z-index: 800; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease;
}
.float-btn:hover { transform: translateY(-3px) scale(1.05); }
.float-btn.whatsapp { background: #25d366; color: var(--white); }
.float-btn.totop { background: var(--maroon-800); color: var(--gold-400); opacity: 0; pointer-events: none; transform: translateY(10px); }
.float-btn.totop.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* =========================================================
   FORMS (Contact page)
   ========================================================= */
.form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 36px;
}
.form-card .form-head { text-align: center; margin-bottom: 26px; }
.form-card .eyebrow { display: block; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--ink-700); font-family: var(--font-display); }
.form-group label .opt { color: var(--ink-300); font-weight: 400; font-family: var(--font-body); }
.form-group input, .form-group select, .form-group textarea {
    padding: 13px 15px;
    border: 1.4px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--ink-900);
    background: var(--cream-050);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold-500); background: var(--white); outline: none;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.budget-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.budget-opt {
    border: 1.4px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--cream-050);
}
.budget-opt input { display: none; }
.budget-opt .bo-icon { color: var(--maroon-800); margin-bottom: 6px; }
.budget-opt span.bo-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-700); }
.budget-opt.selected, .budget-opt:hover { border-color: var(--gold-500); background: var(--gold-050); }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--ink-500); margin-bottom: 20px; }
.form-check input { margin-top: 3px; }
.form-check a { color: var(--maroon-800); font-weight: 600; }
.form-msg { padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 18px; display: none; }
.form-msg.success { background: #e9f7ef; color: var(--success); display: block; }
.form-msg.error { background: #fbeceb; color: var(--danger); display: block; }
.field-error { font-size: 0.76rem; color: var(--danger); display: none; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: var(--danger); }
.form-group.invalid .field-error { display: block; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.info-cards-col { display: flex; flex-direction: column; gap: 22px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; }
.info-card .ic-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--maroon-800); color: var(--gold-400);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-card h4 { font-size: 0.94rem; margin-bottom: 4px; }
.info-card p { font-size: 0.86rem; color: var(--ink-500); }

.office-card { display: flex; gap: 16px; background: var(--white); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.office-card img { width: 96px; height: 96px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.office-card h4 { font-size: 0.94rem; margin-bottom: 4px; }
.office-card p { font-size: 0.82rem; color: var(--ink-500); margin-bottom: 6px; }
.office-card a.dir-link { font-size: 0.78rem; font-weight: 600; color: var(--maroon-800); }

.process-strip { background: var(--maroon-900); border-radius: var(--radius-md); padding: 30px; color: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 22px; }
.process-step { text-align: center; }
.process-step .ps-num {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid var(--gold-500);
    color: var(--gold-400);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px; font-family: var(--font-display); font-weight: 700;
}
.process-step h5 { color: var(--white); font-size: 0.86rem; margin-bottom: 6px; }
.process-step p { font-size: 0.76rem; color: rgba(255,255,255,0.6); }

.map-embed { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); height: 340px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================
   LEAD GATE (index.php)
   ========================================================= */
.lead-gate {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    padding: 40px 20px;
    overflow: hidden;
}
.lead-gate .lg-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.lead-gate .lg-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(42,10,14,0.94), rgba(20,5,7,0.96)); }
.lead-gate-card {
    position: relative; z-index: 2;
    width: 100%; max-width: 560px;
    border: 1px solid rgba(217,165,52,0.35);
    border-radius: var(--radius-md);
    padding: 46px 44px;
    background: rgba(30,10,12,0.35);
    backdrop-filter: blur(6px);
    color: var(--white);
}
.lead-gate-logo { text-align: center; margin-bottom: 22px; }
.lead-gate-logo .brand-mark { font-size: 2.6rem; color: var(--gold-500); }
.lead-gate-logo .brand-wow { font-size: 2rem; }
.lead-gate-logo .brand-sub { letter-spacing: 0.4em; }
.lead-gate h1 {
    text-align: center; color: var(--white);
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    margin: 18px 0 6px;
}
.lead-gate h1 .line-gold { color: var(--gold-500); display: block; }
.lead-gate .lg-desc { text-align: center; color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 30px; }
.lg-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.lg-input-wrap { position: relative; }
.lg-input-wrap .lg-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--gold-400); }
.lg-input-wrap input, .lg-input-wrap select {
    width: 100%;
    padding: 15px 15px 15px 42px;
    background: rgba(255,255,255,0.06);
    border: 1.4px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.9rem;
}
.lg-input-wrap select { appearance: none; }
.lg-input-wrap select option { color: var(--ink-900); }
.lg-input-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.lg-input-wrap input:focus, .lg-input-wrap select:focus { border-color: var(--gold-500); outline: none; background: rgba(255,255,255,0.1); }
.lg-privacy { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.76rem; color: rgba(255,255,255,0.55); }
.lg-skip { text-align: center; margin-top: 18px; }
.lg-skip a { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-decoration: underline; }
.lg-skip a:hover { color: var(--gold-400); }

/* =========================================================
   HOME HERO w/ VIDEO
   ========================================================= */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 860px;
    margin-top: var(--header-h);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}
.home-hero video, .home-hero .video-fallback {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.home-hero .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(95deg, rgba(15,7,8,0.88) 0%, rgba(15,7,8,0.55) 45%, rgba(15,7,8,0.25) 100%);
}
.home-hero .hero-inner { position: relative; z-index: 2; }
.home-hero .hero-title { font-size: clamp(2.4rem, 5.2vw, 3.8rem); line-height: 1.08; margin-bottom: 18px; }
.home-hero .hero-title .gold-line { display: block; color: var(--gold-500); }
.home-hero .hero-desc { max-width: 520px; font-size: 1.05rem; margin-bottom: 30px; }
.hero-controls { position: absolute; z-index: 3; bottom: 0; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 30px 26px; }
.hero-ctrl-btn {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.14); backdrop-filter: blur(4px);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.2s ease;
}
.hero-ctrl-btn:hover { background: rgba(255,255,255,0.28); }
.hero-scroll-cue { display: flex; justify-content: center; }
.subprod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.subprod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .subprod-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .subprod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .subprod-grid {
        grid-template-columns: 1fr;
    }
}


.subprod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.subprod-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f5;
}

.subprod-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .subprod-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .subprod-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .subprod-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   MASONRY PRODUCT GRID
   ========================================= */

.subprod-grid {
    column-count: 4;
    column-gap: 20px;
    width: 100%;
}

.subprod {
    display: inline-block;
    width: 100%;
    margin: 0 0 24px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    vertical-align: top;
}

/* Image container - NO fixed height */
.subprod-media {
    width: 100%;
    height: auto !important;
    aspect-ratio: auto !important;
    overflow: visible;
    background: transparent;
}

/* Image - preserve original proportions */
.subprod-media img {
    display: block;
    width: 100%;
    height: auto !important;
    max-width: 100%;
    object-fit: initial !important;
}

/* Category name */
.subprod-label {
    display: block;
    padding: 10px 4px 4px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1024px) {

    .subprod-grid {
        column-count: 3;
        column-gap: 18px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .subprod-grid {
        column-count: 2;
        column-gap: 15px;
    }

}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 480px) {

    .subprod-grid {
        column-count: 1;
    }

}

section-alt {
    background: #ffffff !important;
}

.logos-strip img {
  height: 100px;
  opacity: 1;
}

/* =========================================
   CLIENT LOGO CONTINUOUS SLIDER
   ========================================= */

.logos-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.logo-item {
    width: 180px;
    height: 90px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-item img {
    display: block;
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
}


/* Mobile */

@media (max-width: 768px) {

    .logo-item {
        width: 140px;
        height: 75px;
        margin-right: 15px;
    }

    .logo-item img {
        max-width: 115px;
        max-height: 55px;
    }

}

.award-card .award-media {
    height: 300px;
    overflow: hidden;
}

.site-logo {
    display: block;
    width: 180px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-logo {
        width: 145px;
        max-height: 60px;
    }
}