/* =============================================================
   MENACHEM RAW MATERIALS TRADING CO. L.L.C.  –  MAIN STYLES
   ============================================================= */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
    --navy:          #0d1b2a;
    --navy-mid:      #1a3350;
    --navy-light:    #1e3a5f;
    --brand-blue:    #223d91;
    --brand-gray:    #76787a;
    --gold:          #c9a84c;
    --gold-light:    #e8cb8a;
    --gold-glow:     rgba(201, 168, 76, 0.35);
    --teal:          #00b4a0;
    --white:         #ffffff;
    --off-white:     #f5f7fa;
    --text-dark:     #1e2d3d;
    --text-body:     #4a5e72;
    --text-muted:    #7a8fa3;
    --border:        #e0e8f0;
    --shadow-sm:     0 4px 16px rgba(0,0,0,.07);
    --shadow-md:     0 8px 32px rgba(0,0,0,.10);
    --shadow-lg:     0 16px 56px rgba(0,0,0,.14);
    --radius:        14px;
    --transition:    all .3s ease;
    --section-gap:   110px;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; font-size:16px; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.72;
    overflow-x: hidden;
    background: var(--white);
}

img { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }
address { font-style:normal; }

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad { padding: var(--section-gap) 0; }
.bg-light    { background: var(--off-white); }
.mt-24       { margin-top: 24px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.label-chip {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}
.label-chip.light {
    color: var(--gold-light);
    background: rgba(201,168,76,.1);
    border-color: rgba(201,168,76,.25);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.section-title.centered { text-align:center; }
.section-title.light    { color: var(--white); }
.section-title em       { color:var(--gold); font-style:normal; }

.section-header { text-align:center; margin-bottom: 64px; }

.section-sub {
    font-size: .97rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.85;
}
.section-sub.light { color: rgba(255,255,255,.6); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .3px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, #d4a84b 0%, #a07430 100%);
    color: #fff;
    box-shadow: 0 6px 22px rgba(201,168,76,.45);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 34px rgba(201,168,76,.6);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    transform: translateY(-3px);
}
.btn-full {
    width: 100%;
    justify-content: center;
}
.btn-lg { padding: 15px 38px; font-size: .98rem; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.navbar {
    position: fixed;
    inset-block-start: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 22px 0;
    transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: #ffffff;
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.12);
}

/* Scrolled state – links become dark to stay legible on white navbar */
.navbar.scrolled .nav-link              { color: var(--text-dark); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active       { color: var(--brand-blue); }
.navbar.scrolled .nav-link::after       { background: var(--brand-blue); }
.navbar.scrolled .hamburger span        { background: var(--brand-blue); }

.nav-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* White pill behind logo so it stays visible over the dark hero */
.nav-logo {
    background: rgba(255,255,255,.92);
    padding: 6px 14px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.navbar.scrolled .nav-logo {
    background: transparent;
    padding: 0;
    backdrop-filter: none;
}

.nav-logo img {
    height: 52px;
    width: auto;
    transition: var(--transition);
    filter: none;
}
.navbar.scrolled .nav-logo img { height: 46px; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    position: relative;
    font-size: .87rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    transition: var(--transition);
    padding-bottom: 3px;
}
.nav-link::after {
    content:'';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s ease;
    border-radius: 2px;
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-link.contact-btn {
    background: linear-gradient(135deg, #d4a84b, #a07430);
    color: #fff !important;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: .85rem;
    box-shadow: 0 4px 14px rgba(201,168,76,.4);
}
.nav-link.contact-btn::after { display:none; }
.nav-link.contact-btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.55); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 890;
}
.nav-overlay.show { display: block; }

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        url('images/hero-bg.jpg')
        center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,22,36,.94) 0%,
        rgba(20,48,82,.88) 45%,
        rgba(10,22,36,.94) 100%
    );
}

.hero-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .45;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 24px;
    padding-top: 80px;
}

.hero-logo-wrap {
    margin-bottom: 28px;
    display: inline-block;
    background: rgba(255,255,255,.92);
    padding: 16px 28px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.hero-logo {
    height: 120px;
    width: auto;
    margin: 0 auto;
    filter: none;
    animation: logoPulse 3.6s ease-in-out infinite;
}
@keyframes logoPulse {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-9px) scale(1.02); }
}

.hero-eyebrow {
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: .9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 22px;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-title .gold { color: var(--gold); }

.hero-sub {
    font-size: 1.02rem;
    color: rgba(255,255,255,.78);
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.85;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}
.hero-pills span {
    font-size: .76rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    padding: 6px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
    backdrop-filter: blur(6px);
}
.hero-pills span i { color: var(--gold); font-size: .72rem; }

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.5);
    font-size: 1.1rem;
    animation: scrollBounce 2s ease-in-out infinite;
    transition: color .3s;
}
.hero-scroll:hover { color: var(--gold); }
@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(9px); }
}

/* ── STATS BAR ──────────────────────────────────────────────── */
.stats-bar {
    background: linear-gradient(100deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content:'';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-bar .container {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
    align-items: center;
    gap: 0;
    position: relative;
}
.stat-divider {
    background: rgba(255,255,255,.12);
    height: 60px;
    width: 1px;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 28px;
}
.stat-item > i {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}
.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat-num sup {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    vertical-align: super;
}
.stat-item p {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    margin-top: 5px;
    line-height: 1.3;
}

/* ── ABOUT ──────────────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}
.about-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: var(--shadow-lg);
    transition: transform .55s ease;
}
.about-img-wrap:hover img { transform: scale(1.03); }

.about-img-shape {
    position: absolute;
    inset: -16px -16px -16px -16px;
    border: 2px solid rgba(201,168,76,.22);
    border-radius: 24px;
    pointer-events: none;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: 26px;
    right: -18px;
    background: linear-gradient(135deg, #d4a84b, #a07430);
    color: #fff;
    padding: 13px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: .83rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.24);
    white-space: nowrap;
    z-index: 3;
}
.about-badge i { font-size: 1.15rem; }

.about-content .section-title { margin-top: 10px; }

.about-content p {
    font-size: .95rem;
    color: var(--text-body);
    margin-bottom: 14px;
    line-height: 1.82;
}
.about-content strong { color: var(--navy); }

.check-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 24px 0;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: .9rem;
    color: var(--text-body);
}
.check-list li i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── INDUSTRIES ─────────────────────────────────────────────── */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ind-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.ind-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,.25);
}

.ind-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}
.ind-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}
.ind-card:hover .ind-img img { transform: scale(1.1); }

.ind-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,36,.85) 25%, transparent 75%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.ind-img-overlay i {
    font-size: 1.7rem;
    color: var(--gold);
}

.ind-body { padding: 24px 26px; }
.ind-body h3 {
    font-size: 1.03rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.ind-body h3 i { color: var(--gold); font-size: .9rem; }
.ind-body p {
    font-size: .87rem;
    color: var(--text-body);
    line-height: 1.72;
    margin-bottom: 14px;
}
.ind-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .76rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default;
    transition: gap .3s;
}
.ind-card:hover .ind-tag { gap: 10px; }

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-us {
    position: relative;
    overflow: hidden;
    background: var(--navy);
}
.why-bg-image {
    position: absolute;
    inset: 0;
    background: url('images/LIFT-polymers-and-plastics.jpg')
                center center / cover no-repeat;
    opacity: .06;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    position: relative;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 38px 28px;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}
.why-card::before {
    content:'';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.why-card:hover {
    background: rgba(255,255,255,.09);
    border-color: rgba(201,168,76,.3);
    transform: translateY(-6px);
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: rotateY(180deg);
}
.why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.why-card p {
    font-size: .86rem;
    color: rgba(255,255,255,.58);
    line-height: 1.78;
}

/* ── GLOBAL REACH ───────────────────────────────────────────── */
.global-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.global-content p {
    font-size: .95rem;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.82;
}

.region-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.region-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.region-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}
.region-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(201,168,76,.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--gold);
    flex-shrink: 0;
}
.region-item h4 {
    font-size: .92rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px;
}
.region-item p {
    font-size: .82rem;
    color: var(--text-muted);
    margin: 0;
}

.global-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.global-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.global-img-wrap:hover img { transform: scale(1.04); }

.global-img-caption {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: var(--gold);
    color: var(--navy);
    padding: 11px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: .84rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.global-img-caption i { font-size: 1.1rem; }

/* ── VALUES ─────────────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.val-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    overflow: hidden;
}
.val-card::after {
    content:'';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transform: scaleX(0);
    transition: transform .4s ease;
}
.val-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0,0,0,.13);
    border-color: rgba(201,168,76,.25);
}
.val-card:hover::after { transform: scaleX(1); }

.val-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.04));
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin: 0 auto 22px;
    transition: var(--transition);
}
.val-card:hover .val-icon {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: rotate(10deg) scale(1.08);
}
.val-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}
.val-card p {
    font-size: .88rem;
    color: var(--text-body);
    line-height: 1.78;
}

/* ── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
    position: relative;
    padding: 110px 0;
    text-align: center;
    background:
        url('images/truested.jpg')
        center 40% / cover no-repeat;
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,36,.96) 0%, rgba(26,51,80,.93) 100%);
}
.cta-banner .container {
    position: relative;
    z-index: 1;
}
.cta-quote-icon {
    display: block;
    font-size: 3.2rem;
    color: var(--gold);
    opacity: .45;
    margin-bottom: 18px;
}
.cta-banner blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-style: italic;
    font-weight: 400;
    color: #fff;
    line-height: 1.55;
    max-width: 780px;
    margin: 0 auto 14px;
}
.cta-banner cite {
    display: block;
    font-size: .88rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
}

.map-placeholder {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 480px;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--off-white);
    border-radius: 12px;
    padding: 18px 20px;
    border-left: 4px solid transparent;
    transition: var(--transition);
}
.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-left-color: var(--gold);
}
.cc-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(201,168,76,.04));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--gold);
    flex-shrink: 0;
}
.contact-card h4 {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--navy);
    margin-bottom: 4px;
}
.contact-card p, .contact-card a {
    font-size: .88rem;
    color: var(--text-body);
    line-height: 1.6;
}
.contact-card a:hover { color: var(--gold); }

/* Form (kept for reference, form removed from page) */
.contact-form-wrap {
    background: var(--off-white);
    border-radius: 20px;
    padding: 42px 40px;
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--navy);
    margin-bottom: 8px;
}
.form-group label i { color: var(--gold); font-size: .78rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #d6e0ea;
    border-radius: 9px;
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-notice {
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 9px;
    font-size: .88rem;
    font-weight: 500;
    text-align: center;
}
.form-notice.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-notice.error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.btn.sent {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 6px 22px rgba(46,204,113,.4);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--off-white); }

.footer-top { padding: 75px 0 55px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 50px;
}

.footer-logo {
    height: 58px;
    width: auto;
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: .86rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 300px;
}

.social-bar { display: flex; gap: 11px; }
.social-bar a {
    width: 40px;
    height: 40px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: .88rem;
    transition: var(--transition);
}
.social-bar a:hover {
    background: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }

.footer-col ul li a {
    font-size: .86rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-col ul li a i { font-size: .68rem; color: var(--gold); }
.footer-col ul li a:hover { color: var(--gold); transform: translateX(5px); }

.footer-col ul li:not(:has(a)) {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .86rem;
    color: var(--text-body);
}
.footer-col ul li:not(:has(a)) i { font-size: .76rem; color: var(--gold); width: 14px; }

.footer-col address p {
    font-size: .86rem;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    line-height: 1.65;
}
.footer-col address i {
    color: var(--gold);
    font-size: .9rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.footer-col address a {
    color: var(--text-body);
    transition: var(--transition);
}
.footer-col address a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    background: #ffffff;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    font-size: .8rem;
    color: var(--text-muted);
}
.footer-bottom i.fa-heart { color: #e74c3c; font-size: .76rem; }

/* ── VAL CARD PULSE ANIMATION ───────────────────────────────── */
@keyframes pulseOnce {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18) rotate(8deg); }
    70%  { transform: scale(0.94) rotate(-4deg); }
    100% { transform: scale(1) rotate(0deg); }
}
.val-icon.pulse-once { animation: pulseOnce .5s ease forwards; }

/* ── BACK TO TOP ────────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #d4a84b, #a07430);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 800;
    box-shadow: 0 6px 22px rgba(201,168,76,.45);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible  { opacity: 1; visibility: visible; }
.back-to-top:hover    { background: var(--white); color: var(--navy); transform: translateY(-4px); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════ */

/* ── ≤1060px ─────────────────────────────────────────────── */
@media (max-width: 1060px) {
    .about-grid,
    .global-grid { gap: 50px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ── ≤900px ──────────────────────────────────────────────── */
@media (max-width: 900px) {
    :root { --section-gap: 80px; }

    .stats-bar .container {
        grid-template-columns: 1fr 1px 1fr;
        row-gap: 12px;
    }
    .stat-divider:nth-child(4),
    .stat-divider:nth-child(6) { display: none; }
    .stat-divider:nth-child(2) { height: 50px; }

    .industries-grid,
    .why-grid,
    .values-grid { grid-template-columns: repeat(2,1fr); }

    .about-grid,
    .global-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-badge { right: 16px; }
    .about-img-shape { display: none; }
}

/* ── ≤768px – Mobile menu ───────────────────────────────── */
@media (max-width: 768px) {
    /* Mobile nav drawer */
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        inset-block-start: 0;
        right: -100%;
        height: 100vh;
        width: 280px;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 50px 36px;
        transition: right .4s cubic-bezier(.4,0,.2,1);
        z-index: 950;
        box-shadow: -6px 0 40px rgba(0,0,0,.18);
    }
    .nav-menu.open { right: 0; }

    /* Mobile drawer links – dark on white background */
    .nav-menu .nav-link              { color: var(--text-dark); }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active       { color: var(--brand-blue); }
    .nav-menu .nav-link::after       { background: var(--brand-blue); }
    .hamburger.open span             { background: var(--brand-blue); }

    .nav-link { font-size: 1.05rem; }
    .nav-link.contact-btn {
        margin-top: 12px;
        display: inline-flex;
        width: fit-content;
    }

    /* Hero */
    .hero-logo  { height: 90px; }
    .hero-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .hero-cta   { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 300px; justify-content: center; }

    /* Images */
    .about-img-wrap img,
    .global-img-wrap img { height: 300px; }

    /* Form */
    .form-row               { grid-template-columns: 1fr; }
    .contact-form-wrap      { padding: 28px 22px; }

    /* CTA */
    .cta-banner blockquote  { font-size: 1.25rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── ≤560px ──────────────────────────────────────────────── */
@media (max-width: 560px) {
    .industries-grid,
    .why-grid,
    .values-grid { grid-template-columns: 1fr; }

    .stats-bar .container {
        grid-template-columns: 1fr 1px 1fr;
    }

    .hero-pills span { font-size: .7rem; padding: 5px 12px; }
    .section-title   { font-size: 1.7rem; }
    .section-sub     { font-size: .9rem; }
    .contact-form-wrap { padding: 22px 16px; }
}
