/* ========================================
   SC GRAPHICS & PROMOTIONS - MASTER STYLESHEET
   ======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #1a3a8f;
    --blue-mid: #2350c8;
    --blue-lt: #3a6ee8;
    --blue-pale: #e8eef9;
    --blue-glow: rgba(35, 80, 200, .12);
    --white: #ffffff;
    --off: #f4f7fd;
    --ink: #0e1b3d;
    --mid: #5a6a8a;
    --border: #dbe4f5;
    --heading: 'Montserrat', sans-serif;
    --body: 'Inter', sans-serif;
    --nav-h: 70px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
}

/* ===== TOP BAR ===== */
.topbar {
    background: var(--blue);
    padding: .4rem clamp(1rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .75rem;
    color: rgba(255, 255, 255, .75);
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.topbar a:hover {
    color: #fff;
}

.topbar-left {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-right {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.topbar i {
    margin-right: .3rem;
}

/* ===== NAVIGATION ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    background: var(--white);
    border-bottom: 2px solid var(--blue-pale);
    display: flex;
    align-items: center;
    padding: 0 clamp(1rem, 4vw, 3rem);
    gap: 1.5rem;
    box-shadow: 0 2px 16px rgba(26, 58, 143, .08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-box {
    width: 42px;
    height: 42px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: -.02em;
}

.logo-box img {
    width: 60%;
    height: 50%;
    object-fit: contain;
}

.logo-text .top {
    font-family: var(--heading);
    font-weight: 800;
    font-size: .95rem;
    color: var(--blue);
    letter-spacing: .02em;
    text-transform: uppercase;
}

.logo-text .bottom {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mid);
}

.nav-search {
    flex: 1;
    max-width: 420px;
    display: flex;
    align-items: center;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s;
}

.nav-search:focus-within {
    border-color: var(--blue-lt);
}

.nav-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: .55rem .9rem;
    font-size: .88rem;
    font-family: var(--body);
    color: var(--ink);
    outline: none;
}

.nav-search button {
    background: var(--blue);
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    padding: 0.5rem 1.2rem;
    height: auto;
    color: #fff;
    font-size: 1rem;
    transition: background .2s;
}

.nav-search button:hover {
    background: var(--blue-mid);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-left: auto;
}

.nav-links a {
    font-size: .84rem;
    font-weight: 600;
    font-family: var(--heading);
    letter-spacing: .03em;
    text-decoration: none;
    color: var(--ink);
    padding: .4rem .7rem;
    border-radius: 6px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
    background: var(--blue-pale);
}

.nav-links .cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: .45rem 1.1rem;
    border-radius: 7px;
    margin-left: .5rem;
}

.nav-links .cta:hover {
    background: var(--blue-mid) !important;
}

.hamburger {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--blue);
}

/* ===== MOBILE DRAWER ===== */
.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    z-index: 200;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 2px solid var(--blue-pale);
    box-shadow: -4px 0 24px rgba(0, 0, 0, .1);
    transition: right .3s ease;
}

.drawer.open {
    right: 0;
}

.drawer-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--blue);
    cursor: pointer;
}

.drawer a {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    text-decoration: none;
    padding: .75rem .5rem;
    border-bottom: 1px solid var(--border);
    transition: color .2s;
}

.drawer a:hover {
    color: var(--blue);
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 150;
}

.overlay.show {
    display: block;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--off);
    padding: .7rem clamp(1.5rem, 5vw, 5rem);
    border-bottom: 1px solid var(--border);
}

.breadcrumb a,
.breadcrumb span {
    font-size: .75rem;
    color: var(--mid);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb i {
    font-size: .7rem;
    margin: 0 6px;
}

/* ===== HERO SECTION (HOME) ===== */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 55%, #1a6ed4 100%);
    min-height: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4rem clamp(1.5rem, 5vw, 5rem);
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 100px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border: 60px solid rgba(255, 255, 255, .04);
    border-radius: 50%;
    bottom: -120px;
    left: 30%;
    pointer-events: none;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 99px;
    padding: .3rem .9rem;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .9);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-h1 {
    font-family: var(--heading);
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -.01em;
    margin-bottom: 1.1rem;
}

.hero-h1 .highlight {
    color: #ffd166;
}

.hero-p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.75;
    max-width: 430px;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
}

.btn-white {
    padding: .72rem 1.8rem;
    background: var(--white);
    color: var(--blue);
    font-family: var(--heading);
    font-weight: 700;
    font-size: .84rem;
    letter-spacing: .04em;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.btn-ghost {
    padding: .72rem 1.8rem;
    background: rgba(255, 255, 255, .12);
    border: 1.5px solid rgba(255, 255, 255, .35);
    color: var(--white);
    font-family: var(--heading);
    font-weight: 600;
    font-size: .84rem;
    letter-spacing: .04em;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background .2s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .22);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.hero-stat .num {
    font-family: var(--heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffd166;
    line-height: 1;
}

.hero-stat .lbl {
    font-size: .72rem;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: .2rem;
}

.hero-right {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
}

.hcard {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: 1.1rem;
    backdrop-filter: blur(8px);
    transition: background .2s;
}

.hcard:hover {
    background: rgba(255, 255, 255, .2);
}

.hcard-icon {
    font-size: 1.8rem;
    margin-bottom: .6rem;
    display: block;
}

.hcard-title {
    font-family: var(--heading);
    font-weight: 700;
    font-size: .88rem;
    color: var(--white);
    margin-bottom: .25rem;
}

.hcard-sub {
    font-size: .73rem;
    color: rgba(255, 255, 255, .6);
}

/* ===== MARQUEE ===== */
.marquee-wrap {
    background: var(--blue-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: .65rem 0;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 24s linear infinite;
}

.marquee-item {
    font-family: var(--heading);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--blue);
    padding: 0 2rem;
    display: inline-flex;
    align-items: center;
    gap: .8rem;
}

.marquee-item::after {
    content: '◆';
    font-size: .45rem;
    color: var(--blue-lt);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== GENERAL SECTIONS ===== */
.section {
    padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 5rem);
}

.section-header {
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue-mid);
    background: var(--blue-pale);
    border-radius: 99px;
    padding: .25rem .85rem;
    margin-bottom: .85rem;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-mid);
}

.section-title {
    font-family: var(--heading);
    font-weight: 800;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -.01em;
}

.section-title span {
    color: var(--blue);
}

.section-sub {
    font-size: .95rem;
    color: var(--mid);
    line-height: 1.75;
    max-width: 520px;
    margin-top: .6rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.svc-card {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.svc-card:hover {
    border-color: var(--blue-lt);
    box-shadow: 0 8px 30px var(--blue-glow);
    transform: translateY(-4px);
}

.svc-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 1.1rem;
    transition: background .2s;
}

.svc-card:hover .svc-icon-wrap {
    background: var(--blue);
    color: #fff;
}

.svc-name {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: .5rem;
}

.svc-desc {
    font-size: .84rem;
    color: var(--mid);
    line-height: 1.65;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    margin-top: .9rem;
    transition: gap .15s;
}

.svc-link:hover {
    gap: .55rem;
}

/* ===== DEALS / PRODUCTS SECTION ===== */
.deals-section {
    background: var(--off);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.25rem;
}

.deal-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.deal-card:hover {
    box-shadow: 0 10px 32px rgba(26, 58, 143, .1);
    transform: translateY(-4px);
}

.deal-thumb {
    height: 170px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
}

.deal-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--blue);
    color: #fff;
    font-family: var(--heading);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: 99px;
}

.deal-body {
    padding: 1.1rem;
}

.deal-cat {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: .3rem;
}

.deal-name {
    font-family: var(--heading);
    font-weight: 700;
    font-size: .98rem;
    color: var(--ink);
    margin-bottom: .35rem;
}

.deal-desc {
    font-size: .8rem;
    color: var(--mid);
    line-height: 1.5;
}

.deal-action {
    display: flex;
    margin-top: .9rem;
}

.deal-btn {
    font-size: .78rem;
    font-weight: 700;
    font-family: var(--heading);
    background: var(--blue);
    color: #fff;
    padding: .4rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: .04em;
    transition: background .2s;
}

.deal-btn:hover {
    background: var(--blue-mid);
}

/* ===== WHY US SECTION ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.why-card {
    background: var(--blue);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 30px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.why-num {
    font-family: var(--heading);
    font-weight: 900;
    font-size: 2.2rem;
    color: rgba(255, 255, 255, .15);
    line-height: 1;
    margin-bottom: .75rem;
}

.why-icon {
    font-size: 1.6rem;
    color: #ffd166;
    margin-bottom: .75rem;
    display: block;
}

.why-title {
    font-family: var(--heading);
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .4rem;
}

.why-text {
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.65;
}

/* ===== CTA BAND ===== */
.cta-band {
    background: linear-gradient(120deg, var(--blue) 0%, var(--blue-mid) 100%);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band h2 {
    font-family: var(--heading);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    color: var(--white);
    line-height: 1.2;
}

.cta-band p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    margin-top: .4rem;
    max-width: 380px;
}

.btn-cta-white {
    padding: .85rem 2.2rem;
    background: var(--white);
    color: var(--blue);
    font-family: var(--heading);
    font-weight: 800;
    font-size: .88rem;
    letter-spacing: .04em;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .18);
    transition: transform .15s;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem) 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-box {
    background: var(--blue-lt);
}

.footer-logo .logo-box img {
    width: 60%;
    height: 50%;
    object-fit: contain;
}

.footer-logo .top {
    color: #fff;
}

.footer-logo .bottom {
    color: rgba(255, 255, 255, .5);
}

.footer-about {
    font-size: .84rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: .6rem;
    margin-top: 1.25rem;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.footer-socials a:hover {
    background: var(--blue);
    color: #fff;
}

footer h5 {
    font-family: var(--heading);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 1.1rem;
}

footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

footer ul li a {
    font-size: .84rem;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: .4rem;
}

footer ul li a:hover {
    color: #fff;
}

footer ul li a::before {
    content: '→';
    font-size: .65rem;
    color: var(--blue-lt);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-size: .84rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: .65rem;
}

.footer-contact-item i {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-lt);
    font-size: .85rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    font-size: .76rem;
    color: rgba(255, 255, 255, .35);
    flex-wrap: wrap;
    gap: .5rem;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-hero {
    background: linear-gradient(115deg, #0e1b3d 0%, var(--blue) 45%, var(--blue-lt) 100%);
    padding: 3.5rem clamp(1.5rem, 5vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.about-hero-content {
    max-width: 600px;
}

.about-hero-badge {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 99px;
    padding: .3rem 1rem;
    display: inline-flex;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: #ffd166;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.about-hero h1 {
    font-family: var(--heading);
    font-weight: 800;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.about-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    max-width: 560px;
}

.mission-vision {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 3rem clamp(1.5rem, 5vw, 5rem);
    background: var(--off);
}

.mcard {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 2rem 1.8rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    border: 1px solid var(--border);
    transition: transform .2s;
}

.mcard:hover {
    transform: translateY(-4px);
    border-color: var(--blue-lt);
}

.mcard-icon {
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.mcard h3 {
    font-family: var(--heading);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: .8rem;
}

.mcard p {
    color: var(--mid);
    line-height: 1.65;
}

.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem clamp(1.5rem, 5vw, 5rem);
    align-items: center;
}

.story-text h2 {
    font-family: var(--heading);
    font-weight: 800;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
    letter-spacing: -.01em;
}

.story-text .accent {
    color: var(--blue);
}

.story-text p {
    margin-bottom: 1rem;
    color: var(--mid);
    line-height: 1.7;
}

.story-visual {
    background: var(--blue-pale);
    border-radius: 30px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.story-visual-inner {
    background: var(--white);
    padding: 2rem;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .05);
}

.story-visual-inner i {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: .75rem;
    display: block;
}

.years-badge {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--blue);
    font-family: var(--heading);
}

.values-section {
    background: var(--white);
    padding: 4rem clamp(1.5rem, 5vw, 5rem);
}

.section-tag-line {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue-mid);
    background: var(--blue-pale);
    border-radius: 99px;
    padding: .25rem .85rem;
    margin-bottom: .8rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--off);
    border-radius: 20px;
    padding: 1.8rem;
    transition: all .25s;
    border: 1px solid var(--border);
}

.value-card:hover {
    background: white;
    border-color: var(--blue-lt);
    box-shadow: 0 12px 26px var(--blue-glow);
}

.value-icon {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.value-card p {
    font-size: .85rem;
    color: var(--mid);
    line-height: 1.6;
}

.team-section {
    background: var(--blue-pale);
    padding: 4rem clamp(1.5rem, 5vw, 5rem);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: white;
    border-radius: 28px;
    text-align: center;
    padding: 1.8rem 1rem;
    transition: all .2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .02);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--blue);
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: white;
    font-weight: 700;
    font-family: var(--heading);
}

.team-card h4 {
    font-weight: 800;
    font-family: var(--heading);
    margin-bottom: .2rem;
}

.team-card .role {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--blue-mid);
    margin-bottom: .6rem;
}

.team-card p {
    font-size: .8rem;
    color: var(--mid);
}

.stats-banner {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
    margin: 0 clamp(1.5rem, 5vw, 5rem) 2rem clamp(1.5rem, 5vw, 5rem);
    border-radius: 2rem;
    padding: 2rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.8rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--heading);
    color: #ffd166;
    line-height: 1.2;
}

.stat-label {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .8;
}

/* ===== CONTACT PAGE SPECIFIC ===== */
.contact-hero {
    background: linear-gradient(115deg, #0e1b3d 0%, var(--blue) 45%, var(--blue-lt) 100%);
    padding: 3rem clamp(1.5rem, 5vw, 5rem);
    text-align: center;
}

.contact-hero h1 {
    font-family: var(--heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: .75rem;
}

.contact-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    padding: 4rem clamp(1.5rem, 5vw, 5rem);
    background: var(--white);
}

.info-card {
    background: var(--off);
    border-radius: 24px;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all .2s;
    border: 1px solid var(--border);
}

.info-card:hover {
    border-color: var(--blue-lt);
    box-shadow: 0 8px 20px var(--blue-glow);
}

.info-icon {
    width: 52px;
    height: 52px;
    background: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.info-card p,
.info-card a {
    color: var(--mid);
    line-height: 1.6;
    text-decoration: none;
    display: block;
    margin-top: .3rem;
    font-size: .9rem;
}

.info-card a:hover {
    color: var(--blue);
}

.social-links-contact {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links-contact a {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.1rem;
    transition: .2s;
}

.social-links-contact a:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-3px);
}

.map-card {
    background: var(--off);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: .5rem;
}

.map-card iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}

.form-card {
    background: var(--white);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .05);
    border: 1px solid var(--border);
}

.form-card h2 {
    font-family: var(--heading);
    font-weight: 800;
    font-size: 1.7rem;
    margin-bottom: .5rem;
}

.form-card p {
    color: var(--mid);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: .8rem;
    margin-bottom: .4rem;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .9rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--body);
    font-size: .9rem;
    transition: border .2s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 58, 143, .1);
}

.btn-submit {
    background: var(--blue);
    color: white;
    border: none;
    padding: .9rem 1.8rem;
    border-radius: 40px;
    font-weight: 700;
    font-family: var(--heading);
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s, transform .1s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
}

.contact-highlight {
    background: linear-gradient(120deg, var(--blue-pale), white);
    padding: 2rem clamp(1.5rem, 5vw, 5rem);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.faq-section {
    padding: 4rem clamp(1.5rem, 5vw, 5rem);
    background: var(--off);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    border-radius: 18px;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border);
}

.faq-item h4 {
    font-family: var(--heading);
    font-weight: 700;
    margin-bottom: .4rem;
    display: flex;
    gap: .5rem;
    align-items: center;
}

.faq-item p {
    font-size: .85rem;
    color: var(--mid);
    line-height: 1.6;
}

.success-msg {
    background: #d1fae5;
    color: #065f46;
    padding: .8rem;
    border-radius: 12px;
    margin-top: 1rem;
    text-align: center;
    display: none;
}

/* ===== SERVICES PAGE SPECIFIC ===== */
.service-hero {
    background: linear-gradient(135deg, #0b2a6e 0%, var(--blue) 45%, var(--blue-mid) 100%);
    padding: 3rem clamp(1.5rem, 5vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-hero-content {
    max-width: 600px;
}

.service-hero-badge {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 99px;
    padding: .3rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 700;
    font-size: .7rem;
    letter-spacing: .12em;
    color: #ffd166;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-hero h1 {
    font-family: var(--heading);
    font-weight: 900;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.service-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    max-width: 500px;
}

.service-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.service-hero-stats .num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffd166;
    font-family: var(--heading);
}

.service-hero-stats .lbl {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .6);
}

.services-master-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem clamp(1.5rem, 5vw, 5rem);
}

.service-category {
    background: var(--white);
    border-radius: 24px;
}

.category-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.8rem;
    border-left: 5px solid var(--blue);
    padding-left: 1rem;
}

.category-header h2 {
    font-family: var(--heading);
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--ink);
}

.cat-desc {
    color: var(--mid);
    font-size: .9rem;
    max-width: 600px;
    margin-top: .3rem;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1.8rem;
}

.service-detail-card {
    background: var(--off);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform .2s, box-shadow .2s;
    border: 1px solid var(--border);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 28px var(--blue-glow);
    background: var(--white);
    border-color: var(--blue-lt);
}

.service-icon-lg {
    width: 58px;
    height: 58px;
    background: var(--blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.3rem;
}

.service-detail-card h3 {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: .6rem;
}

.service-detail-card p {
    color: var(--mid);
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin-top: .5rem;
}

.feature-list li {
    font-size: .8rem;
    margin-bottom: .45rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--ink);
}

.feature-list li i {
    color: var(--blue);
    font-size: .7rem;
}

.service-cta-small {
    margin-top: 1rem;
    display: inline-block;
    font-weight: 700;
    font-size: .8rem;
    color: var(--blue);
    text-decoration: none;
    border-bottom: 1.5px dashed var(--blue-lt);
    transition: .2s;
}

.service-cta-small:hover {
    color: var(--blue-mid);
}

.process-steps {
    background: var(--blue-pale);
    padding: 4rem clamp(1.5rem, 5vw, 5rem);
    margin-top: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.step {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 28px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .02);
}

.step-circle {
    width: 64px;
    height: 64px;
    background: var(--blue);
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    margin: 0 auto 1rem;
    font-family: var(--heading);
}

.step h4 {
    font-family: var(--heading);
    font-weight: 700;
    margin-bottom: .4rem;
}

.step p {
    font-size: .8rem;
    color: var(--mid);
}

.quote-banner {
    background: linear-gradient(110deg, var(--ink) 0%, var(--blue) 100%);
    margin: 0 1.5rem 3rem 1.5rem;
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.quote-banner h3 {
    font-family: var(--heading);
    font-weight: 800;
    color: white;
    font-size: 1.5rem;
}

.quote-banner p {
    color: rgba(255, 255, 255, .7);
    margin-top: .25rem;
}

.btn-quote {
    background: #ffd166;
    color: var(--ink);
    padding: .75rem 1.8rem;
    border-radius: 40px;
    font-weight: 800;
    text-decoration: none;
    font-family: var(--heading);
    transition: .2s;
}

.btn-quote:hover {
    background: #ffcd4a;
    transform: scale(1.02);
}

/* ===== SHOP PAGE SPECIFIC ===== */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 60%, #1a6ed4 100%);
    padding: 3rem clamp(1.5rem, 5vw, 5rem);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--heading);
    font-weight: 900;
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--white);
    letter-spacing: -.01em;
    line-height: 1.1;
    margin-bottom: .6rem;
}

.page-hero h1 span {
    color: #ffd166;
}

.page-hero p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .7);
    max-width: 450px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
    align-items: start;
}

.sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
}

.filter-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.4rem;
    margin-bottom: 1.25rem;
}

.filter-box h3 {
    font-family: var(--heading);
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: .4rem;
}

.filter-box h3 i {
    font-size: .9rem;
    color: var(--blue-lt);
}

.cat-list {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem .7rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
    font-size: .84rem;
    font-weight: 500;
    color: var(--ink);
    user-select: none;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.cat-item:hover {
    background: var(--blue-pale);
    color: var(--blue);
}

.cat-item.active {
    background: var(--blue);
    color: var(--white);
    font-weight: 600;
}

.cat-item.active .cat-count {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.cat-count {
    font-size: .7rem;
    font-weight: 700;
    background: var(--blue-pale);
    color: var(--blue-mid);
    padding: .1rem .45rem;
    border-radius: 99px;
}

.sort-select {
    width: 100%;
    padding: .55rem .85rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--body);
    font-size: .84rem;
    color: var(--ink);
    background: var(--white);
    outline: none;
    cursor: pointer;
}

.sort-select:focus {
    border-color: var(--blue-lt);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.tag {
    font-size: .72rem;
    font-weight: 600;
    font-family: var(--heading);
    letter-spacing: .06em;
    padding: .28rem .7rem;
    border-radius: 99px;
    border: 1.5px solid var(--border);
    color: var(--mid);
    cursor: pointer;
    transition: all .18s;
    background: transparent;
}

.tag:hover {
    border-color: var(--blue-lt);
    color: var(--blue);
    background: var(--blue-pale);
}

.tag.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.shop-count {
    font-size: .84rem;
    color: var(--mid);
}

.shop-count strong {
    color: var(--ink);
}

.view-toggles {
    display: flex;
    gap: .35rem;
}

.view-btn {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--mid);
    font-size: .95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .18s;
}

.view-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.view-btn:hover:not(.active) {
    border-color: var(--blue-lt);
    color: var(--blue);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.product-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 12px 40px var(--blue-glow);
    transform: translateY(-5px);
    border-color: var(--blue-lt);
}

.product-thumb {
    height: 190px;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.badge-row {
    position: absolute;
    top: .7rem;
    left: .7rem;
    display: flex;
    gap: .35rem;
}

.pbadge {
    font-family: var(--heading);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .18rem .55rem;
    border-radius: 99px;
}

.pbadge-hot {
    background: #ff4d6d;
    color: #fff;
}

.pbadge-new {
    background: #00b4d8;
    color: #fff;
}

.pbadge-pop {
    background: var(--blue);
    color: #fff;
}

.pbadge-best {
    background: #ffd166;
    color: var(--ink);
}

.pbadge-sale {
    background: #06d6a0;
    color: #fff;
}

.wishlist-btn {
    position: absolute;
    top: .7rem;
    right: .7rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--mid);
    cursor: pointer;
    transition: all .2s;
    backdrop-filter: blur(4px);
}

.wishlist-btn:hover {
    color: #ff4d6d;
    border-color: #ff4d6d;
    background: #fff8f9;
}

.wishlist-btn.wished {
    color: #ff4d6d;
    background: #fff0f3;
    border-color: #ff4d6d;
}

.quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 143, .92);
    color: #fff;
    font-family: var(--heading);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .6rem;
    text-align: center;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform .25s;
    border: none;
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-body {
    padding: 1.1rem;
}

.product-cat {
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: .3rem;
}

.product-name {
    font-family: var(--heading);
    font-weight: 700;
    font-size: .96rem;
    color: var(--ink);
    margin-bottom: .35rem;
    line-height: 1.3;
}

.product-desc {
    font-size: .78rem;
    color: var(--mid);
    line-height: 1.55;
    margin-bottom: .85rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.order-btn {
    padding: .42rem 1rem;
    background: var(--blue);
    color: #fff;
    font-family: var(--heading);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: .05em;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-block;
    white-space: nowrap;
}

.order-btn:hover {
    background: var(--blue-mid);
    transform: translateY(-1px);
}

.stars {
    display: flex;
    align-items: center;
    gap: .2rem;
    margin-bottom: .5rem;
}

.stars i {
    color: #ffd166;
    font-size: .72rem;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 180px 1fr;
}

.products-grid.list-view .product-thumb {
    height: 100%;
    min-height: 160px;
    border-radius: 0;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 2.5rem;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: transparent;
    font-family: var(--heading);
    font-weight: 700;
    font-size: .82rem;
    color: var(--mid);
    cursor: pointer;
    transition: all .18s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover:not(.active):not(:disabled) {
    border-color: var(--blue-lt);
    color: var(--blue);
}

.page-btn.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.page-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 300;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 18px;
    max-width: 560px;
    width: 100%;
    padding: 2rem;
    position: relative;
    animation: modalIn .25s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.95) translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: transparent;
    font-size: 1rem;
    color: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .18s;
}

.modal-close:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.modal-emoji {
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.modal-cat {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: .3rem;
}

.modal-name {
    font-family: var(--heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: .5rem;
}

.modal-desc {
    font-size: .88rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.modal-features {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1.5rem;
}

.modal-feature {
    font-size: .75rem;
    font-weight: 600;
    background: var(--blue-pale);
    color: var(--blue);
    padding: .3rem .7rem;
    border-radius: 99px;
}

.modal-actions {
    display: flex;
    gap: .75rem;
}

.modal-btn-primary {
    flex: 1;
    padding: .75rem;
    background: var(--blue);
    color: #fff;
    font-family: var(--heading);
    font-weight: 700;
    font-size: .85rem;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background .2s;
}

.modal-btn-primary:hover {
    background: var(--blue-mid);
}

.modal-btn-secondary {
    padding: .75rem 1.2rem;
    background: var(--blue-pale);
    color: var(--blue);
    font-family: var(--heading);
    font-weight: 700;
    font-size: .85rem;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background .2s;
}

.modal-btn-secondary:hover {
    background: var(--border);
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {

    .nav-links,
    .nav-search {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-p {
        margin: 0 auto 2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .story-section {
        grid-template-columns: 1fr;
    }

    .contact-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .products-grid.list-view .product-card {
        grid-template-columns: 1fr;
    }

    .products-grid.list-view .product-thumb {
        min-height: 170px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-band {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .topbar-left span:not(:first-child) {
        display: none;
    }

    .topbar-right span:first-child {
        display: none;
    }
}

/* ===== ANIMATION KEYFRAMES ===== */
@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-badge {
    animation: heroIn .5s .1s both;
}

.hero-h1 {
    animation: heroIn .55s .25s both;
}

.hero-p {
    animation: heroIn .55s .38s both;
}

.hero-btns {
    animation: heroIn .55s .5s both;
}

.hero-stats {
    animation: heroIn .55s .62s both;
}

.hero-right {
    animation: heroIn .6s .4s both;
}

/* ===== QUOTE PAGE SPECIFIC ===== */
.quote-hero {
    background: linear-gradient(115deg, #0e1b3d 0%, var(--blue) 45%, var(--blue-lt) 100%);
    padding: 3rem clamp(1.5rem, 5vw, 5rem);
    text-align: center;
}

.quote-hero h1 {
    font-family: var(--heading);
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: .75rem;
}

.quote-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
    max-width: 650px;
    margin: 0 auto;
}

.quote-main {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    padding: 4rem clamp(1.5rem, 5vw, 5rem);
    background: var(--white);
}

.info-sidebar .info-card {
    background: var(--off);
    border-radius: 24px;
    padding: 1.6rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    transition: all .2s;
}

.info-card:hover {
    border-color: var(--blue-lt);
    box-shadow: 0 8px 20px var(--blue-glow);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: var(--heading);
    font-weight: 700;
    margin-bottom: .5rem;
}

.sample-price {
    background: var(--white);
    border-radius: 20px;
    padding: .8rem;
    margin-top: 1rem;
}

.sample-price small {
    font-size: .7rem;
    color: var(--mid);
}

.process-quote {
    background: var(--blue-pale);
    padding: 3rem clamp(1.5rem, 5vw, 5rem);
    text-align: center;
}

.steps-mini {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
    margin-top: 2rem;
}

.step-mini {
    background: white;
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    width: 180px;
    text-align: center;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: white;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto .8rem;
}

.step-mini h4 {
    font-size: .9rem;
    font-weight: 800;
}

@media (max-width: 960px) {
    .quote-main {
        grid-template-columns: 1fr;
    }
}