/* ==========================================================================
   IMAGING PUBLICITY — core stylesheet
   One font family (Manrope) across the whole site. Two brand colours only:
   orange #F16136 and blue #195BA0. Dark mode = near-black navy, not grey.
   ========================================================================== */

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

:root{
  --orange: #F16136;
  --orange-ink: #C94A24;
  --blue: #195BA0;
  --blue-ink: #0F3F73;

  --bg: #FFFFFF;
  --bg-alt: #F5F7FA;
  --surface: #FFFFFF;
  --surface-2: #EFF3F8;
  --text: #0E2036;
  --text-muted: #52647C;
  --border: #E2E8F0;
  --shadow: 0 12px 32px -12px rgba(15,45,80,.18);

  --link: var(--blue);
  --focus: var(--orange);
  --footer-bg: #0F3F73;
  --whatsapp: #25D366;

  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1240px;

  --ff: 'Manrope', 'Segoe UI', Arial, sans-serif;
}

html[data-theme="dark"]{
  --bg: #050B14;
  --bg-alt: #081020;
  --surface: #0D1A2C;
  --surface-2: #112238;
  --text: #EAF1FB;
  --text-muted: #93A7C4;
  --border: #16283F;
  --shadow: 0 12px 32px -12px rgba(0,0,0,.55);
  --link: #6AA6E8;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--ff);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  transition: background .25s ease, color .25s ease;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: var(--ff); cursor:pointer; }
h1,h2,h3,h4{ margin:0 0 .5em; line-height:1.15; font-weight:800; letter-spacing:-.01em; }
p{ margin:0 0 1em; color: var(--text-muted); line-height:1.7; }
:focus-visible{ outline: 3px solid var(--focus); outline-offset: 2px; }
.container{ max-width: var(--maxw); margin:0 auto; padding: 0 24px; }
.section{ padding: 88px 0; }
.section.tight{ padding: 56px 0; }
.section-alt{ background: var(--bg-alt); position:relative; background-image: radial-gradient(var(--border) 1px, transparent 1px); background-size: 26px 26px; background-position: -13px -13px; }

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

/* ---------- eyebrow / section header, crop-mark signature ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
  color: var(--orange); margin-bottom:14px;
}
.eyebrow::before{
  content:""; width:18px; height:18px; flex-shrink:0; border-radius:5px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='9' width='16' height='8' rx='1.5'/><path d='M7 9V4h10v5M7 17v3h10v-3'/></svg>") center / 70% no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='9' width='16' height='8' rx='1.5'/><path d='M7 9V4h10v5M7 17v3h10v-3'/></svg>") center / 70% no-repeat;
}
.page-hero .eyebrow::before{ background:#fff; }

.section-head{ max-width: 680px; margin-bottom: 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(28px, 3.6vw, 42px); }

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 26px; border-radius: 999px; font-weight:700; font-size:15px;
  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); color:#fff; }
.btn-primary:hover{ background: var(--orange-ink); box-shadow: var(--shadow); }
.btn-secondary{ background: var(--blue); color:#fff; }
.btn-secondary:hover{ background: var(--blue-ink); box-shadow: var(--shadow); }
.btn-outline{ background:transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover{ border-color: var(--orange); color: var(--orange); }
.btn-whatsapp{ background: var(--whatsapp); color:#fff; }
.btn-whatsapp:hover{ background:#1DA851; box-shadow: var(--shadow); }
.btn-sm{ padding:9px 18px; font-size:13px; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.top-strip{
  background: var(--orange-ink);
  color:#fff; font-size:13px; font-weight:600;
}
.top-strip .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:8px; padding-bottom:8px; gap:16px; flex-wrap:wrap;
}
.top-strip .tag-247{
  display:inline-flex; align-items:center; gap:8px; color:#FFD9C9;
}
.top-strip .tag-247 svg{ width:15px; height:15px; }
.top-strip .top-contacts{ display:flex; gap:18px; flex-wrap:wrap; }
.top-strip .top-contacts a{ display:inline-flex; align-items:center; gap:6px; opacity:.92; }
.top-strip .top-contacts a:hover{ color: var(--orange); }
.top-strip .top-contacts svg{ width:14px; height:14px; }

.site-header{
  position: sticky; top:0; z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.container.header-inner{
  display:flex; align-items:center; gap:20px; padding: 22px 0;
}
.brand{ display:flex; align-items:center; margin-right:auto; }
.brand img{ height:60px; width:auto; }

.main-nav{ display:flex; align-items:center; gap:0; flex-wrap:nowrap; white-space:nowrap; }
.main-nav a{
  padding:9px 12px; border-radius: 999px; font-weight:700; font-size:14px;
  color: var(--text); position:relative; transition: color .15s ease, background .15s ease;
}
.main-nav a:hover{ color: var(--orange); }
.main-nav a.active{ background: var(--surface-2); color: var(--orange); }

.header-actions{ display:flex; align-items:center; gap:8px; flex-shrink:0; }
.icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:999px; border:1px solid var(--border);
  background: var(--surface); color: var(--text); flex-shrink:0;
  transition: border-color .15s ease, transform .15s ease, color .15s ease;
}
.icon-btn:hover{ border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }
.icon-btn svg{ width:18px; height:18px; }

.theme-toggle{ position:relative; }
.theme-toggle .sun{ display:none; }
html[data-theme="dark"] .theme-toggle .sun{ display:block; }
html[data-theme="dark"] .theme-toggle .moon{ display:none; }

.social-inline{ display:flex; gap:6px; }

/* WhatsApp brand mark stays WhatsApp green everywhere except the floating
   button (white-on-green, set separately below) */
.icon-btn.wa-brand{ color: var(--whatsapp); border-color: rgba(37,211,102,.35); }
.icon-btn.wa-brand:hover{ color:#1DA851; border-color:#1DA851; }

.brochure-btn{ background: #E63946; color:#fff; border-color:transparent; width:46px; height:46px; }
.brochure-btn svg{ width:23px; height:23px; }
.brochure-btn:hover{ background: #C62839; color:#fff; }
.brochure-label{ display:none; }

.cart-btn{ position:relative; }
.cart-count{
  position:absolute; top:-4px; right:-4px; background: var(--orange); color:#fff;
  font-size:10.5px; font-weight:800; min-width:17px; height:17px; border-radius:999px;
  display:flex; align-items:center; justify-content:center; padding:0 3px;
}

.nav-toggle{ display:none; }
.nav-close{ display:none; }

/* Tablet / small-laptop: shrink nav + hide inline socials to keep the menu on one line */
@media (max-width: 1180px) and (min-width: 901px){
  .main-nav a{ padding:8px 9px; font-size:13.2px; }
  .header-actions{ gap:5px; }
  .social-inline{ display:none; }
}

@media (max-width: 900px){
  .top-strip .top-contacts a span.hide-mobile{ display:none; }
  .container.header-inner{ padding: 14px 16px; }
  .main-nav{
    position: fixed; top:0; right:-320px; width:300px; max-width:82vw; max-height:100vh; max-height:100dvh;
    background: rgba(15,63,115,.95);
    flex-direction:column; align-items:stretch; padding: 84px 22px 24px;
    transition: right .3s ease; overflow-y:auto; -webkit-overflow-scrolling:touch; overscroll-behavior:contain; box-shadow: -24px 0 50px rgba(0,0,0,.35);
    z-index:410; white-space:normal; border-radius:0 0 0 16px;
    scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.4) transparent;
  }
  .main-nav::-webkit-scrollbar{ width:6px; }
  .main-nav::-webkit-scrollbar-track{ background:transparent; }
  .main-nav::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.4); border-radius:999px; }
  .main-nav::-webkit-scrollbar-thumb:hover{ background: rgba(255,255,255,.6); }
  .main-nav.open{ right:0; }
  .main-nav a{ padding:14px 10px; border-bottom:1px solid rgba(255,255,255,.18); border-radius:0; display:block; color:#fff; }
  .main-nav a:hover{ color:#FFD9C9; }
  .main-nav a.active{ background: rgba(255,255,255,.12); color: var(--orange); }
  .nav-toggle{
    display:inline-flex; align-items:center; justify-content:center;
    width:38px; height:38px; border-radius:10px; border:1px solid var(--border); background:var(--surface);
  }
  .nav-toggle svg{ width:20px; height:20px; }
  .header-actions .hide-mobile-actions{ display:none; }
  .brand img{ height:56px; }
  .nav-close{
    display:flex; position:absolute; top:24px; right:22px; width:34px; height:34px; border-radius:999px;
    border:1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12); align-items:center; justify-content:center;
    color:#fff;
  }
  .whatsapp-float, .call-float, .scroll-toggle{ right:auto; left:50%; transform:translateX(-50%); }
  .call-float:hover{ transform:translateX(-50%); }
  .brochure-btn{
    width:auto; height:auto; background:transparent; border:none; box-shadow:none;
    flex-direction:column; gap:3px; padding:2px 4px; color:#E63946;
  }
  .brochure-btn svg{ width:34px; height:34px; }
  .brochure-btn:hover{ background:transparent; color:#C62839; }
  .brochure-label{ display:block; font-size:9.5px; font-weight:800; line-height:1; white-space:nowrap; }
}

@media (max-width: 480px){
  .container.header-inner{ padding: 12px 14px; }
  .brand img{ height:50px; }
  .top-strip .tag-247{ font-size:12px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  background: linear-gradient(125deg, var(--orange-ink) 0%, var(--orange) 65%, var(--blue) 140%);
  color:#fff; padding: 96px 0 130px;
}
.hero::before{
  content:""; position:absolute; inset:0; opacity:.14; pointer-events:none;
  background-image:
    linear-gradient(90deg, #fff 1px, transparent 1px),
    linear-gradient(#fff 1px, transparent 1px);
  background-size: 46px 46px;
}
.hero-grid{ position:relative; display:grid; grid-template-columns: 1.1fr .9fr; gap:48px; align-items:center; }
.hero-badge{
  display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.35); padding:8px 16px; border-radius:999px;
  font-size:13px; font-weight:700; letter-spacing:.04em; margin-bottom:22px;
}
.hero h1{ font-size: clamp(34px, 5vw, 58px); color:#fff; }
.hero p.lead{ color: rgba(255,255,255,.88); font-size:18px; max-width:520px; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-top:8px; }
.hero-stats{ display:flex; gap:30px; margin-top:44px; flex-wrap:wrap; }
.hero-stats div strong{ display:block; font-size:26px; font-weight:800; }
.hero-stats div span{ font-size:12.5px; color:rgba(255,255,255,.75); text-transform:uppercase; letter-spacing:.06em; }
.hero-visual{
  position:relative; border-radius: 20px; overflow:hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.25);
  aspect-ratio: 4/3.1;
}
.hero-visual img{ width:100%; height:100%; object-fit:cover; }
.hero-visual .tag{
  position:absolute; left:16px; bottom:16px; background:rgba(5,15,25,.65); backdrop-filter:blur(6px);
  color:#fff; font-size:12.5px; font-weight:700; padding:8px 14px; border-radius:999px; z-index:3;
}
.hero-slide{ position:absolute; inset:0; opacity:0; transition: opacity 1.1s ease; }
.hero-slide.active{ opacity:1; }
.hero-slide img{ width:100%; height:100%; object-fit:cover; }
.slide-dots{ position:absolute; right:16px; bottom:16px; display:flex; gap:6px; z-index:3; }
.slide-dots button{
  width:8px; height:8px; border-radius:999px; border:none; padding:0; background:rgba(255,255,255,.5);
  transition: all .25s ease; cursor:pointer;
}
.slide-dots button.active{ width:22px; background:#fff; }

.divider-cut{
  height: 46px; margin-top:-46px; position:relative; z-index:2;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* page (non-home) header banner */
.page-hero{
  background: linear-gradient(120deg, var(--orange-ink), var(--orange) 78%);
  color:#fff; padding: 62px 0 84px; position:relative; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0; opacity:.14; pointer-events:none;
  background-image:
    linear-gradient(90deg, #fff 1px, transparent 1px),
    linear-gradient(#fff 1px, transparent 1px);
  background-size: 46px 46px;
}
.page-hero .eyebrow{ color:#fff; position:relative; z-index:1; }
.page-hero .eyebrow::before{ background:#fff; }
.page-hero .container{ position:relative; z-index:1; }
.page-hero h1{ color:#fff; font-size: clamp(30px,4.2vw,46px); max-width:720px; }
.page-hero p{ color:rgba(255,255,255,.85); max-width:640px; font-size:16.5px; }
.breadcrumb{ font-size:13px; color:rgba(255,255,255,.7); margin-bottom:16px; }
.breadcrumb a:hover{ color:#fff; }

/* ==========================================================================
   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); }
@media (max-width: 980px){ .grid-3,.grid-4{ grid-template-columns: repeat(2,1fr);} .hero-grid{ grid-template-columns:1fr; } .hero-visual{ order:-1; } }
@media (max-width: 640px){ .grid-2,.grid-3,.grid-4{ grid-template-columns: 1fr; } }

.card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius);
  padding:26px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  border-top: 3px solid var(--orange); position:relative;
}
.card:nth-child(3n+2){ border-top-color: var(--blue); }
.card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }

.icon-tile{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--orange), var(--orange-ink)); color:#fff; margin-bottom:18px;
}
.icon-tile svg{ width:26px; height:26px; }
.icon-tile.alt{ background: linear-gradient(135deg, var(--blue), var(--blue-ink)); }

.service-card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius);
  overflow:hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card .thumb{ aspect-ratio: 4/3; overflow:hidden; background:var(--surface-2); }
.service-card .thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.service-card:hover .thumb img{ transform: scale(1.06); }
.service-card .body{ padding:20px; }
.service-card h3{ font-size:17px; margin-bottom:6px; }
.service-card p{ font-size:14px; margin-bottom:12px; }
.tagchip{
  display:inline-block; font-size:11.5px; font-weight:800; letter-spacing:.05em; text-transform:uppercase;
  color: var(--orange-ink); background: rgba(241,97,54,.12); padding:4px 10px; border-radius:999px; margin-bottom:10px;
}
html[data-theme="dark"] .tagchip{ background: rgba(255,138,96,.18); color:#FF9C74; }

/* ---------- Why us ---------- */
.why-item{ display:flex; gap:16px; align-items:flex-start; }
.why-item .num{
  font-size:13px; font-weight:800; color:#fff; background: var(--orange);
  width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.why-item h3{ font-size:17px; margin-bottom:4px; }
.why-item p{ font-size:14.5px; margin-bottom:0; }

/* ---------- Filter bar (Products/Services + Shop category filters) ---------- */
.gallery-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:30px; }
.filter-btn{
  padding:9px 18px; border-radius:999px; border:1px solid var(--border); background:var(--surface);
  font-weight:700; font-size:13.5px; color: var(--text-muted); transition: all .15s ease;
}
.filter-btn:hover{ border-color: var(--orange); color: var(--orange); }
.filter-btn.active{ background: var(--orange); border-color: var(--orange); color:#fff; }

/* ---------- Why us: comparison table ---------- */
.diff-table{ display:flex; flex-direction:column; }
.diff-row{ display:grid; grid-template-columns: 1.4fr 1fr 1fr; border-bottom:1px solid var(--border); }
.diff-row-last{ border-bottom:none; }
.diff-row > div{ padding:16px 20px; }
.diff-row.diff-head > div{ padding:18px 20px; font-weight:800; }
.diff-head .diff-label{ font-size:13.5px; color:var(--text-muted); text-transform:uppercase; letter-spacing:.04em; }
.diff-head .diff-us{ text-align:center; background:rgba(241,97,54,.08); }
.diff-head .diff-them{ text-align:center; color:var(--text-muted); }
.diff-row:not(.diff-head) .diff-us{ text-align:center; color:var(--orange-ink); font-weight:800; }
.diff-row:not(.diff-head) .diff-them{ text-align:center; color:var(--text-muted); }

@media (max-width:640px){
  .diff-row{ display:block; padding:16px 18px; }
  .diff-row.diff-head{ display:none; }
  .diff-row > div{ padding:3px 0; }
  .diff-row .diff-label{ font-weight:800; font-size:14.5px; color:var(--text); margin-bottom:8px; }
  .diff-row:not(.diff-head) .diff-us,
  .diff-row:not(.diff-head) .diff-them{ text-align:left; font-size:13.5px; }
  .diff-row .diff-us::before{ content: attr(data-label) ": "; font-weight:800; color: var(--orange-ink); }
  .diff-row .diff-them::before{ content: attr(data-label) ": "; font-weight:700; color: var(--text); }
}

/* ---------- Why us: photo-free creative reason rows ---------- */
.reason-row{
  position:relative; display:flex; gap:22px; align-items:flex-start;
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius);
  padding:30px 28px; overflow:hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.reason-row:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.reason-row .ghost-num{
  position:absolute; right:14px; top:-18px; font-size:96px; font-weight:800; line-height:1;
  color: var(--orange); opacity:.08; letter-spacing:-.04em; pointer-events:none;
}
.reason-row.blue .ghost-num{ color: var(--blue); }
.reason-row .reason-icon{
  width:56px; height:56px; border-radius:16px; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--orange), var(--orange-ink)); color:#fff;
}
.reason-row.blue .reason-icon{ background: linear-gradient(135deg, var(--blue), var(--blue-ink)); }
.reason-row .reason-icon svg{ width:28px; height:28px; }
.reason-row .reason-body{ position:relative; z-index:1; }
.reason-row h3{ font-size:19px; margin-bottom:8px; }
.reason-row p{ font-size:14.5px; margin-bottom:0; }
@media (max-width:640px){ .reason-row .ghost-num{ font-size:64px; } }

/* ---------- Contact: reach-out banner (visually distinct from plain info cards) ---------- */
.reach-banner{
  background: linear-gradient(115deg, var(--orange-ink), var(--orange) 55%, var(--blue) 130%);
  border-radius: var(--radius); color:#fff; padding: 40px 30px; position:relative; overflow:hidden;
  display:grid; grid-template-columns: repeat(2,1fr); gap:0;
}
.reach-banner::before{
  content:""; position:absolute; inset:0; opacity:.14; pointer-events:none;
  background-image: linear-gradient(90deg, #fff 1px, transparent 1px), linear-gradient(#fff 1px, transparent 1px);
  background-size: 40px 40px;
}
.reach-item{ position:relative; z-index:1; padding: 6px 26px; text-align:left; border-left:1px solid rgba(255,255,255,.28); }
.reach-item:first-child{ border-left:none; }
.reach-item .reach-icon{
  width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,.16); display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
}
.reach-item .reach-icon svg{ width:20px; height:20px; }
.reach-item h3{ font-size:16.5px; color:#fff; margin-bottom:6px; }
.reach-item p{ font-size:13.5px; color:rgba(255,255,255,.85); margin-bottom:0; }
@media (max-width:820px){
  .reach-banner{ grid-template-columns: 1fr; padding:30px 26px; }
  .reach-item{ border-left:none; border-top:1px solid rgba(255,255,255,.28); padding:22px 0; }
  .reach-item:first-child{ border-top:none; padding-top:6px; }
}

/* ---------- Testimonials ---------- */
.rating-stars{ color:#FFB020; letter-spacing:2px; font-size:15px; margin-bottom:10px; }
.review-card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius); padding:22px;
}
.review-head{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.review-avatar{
  width:46px; height:46px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--orange), var(--orange-ink)); color:#fff; font-weight:800; font-size:15px;
}
.review-avatar.blue{ background: linear-gradient(135deg, var(--blue), var(--blue-ink)); }
.review-name{ font-weight:800; font-size:14.5px; }
.review-date{ font-size:12px; color: var(--text-muted); }
.review-card p{ font-size:14.5px; margin-bottom:0; }
.google-badge{ display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:700; color:var(--text-muted); }

.testimonial-strip{ overflow:hidden; }
.marquee-track{ display:flex; gap:20px; width:max-content; animation: scrollx 55s linear infinite; }
.testimonial-strip:hover .marquee-track{ animation-play-state: paused; }
@keyframes scrollx{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
.marquee-track .review-card{ width:320px; flex-shrink:0; }

/* ---------- Shop ---------- */
.shop-toolbar{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:30px; flex-wrap:wrap; }
.shop-search{
  display:flex; align-items:center; gap:10px; background: var(--surface); border:1px solid var(--border);
  border-radius:999px; padding:10px 16px; flex:1; max-width:360px;
}
.shop-search input{ border:none; outline:none; background:transparent; color: var(--text); font-family: var(--ff); width:100%; font-size:14px; }
.shop-search svg{ width:17px; height:17px; color: var(--text-muted); flex-shrink:0; }
.product-card{ display:flex; flex-direction:column; }
.product-card .thumb{ position:relative; aspect-ratio:1/1; border-radius:10px; overflow:hidden; background: var(--surface-2); margin-bottom:14px; }
.product-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.product-price{ display:flex; align-items:baseline; gap:8px; margin:6px 0 14px; }
.product-price strong{ font-size:20px; color: var(--orange-ink); }
html[data-theme="dark"] .product-price strong{ color:#FF8A60; }
.product-price s{ color: var(--text-muted); font-size:13px; }
.qty-row{ display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.qty-stepper{ display:flex; align-items:center; border:1px solid var(--border); border-radius:999px; overflow:hidden; }
.qty-stepper button{ width:32px; height:32px; background:var(--surface-2); border:none; font-size:16px; font-weight:800; color:var(--text); }
.qty-stepper input{ width:38px; text-align:center; border:none; background:transparent; color:var(--text); font-family:var(--ff); font-weight:700; }
.badge-stock{ font-size:11.5px; font-weight:800; color:#1a9d5c; }

.cart-drawer{
  position:fixed; top:0; right:-420px; width:400px; max-width:92vw; height:100%; background: var(--surface);
  box-shadow: -20px 0 50px rgba(0,0,0,.25); z-index:400; transition: right .3s ease; display:flex; flex-direction:column;
  border-left:1px solid var(--border);
}
.cart-drawer.open{ right:0; }
.cart-drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:20px; border-bottom:1px solid var(--border); }
.cart-items{ flex:1; overflow-y:auto; padding:14px 20px; }
.cart-line{ display:flex; gap:12px; padding:14px 0; border-bottom:1px solid var(--border); }
.cart-line img{ width:60px; height:60px; border-radius:8px; object-fit:cover; background:var(--surface-2); }
.cart-line .info{ flex:1; }
.cart-line .info strong{ font-size:14px; display:block; }
.cart-line .remove{ font-size:12px; color:var(--orange); font-weight:700; }
.cart-footer{ padding:20px; border-top:1px solid var(--border); }
.cart-subtotal{ display:flex; justify-content:space-between; font-weight:800; font-size:16px; margin-bottom:14px; }
.cart-empty{ text-align:center; padding:60px 20px; color: var(--text-muted); }
.overlay{ position:fixed; inset:0; background:rgba(3,8,16,.5); z-index:390; display:none; }
.overlay.open{ display:block; }

/* ---------- Forms ---------- */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-grid .full{ grid-column: 1/-1; }
@media (max-width:640px){ .form-grid{ grid-template-columns:1fr; } }
label{ display:block; font-size:13.5px; font-weight:700; margin-bottom:7px; }
input, textarea, select{
  width:100%; padding:13px 16px; border-radius: var(--radius-sm); border:1px solid var(--border);
  background: var(--bg-alt); color: var(--text); font-family: var(--ff); font-size:14.5px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, textarea:focus, select:focus{ border-color: var(--orange); box-shadow: 0 0 0 3px rgba(241,97,54,.15); outline:none; }
textarea{ min-height:130px; resize:vertical; }
.field{ margin-bottom:6px; }
.form-note{ font-size:12.5px; color: var(--text-muted); margin-top:10px; }
.form-success{
  display:none; background: rgba(26,157,92,.12); border:1px solid #1a9d5c; color:#1a9d5c;
  padding:14px 18px; border-radius:10px; font-weight:700; font-size:14px; margin-bottom:20px;
}
.form-success.show{ display:block; }

/* ---------- Contact info cards / map ---------- */
.contact-info-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:20px; margin-bottom:50px; }
@media (max-width:980px){ .contact-info-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width:640px){ .contact-info-grid{ grid-template-columns: 1fr; } }
.map-wrap{ border-radius: var(--radius); overflow:hidden; border:1px solid var(--border); box-shadow: var(--shadow); }
.map-wrap iframe{ width:100%; height:420px; border:0; display:block; }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float{
  position:fixed; right:22px; bottom:22px; z-index:300; width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow: 0 10px 26px rgba(0,0,0,.3);
  animation: pulse 2.6s ease-in-out infinite;
}
.whatsapp-float svg{ width:28px; height:28px; fill:#fff; }
@keyframes pulse{ 0%,100%{ box-shadow:0 10px 26px rgba(37,211,102,.4);} 50%{ box-shadow:0 10px 26px rgba(37,211,102,.75);} }

.call-float{
  position:fixed; right:22px; bottom:88px; z-index:300; width:58px; height:58px; border-radius:50%;
  background: var(--orange); display:flex; align-items:center; justify-content:center; box-shadow: 0 10px 26px rgba(0,0,0,.3);
}
.call-float svg{ width:26px; height:26px; stroke:#fff; fill:none; }
.call-float:hover{ background: var(--orange-ink); }

.scroll-toggle{
  position:fixed; right:22px; bottom:154px; z-index:300; width:44px; height:44px; border-radius:50%;
  background: var(--surface); border:1px solid var(--border); display:none; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
}
.scroll-toggle.show{ display:flex; }
.scroll-toggle svg{ width:18px; height:18px; }

body.nav-is-open .whatsapp-float,
body.nav-is-open .call-float,
body.nav-is-open .scroll-toggle{ display:none; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background: var(--footer-bg); color: rgba(255,255,255,.86); padding-top:70px; position:relative; overflow:hidden; }
html[data-theme="dark"] .site-footer{ background:#0A2C50; border-top:1px solid var(--border); }
.site-footer::after{
  content:""; position:absolute; inset:0; opacity:.06; pointer-events:none; z-index:0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}
.site-footer .container{ position:relative; z-index:1; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.14); }
.footer-legal{}
.footer-contact-col{}
@media (max-width:980px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width:640px){ .footer-grid{ grid-template-columns: 1fr; } }
.site-footer .brand img{ height:62px; margin-bottom:14px; }
.site-footer h4{ color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:.07em; margin-bottom:18px; }
.site-footer ul li{ margin-bottom:11px; }
.site-footer a{ color: rgba(255,255,255,.78); font-size:14.5px; }
.site-footer a:hover{ color: var(--orange); }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.3); display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ background: var(--orange); border-color: var(--orange); }
.footer-social svg{ width:17px; height:17px; fill:#fff; }
.footer-contact li{ display:flex; gap:10px; font-size:14.5px; align-items:flex-start; }
.footer-contact svg{ width:17px; height:17px; flex-shrink:0; margin-top:3px; color: var(--orange); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:13px; color: rgba(255,255,255,.65); flex-wrap:wrap; gap:10px; }

/* ---------- misc ---------- */
.pill-note{
  display:inline-flex; align-items:center; gap:8px; background: var(--surface-2); border:1px solid var(--border);
  padding:8px 16px; border-radius:999px; font-size:13px; font-weight:700; color: var(--text-muted); margin-bottom:20px;
}
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
@media (max-width:980px){ .two-col{ grid-template-columns:1fr; } }
.stat-row{ display:flex; gap:34px; flex-wrap:wrap; margin-top:26px; }
.stat-row div strong{ display:block; font-size:30px; font-weight:800; color: var(--orange-ink); }
html[data-theme="dark"] .stat-row div strong{ color:#FF8A60; }
.stat-row div span{ font-size:13px; color: var(--text-muted); }
.about-photo-wrap{ position:relative; }
.about-photo-wrap img{ border-radius: var(--radius); box-shadow: var(--shadow); }
.about-photo-wrap .float-card{
  position:absolute; bottom:-24px; right:-24px; background: var(--surface); border:1px solid var(--border);
  border-radius: var(--radius-sm); padding:16px 20px; box-shadow: var(--shadow); display:flex; gap:12px; align-items:center;
}
@media (max-width:640px){ .about-photo-wrap .float-card{ right:0; bottom:-18px; } }
.float-card strong{ font-size:22px; color: var(--orange); display:block; }
.float-card span{ font-size:12px; color: var(--text-muted); }

.legal h2{ font-size:22px; margin-top:36px; }
.legal p, .legal li{ color: var(--text-muted); font-size:15px; }
.legal ul{ list-style:disc; padding-left:22px; margin-bottom:16px; }
.legal ul li{ margin-bottom:8px; }

/* ---------- About Us: photo collage ---------- */
.photo-collage{ position:relative; display:grid; grid-template-columns:1.2fr 1fr; gap:16px; }
.photo-collage .tall{ grid-row: span 2; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); }
.photo-collage .tall img{ width:100%; height:100%; object-fit:cover; }
.photo-collage .stack{ display:flex; flex-direction:column; gap:16px; }
.photo-collage .small{ border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); aspect-ratio:4/3; }
.photo-collage .small img{ width:100%; height:100%; object-fit:cover; }
.photo-collage .badge-24{
  position:absolute; left:-14px; bottom:-18px; background: var(--orange); color:#fff; border-radius:14px;
  padding:14px 18px; box-shadow: var(--shadow); text-align:center; line-height:1.1;
}
.photo-collage .badge-24 strong{ display:block; font-size:22px; }
.photo-collage .badge-24 span{ font-size:11px; text-transform:uppercase; letter-spacing:.05em; opacity:.9; }
@media (max-width:640px){ .photo-collage{ grid-template-columns:1fr 1fr; } .photo-collage .badge-24{ left:8px; bottom:-14px; padding:10px 14px; } }

/* ---------- About Us: milestone timeline ---------- */
.timeline{ position:relative; padding-left:28px; border-left:2px dashed var(--border); }
.timeline-item{ position:relative; padding-bottom:34px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-34px; top:2px; width:14px; height:14px; border-radius:50%;
  background: var(--orange); border:3px solid var(--bg);
}
.timeline-item strong{ display:block; font-size:16px; margin-bottom:4px; }
.timeline-item span{ font-size:13px; color: var(--orange-ink); font-weight:800; text-transform:uppercase; letter-spacing:.05em; }
.timeline-item p{ font-size:14.5px; margin:6px 0 0; }

/* ---------- About Us: value pills ---------- */
.value-pills{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.value-pill{
  padding:9px 16px; border-radius:999px; font-size:13.5px; font-weight:700;
  border:1px solid var(--border); background: var(--surface); color: var(--text);
}
.value-pill.orange{ background: rgba(241,97,54,.1); border-color: rgba(241,97,54,.3); color: var(--orange-ink); }
.value-pill.blue{ background: rgba(25,91,160,.08); border-color: rgba(25,91,160,.25); color: var(--blue); }
html[data-theme="dark"] .value-pill.orange{ color:#FF9C74; }
html[data-theme="dark"] .value-pill.blue{ color:#6AA6E8; }

/* ---------- Extra responsive polish (tablet/mobile) ---------- */
@media (max-width: 980px){
  .section{ padding: 64px 0; }
  .hero{ padding: 72px 0 100px; }
  .footer-grid{ gap:34px; }
}
@media (max-width: 640px){
  .container{ padding: 0 18px; }
  .section{ padding: 48px 0; }
  .hero{ padding: 56px 0 84px; text-align:left; }
  .hero-cta{ gap:10px; }
  .hero-cta .btn{ flex:1 1 auto; text-align:center; }
  .section-head{ margin-bottom:32px; }
  .card{ padding:20px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; gap:6px; }
  .map-wrap iframe{ height:300px; }
  .photo-collage .badge-24 strong{ font-size:18px; }
}

/* ---------- Mobile-only footer layout (matches approved mobile mockup) ---------- */
.footer-mobile-only{ display:none; }
li.footer-desktop-only{ display:list-item; }
span.footer-desktop-only{ display:inline; }

@media (max-width: 900px){
  .site-footer{ position:relative; overflow:hidden; }
  .site-footer::before{
    content:"IMAGING"; position:absolute; left:50%; bottom:-40px; transform:translateX(-50%);
    font-size:108px; font-weight:800; color:rgba(255,255,255,.05); white-space:nowrap; pointer-events:none;
    letter-spacing:2px; line-height:1; z-index:0;
  }
  .footer-grid{
    position:relative; z-index:1;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "brand brand" "links legal" "contact contact";
    row-gap:38px;
  }
  .footer-brand{ grid-area:brand; text-align:center; }
  .footer-brand .brand{ justify-content:center; margin-right:0; }
  .footer-brand .footer-social{ justify-content:center; }
  .footer-links{ grid-area:links; }
  .footer-legal{ grid-area:legal; border-left:1px solid rgba(255,255,255,.22); padding-left:20px; }
  .footer-contact-col{ grid-area:contact; text-align:center; }
  .footer-links h4, .footer-legal h4, .footer-contact-col h4{ position:relative; padding-bottom:10px; }
  .footer-links h4::after, .footer-legal h4::after, .footer-contact-col h4::after{
    content:""; position:absolute; left:0; bottom:0; width:46px; height:2px; background: var(--orange);
  }
  .footer-contact-col h4::after{ left:50%; transform:translateX(-50%); }
  .footer-contact li{ justify-content:center; }
  .footer-links ul{ column-count:2; column-gap:22px; }
  .footer-links ul li{ break-inside:avoid; }
  li.footer-mobile-only{ display:list-item; }
  span.footer-mobile-only{ display:inline; }
  li.footer-desktop-only{ display:none; }
  span.footer-desktop-only{ display:none; }
  .footer-bottom{ justify-content:center; align-items:center; text-align:center; position:relative; z-index:1; }
}
