/* ==========================================================================
   Mollika Trading LLC — Stylesheet
   Brand colours taken from the company logo (blue + orange "MT" mark)
   ========================================================================== */

:root {
  --blue-900: #0a2a3d;
  --blue-800: #0c4d78;
  --blue-700: #0f5f92;
  --blue-600: #14679c;
  --blue-500: #1a7bc4;
  --blue-100: #e7f1f8;

  --orange-700: #c96a06;
  --orange-600: #e0790a;
  --orange-500: #f6921e;
  --orange-400: #f9a94b;
  --orange-100: #fdefdc;

  --ink-900: #16212b;
  --ink-700: #3a4a56;
  --ink-500: #64707b;
  --ink-300: #a4aeb6;

  --bg: #ffffff;
  --bg-alt: #f6f9fb;
  --bg-alt-2: #eef4f8;
  --border: #e3e9ee;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(10, 42, 61, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 42, 61, 0.1);
  --shadow-lg: 0 24px 64px rgba(10, 42, 61, 0.16);

  --header-h: 96px;

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 .5em; color: var(--blue-900); font-weight: 600; }
p { margin: 0 0 1em; color: var(--ink-700); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--blue-900); color: #fff;
  padding: 12px 20px; z-index: 10000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-600); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--orange-500); border-radius: 2px; display: inline-block; }
.section-head { max-width: 680px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
.text-muted { color: var(--ink-500); }

.grad-text {
  background: linear-gradient(100deg, var(--blue-700), var(--orange-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange-500); color: #fff; box-shadow: 0 10px 24px rgba(246,146,30,.35); }
.btn-primary:hover { background: var(--orange-600); box-shadow: 0 14px 30px rgba(246,146,30,.42); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-blue { background: var(--blue-700); color: #fff; box-shadow: 0 10px 24px rgba(15,95,146,.3); }
.btn-blue:hover { background: var(--blue-800); transform: translateY(-2px); }
.btn-ghost { border-color: var(--border); color: var(--blue-900); background: #fff; }
.btn-ghost:hover { border-color: var(--blue-600); color: var(--blue-600); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn i { font-size: 18px; flex: none; }

.icon-badge {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: var(--blue-100); color: var(--blue-700); flex: none;
}
.icon-badge i { font-size: 28px; }
.icon-badge.orange { background: var(--orange-100); color: var(--orange-600); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Topbar — slim contact strip above the sticky header (address, email,
   quick-contact icons); scrolls away with the page, not sticky
   ========================================================================== */
.topbar { background: var(--blue-900); }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 10px; padding-bottom: 10px; }
.topbar-info { display: flex; align-items: center; gap: 28px; }
.topbar-item {
  display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.78); transition: color .15s;
}
.topbar-item:hover { color: #fff; }
.topbar-item i { font-size: 15px; flex: none; color: var(--orange-400); }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social a {
  display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%;
  color: rgba(255,255,255,.78); background: rgba(255,255,255,.08); transition: background .15s, color .15s, transform .15s;
}
.topbar-social a:hover { background: var(--orange-500); color: #fff; transform: translateY(-2px); }
.topbar-social i { font-size: 14px; }

/* ==========================================================================
   Header — split nav either side of a large centered logo (desktop), with
   animated gradient underlines, glass sticky bar, and a dedicated combined
   off-canvas menu once the split layout no longer has room (mobile/tablet)
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, .82); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  animation: headerDrop .5s ease both;
}
.site-header.scrolled {
  --header-h: 76px;
  background: rgba(255, 255, 255, .96); box-shadow: var(--shadow-md); border-bottom-color: transparent;
}
.site-header .container {
  display: flex; align-items: center;
  height: var(--header-h); gap: 24px; transition: height .3s ease;
}
@keyframes headerDrop { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand .mark { width: 48px; height: 48px; }
.brand .logo {
  height: 85px; width: auto; transition: height .3s ease, transform .3s ease, filter .3s ease;
}
.brand:hover .logo { transform: scale(1.04); filter: drop-shadow(0 4px 10px rgba(15,95,146,.25)); }
.site-header.scrolled .brand .logo { height: 54px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav-desktop { margin-left: auto; }
.main-nav-mobile { display: none; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  position: relative; display: flex; align-items: center; gap: 4px; padding: 10px 16px; border-radius: 999px;
  font-weight: 600; font-size: .93rem; color: var(--ink-700); transition: background .15s, color .15s, transform .15s;
}
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 5px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-500), var(--blue-600)); transform: scaleX(0); transition: transform .25s ease;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link.active {color: var(--blue-700); transform: translateY(-1px); }
.main-nav a.nav-link:hover::after, .main-nav a.nav-link.active::after { transform: scaleX(1); }
.nav-item { position: relative; }
.nav-item.has-dropdown > .nav-link i.chev { font-size: 14px; transition: transform .2s; }
.nav-item.has-dropdown:hover > .nav-link i.chev { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 300px; background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px) scale(.98); transform-origin: top left;
  transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 40;
}
.nav-item.has-dropdown:hover .dropdown, .nav-item.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.dropdown a { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: var(--radius-sm); transition: background .15s, transform .15s; }
.dropdown a:hover { background: var(--bg-alt); transform: translateX(2px); }
.dropdown a strong { display: block; color: var(--blue-900); font-size: .92rem; }
.dropdown a span { font-size: .78rem; color: var(--ink-500); }
.dropdown .d-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; flex: none; transition: transform .2s ease; }
.dropdown .d-icon i { font-size: 20px; }
.dropdown a:hover .d-icon { transform: rotate(-6deg) scale(1.08); }

.header-actions { display: flex; align-items: center; gap: 14px; flex: none; }

.hamburger {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; border: 1px solid var(--border); border-radius: 50%; background: #fff;
  transition: background .2s ease, border-color .2s ease;
}
.hamburger span {
  display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--blue-900);
  transition: transform .3s ease, opacity .2s ease, background .2s ease;
}
.hamburger:hover { border-color: var(--blue-500); }
.hamburger.active { background: var(--blue-800); border-color: var(--blue-800); }
.hamburger.active span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(10,42,61,.5); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: all .25s; z-index: 50;
}
.nav-overlay.show { opacity: 1; visibility: visible; }
.short-text { font-size: clamp(1.25rem, 4vw, 2rem); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .site-header { animation: none; }
  .hero::before, .hero::after, .hero-media img, .hero-media::before, .hero-float-card { animation: none; }
}

/* ==========================================================================
   Hero — full-bleed background image with a dark scrim, text overlaid on top
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--bg-alt); padding: 0; }
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: 0; border-radius: 50%; filter: blur(60px); pointer-events: none;
  animation: heroDrift 16s ease-in-out infinite alternate;
}
.hero::before { width: 340px; height: 340px; background: var(--orange-100); top: -120px; left: 6%; }
.hero::after { width: 260px; height: 260px; background: var(--blue-100); bottom: -110px; left: 40%; animation-delay: -8s; }
@keyframes heroDrift { from { transform: translate(0, 0) scale(1); } to { transform: translate(26px, 18px) scale(1.1); } }

.hero-grid { position: relative; z-index: 1; min-height: 620px; }

.hero-content {
  position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center;
  min-height: 620px; max-width: 1200px;
  padding: 72px clamp(24px, 5vw, 64px) 72px max(24px, calc((100vw - var(--container)) / 2 + 24px));
}

.hero-media { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(150deg, var(--blue-800), var(--blue-600)); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; animation: heroZoom 14s ease-in-out infinite alternate; }
@keyframes heroZoom {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-media::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60%; width: 35%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.25), transparent);
  animation: heroShine 7s ease-in-out infinite;
}
@keyframes heroShine {
  0%, 15% { left: -60%; }
  65%, 100% { left: 130%; }
}
.hero-media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(10,42,61,.86) 0%, rgba(10,42,61,.6) 42%, rgba(10,42,61,.15) 78%, rgba(10,42,61,.05) 100%);
}
.hero-float-card {
  position: absolute; right: 28px; bottom: 28px; z-index: 2; max-width: 250px;
  display: flex; align-items: center; gap: 12px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 14px 18px; animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-float-card .icon-badge { width: 42px; height: 42px; border-radius: 12px; }
.hero-float-card strong { display: block; font-family: var(--font-head); font-size: .9rem; color: var(--blue-900); }
.hero-float-card span { font-size: .74rem; color: var(--ink-500); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--blue-100); color: var(--blue-700);
  border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600;
}
.hero-badge i { font-size: 15px; color: var(--orange-600); }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin-bottom: 20px; }
.hero h1 span { color: var(--orange-400); }
.hero p.lead { color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 1000px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; }
.hero-stats .stat span { font-size: .8rem; color: rgba(255,255,255,.7); }

/* ==========================================================================
   Marquee strip
   ========================================================================== */
.strip { background: var(--bg-alt-2); border-bottom: 1px solid var(--border); padding: 22px 0; overflow: hidden; }
.strip-track { display: flex; gap: 44px; width: max-content; animation: scroll-strip 44s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .86rem; color: var(--blue-800); white-space: nowrap; }
.strip-item i { font-size: 18px; color: var(--orange-500); }
@keyframes scroll-strip { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Cards / Grids
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 30px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card h3 { font-size: 1.08rem; margin: 16px 0 8px; }
.card p { font-size: .92rem; margin-bottom: 0; }

.service-pillar {
  border-radius: var(--radius-lg); padding: 40px; color: #fff; position: relative; overflow: hidden;
  display: flex; flex-direction: column; min-height: 460px;
}
.service-pillar.blue { background: linear-gradient(155deg, var(--blue-800), var(--blue-600)); }
.service-pillar.orange { background: linear-gradient(155deg, #7a4404, var(--orange-600)); }
.service-pillar::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.08); right: -90px; bottom: -90px; }
.service-pillar .tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); padding: 6px 14px; border-radius: 999px; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; width: fit-content; margin-bottom: 18px; }
.service-pillar h3 { color: #fff; font-size: 1.5rem; }
.service-pillar p { color: rgba(255,255,255,.82); }
.service-pillar .plist { margin: 18px 0 26px; display: grid; gap: 10px; position: relative; z-index: 2; }
.service-pillar .plist li { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; }
.service-pillar .plist i { font-size: 18px; flex: none; color: var(--orange-400); }
.service-pillar.orange .plist i { color: #fff; }
.service-pillar .btn { margin-top: auto; position: relative; z-index: 2; width: fit-content; }

/* Feature list */
.feature {
  display: flex; gap: 18px; padding: 24px; border-radius: var(--radius-md); border: 1px solid var(--border); background: #fff;
  transition: box-shadow .2s, transform .2s;
}
.feature:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.feature h4 { font-size: 1rem; margin-bottom: 6px; }
.feature p { font-size: .88rem; margin: 0; }

/* Process steps */
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; padding: 28px 20px 20px; border: 1px dashed var(--border); border-radius: var(--radius-md); text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.step .num {
  width: 40px; height: 40px; border-radius: 12px; background: var(--blue-700); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; margin-bottom: 14px; transition: transform .25s ease;
}
.step:hover .num { transform: scale(1.1) rotate(-4deg); }
.step h4 { font-size: .95rem; margin-bottom: 6px; }
.step p { font-size: .84rem; margin: 0; }

/* How We Work — connected icon timeline */
.how-work-section { position: relative; overflow: hidden; }
.work-flow {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  position: relative;
}
.work-flow::before {
  content: ""; position: absolute; top: 34px; left: 10%; right: 10%; height: 2px; z-index: 0;
  background-image: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 20px);
}
.work-step { position: relative; z-index: 1; text-align: center; padding: 0 12px; }
.work-step-icon {
  position: relative; width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 24px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  box-shadow: var(--shadow-md); transition: transform .3s ease, box-shadow .3s ease;
}
.work-step:nth-child(even) .work-step-icon { background: linear-gradient(135deg, var(--orange-600), var(--orange-400)); }
.work-step:hover .work-step-icon { transform: translateY(-6px) scale(1.06); box-shadow: var(--shadow-lg); }
.work-step-num {
  position: absolute; bottom: -4px; right: -4px; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 2px solid var(--blue-700); color: var(--blue-900);
  font-family: var(--font-head); font-weight: 700; font-size: .72rem; display: grid; place-items: center;
}
.work-step:nth-child(even) .work-step-num { border-color: var(--orange-600); }
.work-step h4 { font-size: .98rem; margin-bottom: 6px; }
.work-step p { font-size: .84rem; margin: 0; color: var(--ink-500); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--orange-600), var(--orange-500));
  border-radius: var(--radius-lg); padding: 56px; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.22), transparent 55%); }
.cta-banner h2, .cta-banner p { color: #fff; position: relative; z-index: 1; }
.cta-banner .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner .btn-primary { background: #fff; color: var(--orange-600); box-shadow: none; }
.cta-banner .btn-primary:hover { background: var(--blue-900); color: #fff; }

/* Testimonials */
.testimonials { background: var(--blue-900); }
.testimonials .eyebrow { color: var(--orange-400); }
.testimonials h2, .testimonials p.lead { color: #fff; }
.achv-row { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.achv-row .icon-badge { background: rgba(255,255,255,.1); color: var(--orange-400); }
.achv-row b { display: block; font-family: var(--font-head); font-size: 1.5rem; color: #fff; }
.achv-row span { font-size: .85rem; color: rgba(255,255,255,.65); }
.testimonial-card { position: relative; }
.testimonial-card p { font-style: italic; font-weight: 600; }
.testimonial-card .who { margin-top: 14px; }
.testimonial-card .who strong { display: block; color: var(--blue-900); font-size: .95rem; }
.testimonial-card .who span { font-size: .78rem; color: var(--ink-500); }
.testimonial-card .quote-mark {
  position: absolute; top: 26px; right: 26px; width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center;
}
.testimonial-card .quote-mark i { font-size: 15px; }

.testimonial-carousel { overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial-track .testimonial-card { flex: 0 0 100%; min-width: 0; }
.carousel-nav { display: flex; align-items: center; justify-content: center; margin-top: 26px; }
.carousel-dots { display: flex; align-items: center; gap: 8px; }
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%; padding: 0; border: none;
  background: rgba(255,255,255,.3); transition: background .2s ease, transform .2s ease;
}
.carousel-dots button.active { background: var(--orange-500); transform: scale(1.3); }
.testimonial-card p { font-size: .9rem; margin: 0; }

/* Testimonial-style trust row */
.trust-row { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--blue-800); font-size: .95rem; }
.trust-item i { font-size: 26px; color: var(--orange-500); }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(150deg, var(--blue-900), var(--blue-700));
  color: #fff; padding: 70px 0 60px; position: relative; overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(246,146,30,.3), transparent 70%); right: -100px; top: -140px; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--orange-400); }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 12px; max-width: 720px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 750px; font-size: 1.02rem; margin-bottom: 0; }

/* About page */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about-visual {
  background: linear-gradient(160deg, var(--blue-100), #fff); border-radius: var(--radius-lg); padding: 34px; border: 1px solid var(--border);
  position: relative;
}
.legal-list { display: grid; gap: 14px; margin-top: 20px; }
.legal-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; }
.legal-list i { font-size: 20px; color: var(--orange-500); flex: none; margin-top: 2px; }
.legal-list b { color: var(--blue-900); }

.phone-cta { display: flex; align-items: center; gap: 16px; margin-top: 28px; background: var(--blue-700); border-radius: var(--radius-md); padding: 18px 22px; box-shadow: var(--shadow-md); }
.phone-cta strong { display: block; color: rgba(255,255,255,.78); font-size: .82rem; font-weight: 600; }
.phone-cta a { display: block; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; }

.about-photo { position: relative; }
.about-photo::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; background: var(--orange-100); border-radius: var(--radius-lg); }
.about-photo img { position: relative; z-index: 1; width: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }

.value-card { text-align: center; padding: 34px 24px; }
.value-card .icon-badge { margin: 0 auto 16px; }

/* Waste truck / division highlight strip */
.division-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.division-strip .card { display: flex; flex-direction: column; }

/* Gallery */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--border); background: #fff; font-weight: 600; font-size: .85rem; color: var(--ink-700);
  transition: all .15s;
}
.filter-btn:hover { border-color: var(--blue-500); color: var(--blue-600); }
.filter-btn.active { background: var(--blue-700); border-color: var(--blue-700); color: #fff; }

/* Photo gallery tiles (homepage showcase + Gallery page) */
.photo-tile {
  position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); aspect-ratio: 4/3;
  display: block; width: 100%; padding: 0; margin: 0; background: none; font: inherit; text-align: left;
}
.photo-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease;
}
.photo-tile:hover img { transform: scale(1.06); }
button.photo-tile { cursor: pointer; -webkit-tap-highlight-color: transparent; }
button.photo-tile:focus-visible { outline: 2px solid var(--orange-500); outline-offset: 2px; }
button.photo-tile:focus-visible img { transform: scale(1.06); }
.photo-tile .photo-caption {
  position: absolute; inset: auto 0 0 0; padding: 20px; color: #fff;
  background: linear-gradient(to top, rgba(10,42,61,.88), rgba(10,42,61,.15) 65%, transparent);
}
.photo-caption .cat {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 4px;
}
.photo-caption strong { display: block; font-family: var(--font-head); font-size: 1.05rem; color: #fff; }

/* Gallery lightbox preview */
.lightbox {
  position: fixed; inset: 0; z-index: 999; background: rgba(8, 18, 26, .94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 5vw, 64px); animation: lightboxFade .2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lightboxFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content {
  margin: 0; max-width: min(1100px, 92vw); max-height: 88vh; width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-content img {
  max-width: 100%; max-height: 74vh; width: auto; height: auto; object-fit: contain;
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg); background: #0a2a3d;
}
.lightbox-content figcaption {
  margin-top: 16px; text-align: center; color: #fff;
}
.lightbox-content .cat {
  display: block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--orange-400); margin-bottom: 4px;
}
.lightbox-content strong { display: block; font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; }
.lightbox-count { display: block; margin-top: 6px; font-size: .8rem; color: var(--ink-300); }
.lightbox-close, .lightbox-nav {
  position: absolute; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); color: #fff; transition: background .15s, border-color .15s;
}
.lightbox-close i, .lightbox-nav i { font-size: 22px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.5); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* FAQ / accordion */
.accordion-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; background: #fff; }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; color: var(--blue-900); font-size: .98rem;
}
.accordion-trigger i { font-size: 20px; flex: none; transition: transform .25s; color: var(--orange-500); }
.accordion-item.open .accordion-trigger i { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.accordion-panel-inner { padding: 0 22px 20px; color: var(--ink-500); font-size: .92rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; align-items: start; }
.contact-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 16px; }
.contact-card h4 { margin: 0 0 4px; font-size: .95rem; }
.contact-card a, .contact-card span.line { display: block; font-size: .9rem; color: var(--ink-700); overflow-wrap: anywhere; }
.contact-card a:hover { color: var(--blue-600); }

.form-panel { background: var(--bg-alt); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--blue-900); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: #fff;
  transition: border-color .15s, box-shadow .15s; color: var(--ink-900);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(26,123,196,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .err { display: none; color: #c0392b; font-size: .78rem; margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0392b; }
.field.invalid .err { display: block; }
.form-note { font-size: .8rem; color: var(--ink-500); margin-top: 4px; }
.form-success {
  display: none; align-items: center; gap: 12px; background: #e9f8ef; border: 1px solid #b7ecc7; color: #1b7a3d;
  padding: 16px 18px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 600; margin-bottom: 18px;
}
.form-success.show { display: flex; }
.form-success i { font-size: 20px; flex: none; }

.map-embed {
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); margin-top: 40px;
}
.map-embed-frame { width: 100%; height: 420px; }
.map-embed-frame iframe { width: 100%; height: 100%; display: block; }
.map-embed-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 20px 26px; background: var(--bg-alt-2);
}
.map-embed-footer p { margin: 0; font-size: .9rem; color: var(--ink-700); display: flex; align-items: center; gap: 8px; }
.map-embed-footer i { color: var(--orange-500); }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center; box-shadow: var(--shadow-lg); z-index: 500;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float i { font-size: 30px; color: #fff; }

.back-to-top {
  position: fixed; bottom: 24px; left: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--blue-800);
  color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); border: none; z-index: 500;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top i { font-size: 20px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: linear-gradient(155deg, var(--blue-900) 0%, var(--blue-800) 50%, #0a1f2e 100%);
  color: rgba(255,255,255,.72); padding: 72px 0 0;
  border-top: 3px solid; border-image: linear-gradient(90deg, var(--orange-500), var(--blue-500)) 1;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,146,30,.16), transparent 70%);
  top: -180px; right: -100px; pointer-events: none;
}
.site-footer::after {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,123,196,.22), transparent 70%);
  bottom: -160px; left: -100px; pointer-events: none;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 40px; padding-bottom: 50px; }
.footer-brand { grid-column: 1 / -1; text-align: center; }
.footer-brand .brand { display: inline-flex; }
.footer-brand .logo { height: 110px; width: auto; }
.footer-brand p { margin: 16px auto 0;font-size: 1rem; max-width: 540px;color: #a1a1a1;}
.footer-grid nav[aria-label] { grid-column: span 3; }

.footer-col h5 {
  position: relative; color: #fff; font-family: var(--font-head); font-size: .92rem; margin-bottom: 22px;
  letter-spacing: .03em; text-transform: uppercase; padding-bottom: 12px;
}
.footer-col h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; background: var(--orange-500); border-radius: 2px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { display: inline-flex; align-items: center; gap: 6px; font-size: .88rem; transition: color .15s, transform .2s ease; }
.footer-col a::after {
  content: "\2192"; opacity: 0; transform: translateX(-6px); transition: opacity .2s ease, transform .2s ease;
}
.footer-col a:hover { color: var(--orange-400); transform: translateX(3px); }
.footer-col a:hover::after { opacity: 1; transform: translateX(0); }

.footer-contact ul { gap: 16px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; line-height: 1.5; }
.footer-contact .contact-icon {
  flex: none; width: 32px; height: 32px; border-radius: 50%; margin-top: 1px;
  background: rgba(255,255,255,.08); color: var(--orange-400); display: grid; place-items: center;
}
.footer-contact .contact-icon i { font-size: 15px; }
.footer-contact li > span:last-child { font-size: .88rem; overflow-wrap: anywhere; }
.footer-contact a { display: inline; font-size: .88rem; overflow-wrap: anywhere; }
.footer-contact a::after { content: none; }
.footer-contact a:hover { transform: none; }

.footer-social { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center;
  transition: background .15s ease, transform .15s ease;
}
.footer-social a:hover { background: var(--orange-500); transform: translateY(-2px); }
.footer-social i { font-size: 17px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  padding: 22px 0; font-size: .8rem; border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom a:hover { color: var(--orange-400); }
.footer-bottom .credit-brand { color: var(--orange-400); font-weight: 700; }
.footer-bottom .credit-brand:hover { color: #fff; }

/* 404 */
.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.error-page .code { font-family: var(--font-head); font-size: clamp(4rem, 12vw, 8rem); font-weight: 700; background: linear-gradient(100deg, var(--blue-700), var(--orange-500)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
