/* ============================================================
   ARHAS Foods & Beverages — main stylesheet
   Brand: orange #f0552d · amber #f2a413 · green #7ac143
   ============================================================ */

:root {
  --primary: #f0552d;
  --primary-dark: #d43f18;
  --amber: #f2a413;
  --green: #7ac143;
  --dark: #1d2430;
  --dark-2: #27303f;
  --text: #46505e;
  --muted: #7a8494;
  --light: #f7f8fa;
  --cream: #fdf5ef;
  --border: #e6e9ee;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(29, 36, 48, .09);
  --shadow-lg: 0 18px 50px rgba(29, 36, 48, .16);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); font-size: 16px; line-height: 1.7; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .25s; }
ul { list-style: none; }
h1, h2, h3, h4 { color: var(--dark); line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(1.9rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }

.container { width: min(1200px, 92%); margin-inline: auto; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-alt { background: var(--light); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: .95rem; border: 2px solid transparent; cursor: pointer; transition: all .25s; line-height: 1.2; }
.btn svg { width: 19px; height: 19px; fill: currentColor; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(240, 85, 45, .35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); color: #fff; }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { border-color: rgba(255,255,255,.75); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: #fff; color: var(--dark); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.btn-whatsapp:hover { background: #1eb958; color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.02rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- eyebrow / section head ---------- */
.eyebrow { display: inline-block; color: var(--primary); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; position: relative; }
.eyebrow.light { color: var(--amber); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 5vw, 56px); }
.section-head p { margin-top: 14px; color: var(--muted); }
.section-note { text-align: center; color: var(--muted); margin-top: 28px; }

/* ---------- topbar ---------- */
.topbar { background: var(--dark); color: #cfd6e0; font-size: .84rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; gap: 12px; }
.topbar a { color: #cfd6e0; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; fill: var(--amber); }
.topbar-contacts { display: flex; gap: 22px; }
.topbar-social { display: flex; gap: 6px; }
.topbar-social a { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.09); display: inline-flex; align-items: center; justify-content: center; }
.topbar-social a:hover { background: var(--primary); }
.topbar-social svg { width: 14px; height: 14px; fill: #fff; }

/* ---------- header ---------- */
.site-header { background: #fff; position: sticky; top: 0; z-index: 900; box-shadow: 0 2px 14px rgba(29,36,48,.08); transition: box-shadow .3s; }
.header-inner { display: flex; align-items: center; gap: 28px; padding: 10px 0; }
.brand img { width: 132px; height: auto; }
.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; gap: 0; align-items: center; }
.main-nav a { color: var(--dark); font-weight: 600; font-size: .88rem; padding: 10px 10px; border-radius: 8px; display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: var(--cream); }
.main-nav .caret { width: 15px; height: 15px; fill: currentColor; flex: none; }
.has-dropdown { position: relative; }
.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: #fff; min-width: 280px; border-radius: 12px; box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s; z-index: 950; }
.has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; font-size: .87rem; border-radius: 8px; white-space: normal; }
.dropdown .has-sub { position: relative; }
.sub-dropdown { position: absolute; top: -10px; left: calc(100% + 2px); background: #fff; min-width: 250px; border-radius: 12px; box-shadow: var(--shadow-lg); padding: 10px; opacity: 0; visibility: hidden; transform: translateX(8px); transition: all .25s; z-index: 960; }
.dropdown .has-sub:hover > .sub-dropdown, .dropdown .has-sub:focus-within > .sub-dropdown { opacity: 1; visibility: visible; transform: translateX(0); }
.caret-right { margin-left: auto; }
.header-cta { white-space: nowrap; }

/* hamburger */
.hamburger { display: none; width: 46px; height: 46px; border: none; background: var(--cream); border-radius: 10px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- mobile nav ---------- */
.mobile-nav-overlay { position: fixed; inset: 0; background: rgba(15, 19, 27, .55); opacity: 0; visibility: hidden; transition: all .3s; z-index: 990; }
.mobile-nav-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-nav { position: fixed; top: 0; right: 0; height: 100dvh; width: min(340px, 88vw); background: #fff; z-index: 1000; transform: translateX(105%); transition: transform .35s cubic-bezier(.4, 0, .2, 1); display: flex; flex-direction: column; padding: 18px 22px 28px; overflow-y: auto; }
.mobile-nav.is-open { transform: translateX(0); box-shadow: -12px 0 40px rgba(15,19,27,.2); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mobile-logo { width: 104px; }
.mobile-close { border: none; background: var(--light); width: 40px; height: 40px; border-radius: 50%; font-size: 26px; line-height: 1; cursor: pointer; color: var(--dark); }
.mobile-menu > li { border-bottom: 1px solid var(--border); }
.mobile-menu a, .mobile-sub-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 14px 4px; color: var(--dark); font-weight: 600; font-size: 1rem; background: none; border: none; font-family: inherit; cursor: pointer; text-align: left; }
.mobile-menu a:active, .mobile-menu a:hover { color: var(--primary); }
.mobile-sub-toggle .plus { font-size: 1.3rem; color: var(--primary); transition: transform .3s; }
.mobile-sub-toggle[aria-expanded="true"] .plus { transform: rotate(45deg); }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.mobile-submenu.is-open { max-height: 600px; }
.mobile-submenu a { font-size: .9rem; font-weight: 500; color: var(--text); padding: 10px 4px 10px 16px; }
.mobile-cta { margin-top: 20px; justify-content: center; }
.mobile-nav-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; font-size: .92rem; }

/* ---------- hero slider ---------- */
.hero-slider { position: relative; height: clamp(480px, 72vh, 680px); overflow: hidden; background: var(--dark); }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .9s ease; display: flex; align-items: center; }
.hero-slide.is-active { opacity: 1; z-index: 2; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(18, 22, 30, .82) 15%, rgba(18, 22, 30, .45) 55%, rgba(18, 22, 30, .18)); }
.hero-content { position: relative; z-index: 3; max-width: 680px; margin-right: auto; }
.hero-eyebrow { display: inline-block; background: rgba(242, 164, 19, .18); border: 1px solid rgba(242, 164, 19, .5); color: var(--amber); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: 7px 16px; border-radius: 40px; margin-bottom: 20px; }
.hero-title { color: #fff; font-size: clamp(1.9rem, 4.6vw, 3.4rem); font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.hero-text { color: #dde3ec; font-size: clamp(.98rem, 1.6vw, 1.12rem); margin-bottom: 30px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,.14); color: #fff; font-size: 1.2rem; cursor: pointer; transition: background .25s; backdrop-filter: blur(4px); }
.hero-arrow:hover { background: var(--primary); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }
.hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 9px; }
.hero-dot { width: 11px; height: 11px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); cursor: pointer; transition: all .25s; }
.hero-dot.is-active { background: var(--amber); width: 30px; border-radius: 20px; }

/* ---------- intro ---------- */
.intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.intro-media { position: relative; }
.intro-media > img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.intro-badge { position: absolute; bottom: -22px; right: -14px; background: var(--primary); color: #fff; border-radius: 14px; padding: 18px 24px; text-align: center; box-shadow: var(--shadow-lg); }
.intro-badge strong { display: block; font-size: 1.9rem; line-height: 1.1; }
.intro-badge span { font-size: .78rem; opacity: .92; }
.intro-body h2 { margin-bottom: 16px; }
.intro-body p { margin-bottom: 24px; }

/* ---------- stats ---------- */
.stats-band { background: linear-gradient(120deg, var(--primary) 0%, #e8681f 55%, var(--amber) 130%); padding: clamp(36px, 5vw, 52px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat strong { display: block; color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; line-height: 1.15; }
.stat span { color: rgba(255,255,255,.92); font-size: .92rem; font-weight: 600; }

/* ---------- cards ---------- */
.cards-grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform .3s, box-shadow .3s; border: 1px solid var(--border); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.icon-card { padding: 30px 24px; text-align: center; }
.icon-circle { width: 64px; height: 64px; border-radius: 20px; background: var(--cream); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-circle svg { width: 30px; height: 30px; fill: currentColor; }
.icon-circle.sm { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 12px; flex: none; }
.icon-circle.sm svg { width: 22px; height: 22px; }
.icon-card h3 { margin-bottom: 10px; }
.icon-card p { font-size: .9rem; color: var(--muted); }

.service-card { display: flex; flex-direction: column; color: inherit; }
.service-thumb { aspect-ratio: 16/9.4; overflow: hidden; }
.service-thumb img, .blog-thumb img, .product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .service-thumb img, .card:hover .blog-thumb img { transform: scale(1.07); }
.service-body { padding: 20px 20px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-body h3 { font-size: 1.02rem; }
.service-body p { font-size: .87rem; color: var(--muted); flex: 1; }
.link-more { color: var(--primary); font-weight: 700; font-size: .88rem; }

.product-card .product-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--cream); display: flex; align-items: center; justify-content: center; }
.product-thumb img { object-fit: contain; padding: 8px; }
.product-body { padding: 20px 22px 24px; }
.product-body h3 { margin-bottom: 8px; }
.product-body p { font-size: .9rem; color: var(--muted); }

/* ---------- process ---------- */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.process-step { position: relative; background: var(--cream); border-radius: var(--radius); padding: 26px 20px; text-align: center; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 14px; box-shadow: 0 6px 16px rgba(240,85,45,.35); }
.process-step h3 { margin-bottom: 8px; font-size: 1.02rem; }
.process-step p { font-size: .84rem; color: var(--muted); }

/* ---------- infrastructure ---------- */
.infra-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.infra-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.infra-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.infra-item:hover img { transform: scale(1.08); }

/* ---------- industries ---------- */
.industries-grid { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.industry-chip { display: inline-flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--border); border-radius: 50px; padding: 12px 22px 12px 12px; font-weight: 600; color: var(--dark); font-size: .93rem; box-shadow: var(--shadow); transition: all .25s; }
.industry-chip:hover { border-color: var(--primary); transform: translateY(-3px); }
.industry-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.industry-icon svg { width: 19px; height: 19px; fill: currentColor; }

/* ---------- why ---------- */
.why-section { background: var(--dark); }
.why-section .section-head h2 { color: #fff; }
.why-card { background: var(--dark-2); border-radius: var(--radius); padding: 28px 26px; border: 1px solid rgba(255,255,255,.07); transition: all .3s; }
.why-card:hover { border-color: var(--primary); transform: translateY(-5px); }
.why-num { font-size: 2rem; font-weight: 800; color: var(--primary); opacity: .85; display: block; margin-bottom: 12px; }
.why-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.05rem; }
.why-card p { color: #9aa5b5; font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background-size: cover; background-position: center; padding: clamp(64px, 9vw, 110px) 0; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(212, 63, 24, .93), rgba(240, 85, 45, .82) 50%, rgba(242, 164, 19, .72)); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; }
.cta-inner h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.5rem); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.94); margin-bottom: 28px; font-size: 1.04rem; }
.cta-inner .hero-btns { justify-content: center; }
.cta-inner .btn-primary { background: #fff; color: var(--primary); box-shadow: 0 10px 26px rgba(0,0,0,.22); }
.cta-inner .btn-primary:hover { background: var(--dark); color: #fff; }

/* ---------- page banner / breadcrumb ---------- */
.page-banner { position: relative; background-size: cover; background-position: center; padding: clamp(64px, 9vw, 110px) 0; background-color: var(--dark); }
.banner-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(18,22,30,.85), rgba(18,22,30,.5)); }
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.breadcrumb { color: #b9c2cf; font-size: .88rem; font-weight: 600; }
.breadcrumb a { color: var(--amber); }
.breadcrumb span { margin: 0 7px; opacity: .6; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.about-media > img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.about-gallery img { border-radius: 10px; box-shadow: var(--shadow); aspect-ratio: 1; object-fit: cover; width: 100%; }
.about-body h2 { margin-bottom: 16px; }
.expertise-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.expertise-chip { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--border); padding: 11px 20px; border-radius: 50px; font-weight: 600; font-size: .92rem; color: var(--dark); box-shadow: var(--shadow); }
.expertise-chip svg { width: 18px; height: 18px; fill: var(--green); flex: none; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.vm-card { background: var(--cream); border-radius: var(--radius); padding: 36px 32px; border-top: 4px solid var(--primary); }
.vm-card:nth-child(2) { border-top-color: var(--amber); }
.vm-card h2 { font-size: 1.4rem; margin-bottom: 12px; }
.founder-grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
.founder-photo img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.founder-placeholder { aspect-ratio: 4/4.6; border-radius: var(--radius); background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.founder-placeholder svg { width: 76px; height: 76px; fill: currentColor; opacity: .4; }
.founder-designation { color: var(--primary); font-weight: 700; margin: 4px 0 16px; }

/* ---------- services pages ---------- */
.service-row { display: grid; grid-template-columns: 240px 1fr; color: inherit; }
.service-row-thumb { overflow: hidden; min-height: 100%; }
.service-row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-row-body { padding: 24px 26px; }
.service-row-body h3 { margin-bottom: 4px; }
.service-tagline { color: var(--primary); font-weight: 600; font-size: .86rem; margin-bottom: 8px; }
.service-row-body > p:not(.service-tagline) { font-size: .89rem; color: var(--muted); margin-bottom: 10px; }
.service-detail-grid, .blog-single-grid { display: grid; grid-template-columns: 1fr 330px; gap: clamp(28px, 4vw, 52px); align-items: start; }
.service-detail-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; margin-bottom: 22px; }
.sidebar-card h3 { margin-bottom: 14px; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border: none; }
.sidebar-links a { display: block; padding: 10px 2px; color: var(--text); font-weight: 600; font-size: .9rem; }
.sidebar-links a:hover, .sidebar-links a.active { color: var(--primary); }
.sidebar-cta { background: var(--dark); border: none; }
.sidebar-cta h3 { color: #fff; }
.sidebar-cta p { color: #9aa5b5; font-size: .9rem; margin-bottom: 14px; }
.sidebar-phone a { color: var(--amber); font-weight: 800; font-size: 1.15rem; }
.sidebar-phone { margin-bottom: 14px; }

/* ---------- rich text ---------- */
.rich-text { color: var(--text); }
.rich-text p { margin-bottom: 16px; }
.rich-text h2 { font-size: 1.45rem; margin: 30px 0 14px; }
.rich-text h3 { font-size: 1.15rem; margin: 24px 0 12px; }
.rich-text ul, .rich-text ol { margin: 0 0 18px 22px; }
.rich-text ul { list-style: none; }
.rich-text ul li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.rich-text ul li::before { content: ''; position: absolute; left: 0; top: 7px; width: 15px; height: 15px; border-radius: 50%; background: var(--green); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E") center/contain no-repeat; }
.rich-text ol { list-style: decimal; }
.rich-text ol li { margin-bottom: 8px; padding-left: 6px; }
.legal-page { max-width: 860px; }

/* ---------- blog ---------- */
.blog-thumb { aspect-ratio: 16/9.2; overflow: hidden; background: var(--cream); }
.blog-card { color: inherit; display: flex; flex-direction: column; }
.blog-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.blog-date { color: var(--muted); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.blog-body h3 { font-size: 1rem; line-height: 1.4; }
.blog-body p { font-size: .87rem; color: var(--muted); flex: 1; }
.blog-meta { display: flex; gap: 10px; color: var(--muted); font-size: .88rem; font-weight: 600; margin-bottom: 22px; }
.blog-article .rich-text { font-size: 1.02rem; }
.blog-share { display: flex; align-items: center; gap: 10px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--border); font-weight: 700; color: var(--dark); }
.blog-share a { width: 38px; height: 38px; border-radius: 50%; background: var(--cream); display: inline-flex; align-items: center; justify-content: center; transition: all .25s; }
.blog-share a:hover { background: var(--primary); }
.blog-share a:hover svg { fill: #fff; }
.blog-share svg { width: 17px; height: 17px; fill: var(--primary); }
.sidebar-posts li { margin-bottom: 14px; }
.sidebar-posts a { display: flex; gap: 12px; align-items: center; color: var(--dark); font-weight: 600; font-size: .86rem; line-height: 1.4; }
.sidebar-posts a:hover { color: var(--primary); }
.sidebar-posts img { width: 62px; height: 52px; object-fit: cover; border-radius: 9px; flex: none; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 42px; }
.pagination a { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--border); color: var(--dark); font-weight: 700; }
.pagination a.active, .pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.contact-info h2 { margin-bottom: 12px; }
.contact-info > p { color: var(--muted); margin-bottom: 26px; }
.contact-list li { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-list strong { color: var(--dark); display: block; margin-bottom: 2px; }
.contact-list p { font-size: .93rem; }
.contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: clamp(24px, 4vw, 40px); }
.contact-form-wrap h3 { font-size: 1.3rem; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; color: var(--dark); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 15px; font-family: inherit; font-size: .95rem; color: var(--dark); background: var(--light); transition: border .25s, background .25s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: #fff; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }
.form-error { background: #fdeaea; color: #c0392b; border: 1px solid #f5c6c6; border-radius: 10px; padding: 12px 16px; margin-bottom: 18px; font-size: .9rem; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success h3 { color: var(--green); font-size: 1.4rem; margin-bottom: 10px; }
.form-success p { margin-bottom: 20px; }
.form-success-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.map-section iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: #9aa5b5; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1.1fr; gap: clamp(28px, 4vw, 48px); padding: clamp(48px, 7vw, 72px) 0 40px; }
.footer-col h3 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 3px; background: var(--primary); }
.footer-logo-wrap { background: #fff; border-radius: 12px; padding: 10px 16px; display: inline-block; margin-bottom: 16px; }
.footer-logo-wrap img { width: 128px; }
.footer-about p { font-size: .9rem; margin-bottom: 18px; }
.footer-social { display: flex; gap: 9px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; transition: all .25s; }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; fill: #fff; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: #9aa5b5; font-size: .92rem; }
.footer-col ul a:hover { color: var(--amber); }
.footer-contact p { font-size: .92rem; margin-bottom: 10px; }
.footer-contact a { color: #cfd6e0; }
.footer-contact a:hover { color: var(--amber); }
.footer-contact .btn-whatsapp { margin-top: 8px; padding: 11px 22px; font-size: .88rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: .85rem; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: #9aa5b5; }
.footer-legal a:hover { color: var(--amber); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 980; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(37, 211, 102, .5); animation: wa-pulse 2.4s infinite; transition: transform .25s; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse { 0% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- products ---------- */
.product-cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: clamp(30px, 5vw, 50px); }
.product-cat-tabs a { padding: 10px 24px; border-radius: 50px; background: #fff; border: 1.5px solid var(--border); font-weight: 700; font-size: .9rem; color: var(--dark); box-shadow: var(--shadow); transition: all .25s; }
.product-cat-tabs a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.product-category { margin-bottom: clamp(36px, 6vw, 60px); scroll-margin-top: 110px; }
.product-cat-title { position: relative; padding-left: 16px; margin-bottom: 24px; font-size: 1.4rem; }
.product-cat-title::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px; border-radius: 4px; background: linear-gradient(var(--primary), var(--amber)); }
.product-hero { background: var(--cream); border-radius: var(--radius); padding: 26px; display: flex; justify-content: center; margin-bottom: 26px; }
.product-hero img { max-height: 300px; width: auto; object-fit: contain; }
.mobile-cat-label { font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); padding: 12px 4px 4px; }
.page-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- not found ---------- */
.not-found { padding: 120px 0; }
.not-found h1 { margin-bottom: 12px; }
.not-found p { margin-bottom: 26px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1420px) {
  .header-cta { display: none; }
}

@media (max-width: 1080px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .infra-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1150px) {
  .main-nav { display: none; }
  .hamburger { display: flex; margin-left: auto; }
}

@media (max-width: 900px) {
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .about-grid, .contact-grid, .vm-grid, .founder-grid,
  .service-detail-grid, .blog-single-grid { grid-template-columns: 1fr; }
  .founder-grid { text-align: center; }
  .founder-photo { max-width: 280px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-badge { right: 10px; }
  .service-sidebar { order: 2; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .topbar-email, .topbar-social { display: none; }
  .topbar-inner { justify-content: center; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .infra-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { justify-content: center; text-align: center; }
  .service-row { grid-template-columns: 1fr; }
  .service-row-thumb { aspect-ratio: 16/8; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .hero-arrow { display: none; }
  .page-gallery { grid-template-columns: repeat(2, 1fr); }
  .brand img { width: 108px; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
}

@media (max-width: 400px) {
  .process-steps { grid-template-columns: 1fr; }
}
