/*
Theme Name: Sarichy Ghana
Theme URI: https://sarichyghltd.com
Author: Elinas Technologies — Ghana (for Sarichy Ghana Limited)
Author URI: https://elinastechnologies.com
Description: Professional Elementor-ready WordPress theme for Sarichy Ghana Limited — a dynamic supply and services company based in Accra, Ghana. Features a clean blue & white design with full page templates for Home, About, Services, Contact, FAQ, Blog, and more.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://sarichyghltd.com
Text Domain: sarichy
Tags: elementor, full-site-editing, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/

/* ===================================================
   SARICHY GHANA — GLOBAL STYLES
   =================================================== */

:root {
  --blue:        #1cb9f0;
  --blue-dark:   #0d9fd6;
  --blue-deeper: #0a7faa;
  --blue-pale:   #e8f8fd;
  --blue-light:  #f0fbff;
  --navy:        #0c2233;
  --navy-mid:    #143347;
  --white:       #ffffff;
  --gray-50:     #f8fafb;
  --gray-100:    #eef3f6;
  --gray-200:    #d8e4ea;
  --gray-400:    #94adb9;
  --gray-600:    #4a6675;
  --gray-800:    #1e3342;
  --text:        #0f2232;
  --text-soft:   #4a6675;
  --radius:      12px;
  --shadow:      0 8px 32px rgba(12,34,51,.10);
  --shadow-lg:   0 20px 60px rgba(12,34,51,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--text-soft); line-height: 1.8; }
a  { color: var(--blue-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--blue); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4rem; }

/* ── CONTAINER ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
}
.section-pad { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ── SECTION LABELS ── */
.sec-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.sec-label::before {
  content: '';
  width: 28px; height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white) !important;
  padding: .85rem 2.2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(28,185,240,.35);
  transition: background .2s, transform .15s, box-shadow .2s;
  text-align: center;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(28,185,240,.45);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy) !important;
  padding: .85rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
  border: 2px solid var(--gray-200);
  transition: border-color .2s, color .2s;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue) !important;
}
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--navy) !important;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.18); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ── SECTION ACCENT ── */
.accent { color: var(--blue); font-style: italic; }

/* ── SERVICE TAGS ── */
.tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-deeper);
  font-size: .73rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 20px;
  letter-spacing: .03em;
}

/* ── REVEAL ANIMATIONS ── */
.reveal        { opacity: 0; transform: translateY(28px);  transition: opacity .7s, transform .7s; }
.reveal-left   { opacity: 0; transform: translateX(-28px); transition: opacity .7s, transform .7s; }
.reveal-right  { opacity: 0; transform: translateX(28px);  transition: opacity .7s, transform .7s; }
.reveal.in, .reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2e47 100%);
  padding: 8rem clamp(1.5rem,5vw,5rem) 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(28,185,240,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(28,185,240,.08) 0%, transparent 50%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin-bottom: 1.5rem;
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── STATS BAND ── */
.stats-band {
  background: var(--blue);
  padding: 3.5rem clamp(1.5rem,5vw,5rem);
}
.stats-row {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2rem; text-align: center;
}
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.stat-item .lbl {
  font-size: .82rem; color: rgba(255,255,255,.8);
  font-weight: 500; margin-top: .5rem;
  letter-spacing: .06em; text-transform: uppercase;
}

/* ── SLIDER ── */
.slider-section { padding: clamp(4rem,8vw,7rem) 0; background: var(--white); }
.slider-header  { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1.5rem; }
.slider-wrap    { position: relative; overflow: hidden; border-radius: 20px; box-shadow: var(--shadow-lg); }
.slider-track   { display: flex; transition: transform .65s cubic-bezier(.77,0,.18,1); will-change: transform; }
.slide          { min-width: 100%; height: 520px; position: relative; flex-shrink: 0; }
.slide img      { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay  { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,40,.72) 0%, rgba(10,25,40,.18) 55%, transparent 100%); }
.slide-caption  { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem 3rem; z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.slide-tag      { display: inline-block; background: var(--blue); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 4px; margin-bottom: .7rem; }
.slide-caption h3 { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: .5rem; }
.slide-caption p  { color: rgba(255,255,255,.8); font-size: .9rem; max-width: 500px; line-height: 1.6; }
.slide-cta      { background: var(--white); color: var(--navy) !important; padding: .7rem 1.6rem; border-radius: 8px; font-weight: 700; font-size: .85rem; white-space: nowrap; flex-shrink: 0; }
.slide-cta:hover { background: var(--blue-pale); }
.slider-arrow   { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.92); backdrop-filter: blur(6px); border: 1px solid var(--gray-200); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(12,34,51,.15); transition: background .2s, box-shadow .2s; }
.slider-arrow:hover { background: var(--blue); box-shadow: 0 6px 24px rgba(28,185,240,.4); }
.slider-arrow:hover svg { stroke: var(--white); }
.slider-arrow svg { width: 20px; height: 20px; stroke: var(--navy); stroke-width: 2.5; fill: none; transition: stroke .2s; }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }
.slider-dots { display: flex; gap: .6rem; justify-content: center; margin-top: 1.6rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200); cursor: pointer; transition: background .3s, width .3s, border-radius .3s; border: none; padding: 0; }
.dot.active { width: 28px; border-radius: 4px; background: var(--blue); }
.slider-thumbs { display: flex; gap: 1rem; margin-top: 1.2rem; }
.thumb { flex: 1; height: 72px; border-radius: 10px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color .2s, transform .2s; opacity: .6; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--blue); opacity: 1; transform: translateY(-2px); }

/* ── FAQ ── */
.faq-item { border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; margin-bottom: .9rem; transition: border-color .2s; }
.faq-item:hover, .faq-item.open { border-color: var(--blue); }
.faq-q { padding: 1.3rem 1.6rem; display: flex; justify-content: space-between; align-items: center; background: var(--gray-50); cursor: pointer; gap: 1rem; }
.faq-q span { font-weight: 600; font-size: .92rem; color: var(--navy); }
.faq-arrow { color: var(--blue); font-size: 1.2rem; flex-shrink: 0; transition: transform .25s; }
.faq-a { padding: 0 1.6rem; max-height: 0; overflow: hidden; transition: max-height .35s, padding .3s; }
.faq-a p { color: var(--text-soft); font-size: .9rem; line-height: 1.75; padding-bottom: 1.3rem; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ── SERVICE CARDS ── */
.service-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-img { height: 200px; overflow: hidden; position: relative; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .svc-img img { transform: scale(1.05); }
.svc-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,34,51,.5) 0%, transparent 60%); }
.svc-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.svc-icon { width: 46px; height: 46px; background: var(--blue-pale); border-radius: 10px; display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 1rem; }
.svc-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.svc-body p { color: var(--text-soft); font-size: .88rem; line-height: 1.7; flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.svc-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--blue); font-size: .85rem; font-weight: 700; margin-top: 1.2rem; transition: gap .2s; }
.svc-link:hover { gap: .7rem; }

/* ── BLOG / NEWS ── */
.post-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.post-thumb { height: 200px; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-body { padding: 1.5rem; }
.post-meta { font-size: .78rem; color: var(--gray-400); margin-bottom: .6rem; }
.post-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.post-body p { font-size: .88rem; }
.post-body .read-more { display: inline-flex; align-items: center; gap: .3rem; color: var(--blue); font-size: .85rem; font-weight: 700; margin-top: .8rem; }

/* ── TESTIMONIALS ── */
.testi-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; padding: 2rem; position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card::before { content: '"'; position: absolute; top: .5rem; right: 1.5rem; font-family: 'Playfair Display', serif; font-size: 6rem; font-weight: 800; color: var(--blue); opacity: .15; line-height: 1; pointer-events: none; }
.testi-stars { color: var(--blue); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testi-card p { color: var(--gray-600); font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; font-weight: 700; color: var(--white); font-size: .9rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: .88rem; color: var(--navy); }
.testi-role { font-size: .78rem; color: var(--text-soft); }

/* ── CONTACT FORM WRAP ── */
.contact-form-wrap { background: var(--white); border-radius: 14px; padding: 2.5rem; border: 1px solid var(--gray-200); box-shadow: var(--shadow); }
.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid var(--gray-200); border-radius: 8px;
  font-family: inherit; font-size: .9rem; color: var(--text);
  background: var(--gray-50); outline: none;
  transition: border-color .2s, background .2s;
  margin-bottom: .2rem;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--blue); background: var(--white); }
.wpcf7-form textarea { min-height: 120px; resize: vertical; }
.wpcf7-form .wpcf7-submit {
  width: 100%; background: var(--navy); color: var(--white) !important;
  padding: 1rem; border: none; border-radius: 8px;
  font-family: inherit; font-size: .95rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .15s; margin-top: .5rem;
}
.wpcf7-form .wpcf7-submit:hover { background: var(--blue); transform: translateY(-1px); }
.form-label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; letter-spacing: .04em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── GOOGLE MAP ── */
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }
.map-wrap iframe { display: block; width: 100%; height: 320px; border: none; }

/* ── RISE VALUES ── */
.rise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.rise-card { padding: 1.4rem; border-radius: 8px; background: var(--blue-light); border-left: 3px solid var(--blue); transition: box-shadow .2s; }
.rise-card:hover { box-shadow: var(--shadow); }
.rise-letter { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: .3rem; }
.rise-card h4 { color: var(--navy); font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
.rise-card p { color: var(--text-soft); font-size: .83rem; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .slide { height: 320px; }
  .slide-caption { padding: 1.5rem; }
  .slide-caption h3 { font-size: 1.1rem; }
  .slide-cta { display: none; }
  .slider-thumbs { display: none; }
  .rise-grid { grid-template-columns: 1fr; }
}
/* =====================================================
   NAV
===================================================== */
.site-nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
.site-nav.scrolled { box-shadow: 0 4px 24px rgba(12,34,51,.1); }
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(1.5rem,5vw,5rem);
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.nav-logo img, .nav-logo-img { width: 44px; height: 44px; object-fit: contain; }
/* Hide WP custom logo extra wrapper */
.nav-logo .custom-logo-link { display: flex; }
.nav-logo .custom-logo-link img { width: 44px; height: 44px; object-fit: contain; }
.nav-logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); line-height: 1.1; letter-spacing: .02em; }
.nav-logo-text span   { font-size: .62rem; color: var(--blue-dark); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.nav-menu-wrap { flex: 1; display: flex; justify-content: center; }
.nav-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links li a { color: var(--gray-600); text-decoration: none; font-size: .88rem; font-weight: 500; letter-spacing: .02em; transition: color .2s; position: relative; padding-bottom: 2px; }
.nav-links li a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--blue); border-radius: 2px; transition: width .25s; }
.nav-links li a:hover,
.nav-links li a.active { color: var(--blue-dark); }
.nav-links li a:hover::after,
.nav-links li a.active::after { width: 100%; }
.nav-cta { background: var(--blue); color: var(--white) !important; padding: .6rem 1.5rem; border-radius: 6px; font-weight: 700; font-size: .85rem; letter-spacing: .04em; text-decoration: none; box-shadow: 0 4px 14px rgba(28,185,240,.3); transition: background .2s, transform .15s; white-space: nowrap; }
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; display: block; }
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; flex-direction: column; padding: 1.5rem clamp(1.5rem,5vw,5rem); gap: .8rem; border-top: 1px solid var(--gray-200); background: var(--white); box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.mobile-nav-links { list-style: none; margin: 0; padding: 0; }
.mobile-nav-links li a { display: block; color: var(--gray-600); font-size: .95rem; font-weight: 500; padding: .6rem 0; border-bottom: 1px solid var(--gray-100); text-decoration: none; }
.mobile-cta { display: block; text-align: center; margin-top: .8rem; }

/* =====================================================
   HERO
===================================================== */
.home-hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg,#f0fbff 0%,#e3f5fc 40%,#f8fdff 100%); position: relative; overflow: hidden; padding-top: 72px; }
.hero-orb  { position: absolute; top: -120px; right: -120px; width: 650px; height: 650px; border-radius: 50%; background: radial-gradient(circle, rgba(28,185,240,.18) 0%, rgba(28,185,240,.04) 55%, transparent 70%); pointer-events: none; }
.hero-orb2 { position: absolute; bottom: -200px; left: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(28,185,240,.1) 0%, transparent 65%); pointer-events: none; }
.hero-lines { position: absolute; inset: 0; opacity: .04; background-image: repeating-linear-gradient(90deg,var(--blue) 0,var(--blue) 1px,transparent 1px,transparent 80px), repeating-linear-gradient(0deg,var(--blue) 0,var(--blue) 1px,transparent 1px,transparent 80px); }
.hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; padding: 3rem clamp(1.5rem,5vw,5rem); display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 2; }
.hero-pill  { display: inline-flex; align-items: center; gap: .55rem; background: rgba(28,185,240,.12); border: 1px solid rgba(28,185,240,.3); color: var(--blue-deeper); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; padding: .45rem 1.1rem; border-radius: 50px; margin-bottom: 1.8rem; }
.hero-sub   { color: var(--text-soft); font-size: 1.05rem; line-height: 1.8; max-width: 480px; margin-bottom: 2.5rem; }
.hero-btns  { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-outline { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust { display: flex; align-items: center; gap: 1.2rem; }
.trust-faces { display: flex; }
.trust-face  { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--white); margin-right: -10px; background: var(--blue-pale); display: grid; place-items: center; font-size: .8rem; font-weight: 700; color: var(--blue-dark); }
.trust-text  { font-size: .82rem; color: var(--text-soft); line-height: 1.4; }
.trust-text strong { display: block; color: var(--navy); font-size: .88rem; }
.hero-img-stack { position: relative; height: 520px; }
.img-main { position: absolute; right: 0; top: 0; width: 88%; height: 420px; border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(12,34,51,.15); }
.img-main img { width: 100%; height: 100%; object-fit: cover; }
.img-secondary { position: absolute; left: 0; bottom: 0; width: 56%; height: 240px; border-radius: 16px; overflow: hidden; border: 4px solid var(--white); box-shadow: 0 16px 40px rgba(12,34,51,.12); }
.img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.hero-stat-float { position: absolute; right: -10px; top: 50%; transform: translateY(-50%); background: var(--white); border-radius: 14px; padding: 1rem 1.4rem; box-shadow: 0 12px 36px rgba(12,34,51,.12); text-align: center; border: 1px solid var(--gray-100); min-width: 110px; }
.hero-stat-float .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--blue); line-height: 1; }
.hero-stat-float .lbl { font-size: .72rem; color: var(--text-soft); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-top: .3rem; }

/* =====================================================
   STAT DIVIDER
===================================================== */
.stat-divider { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; margin: auto; }

/* =====================================================
   SERVICES GRID (Homepage)
===================================================== */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
.services-grid-home { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.text-center { text-align: center; }

/* =====================================================
   WHY CHOOSE US
===================================================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.why-img-side { position: relative; }
.why-img-wrap { border-radius: 20px; overflow: hidden; height: 520px; box-shadow: var(--shadow-lg); }
.why-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-badge { position: absolute; bottom: 2rem; left: -2rem; background: var(--white); border-radius: 14px; padding: 1.2rem 1.6rem; box-shadow: var(--shadow); border: 1px solid var(--gray-100); display: flex; align-items: center; gap: 1rem; }
.why-badge-icon { width: 50px; height: 50px; background: var(--blue); border-radius: 10px; display: grid; place-items: center; font-size: 1.5rem; flex-shrink: 0; }
.why-badge strong { display: block; font-size: 1.3rem; font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1; }
.why-badge span { font-size: .78rem; color: var(--text-soft); }
.why-points { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.why-point { display: flex; align-items: flex-start; gap: 1.2rem; padding: 1.3rem; background: var(--gray-50); border-radius: 12px; border: 1px solid var(--gray-100); transition: border-color .2s, box-shadow .2s; }
.why-point:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(28,185,240,.1); }
.why-point-icon { width: 44px; height: 44px; background: var(--blue-pale); border-radius: 10px; display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.why-point h4 { color: var(--navy); font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.why-point p { font-size: .87rem; line-height: 1.65; }

/* =====================================================
   PROCESS SECTION
===================================================== */
.process-section { background: linear-gradient(135deg,var(--navy) 0%,#0f2e47 100%); position: relative; overflow: hidden; }
.process-bg-circle { position: absolute; right: -200px; top: 50%; transform: translateY(-50%); width: 700px; height: 700px; border-radius: 50%; border: 1px solid rgba(28,185,240,.12); pointer-events: none; }
.process-bg-circle::before { content: ''; position: absolute; inset: 80px; border-radius: 50%; border: 1px solid rgba(28,185,240,.08); }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg,transparent,rgba(28,185,240,.4),rgba(28,185,240,.4),transparent); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle { width: 80px; height: 80px; border-radius: 50%; border: 2px solid rgba(28,185,240,.4); background: rgba(28,185,240,.08); display: grid; place-items: center; margin: 0 auto 1.5rem; transition: border-color .3s, background .3s; }
.process-step:hover .step-circle { border-color: var(--blue); background: rgba(28,185,240,.2); }
.step-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--blue); }
.process-step h4 { color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: .6rem; }
.process-step p { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.65; max-width: 200px; margin: 0 auto; }

/* =====================================================
   TESTI GRID
===================================================== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }

/* =====================================================
   CTA BANNER
===================================================== */
.cta-banner { background: linear-gradient(120deg,var(--blue) 0%,#0daee0 60%,var(--blue-dark) 100%); padding: 5rem clamp(1.5rem,5vw,5rem); text-align: center; position: relative; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%,rgba(255,255,255,.12) 0%,transparent 50%),radial-gradient(circle at 80% 50%,rgba(255,255,255,.08) 0%,transparent 50%); }
.cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: 1rem; }
.cta-inner p  { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }
.btn-white-outline { display: inline-block; background: transparent; color: var(--white) !important; padding: 1rem 2rem; border-radius: 8px; font-weight: 700; font-size: .92rem; border: 2px solid rgba(255,255,255,.5); text-decoration: none; margin-left: 1rem; transition: border-color .2s, background .2s; }
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* =====================================================
   FOOTER
===================================================== */
.site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding: 5rem clamp(1.5rem,5vw,5rem) 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.2rem; text-decoration: none; }
.footer-logo img, .footer-logo .custom-logo-link img { width: 44px; height: 44px; object-fit: contain; }
.footer-logo .custom-logo-link { display: flex; }
.footer-about-text { font-size: .88rem; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.soc-btn { width: 36px; height: 36px; background: rgba(255,255,255,.08); border-radius: 8px; display: grid; place-items: center; color: rgba(255,255,255,.5); font-size: .9rem; text-decoration: none; transition: background .2s, color .2s; }
.soc-btn:hover { background: var(--blue); color: var(--white); }
.footer-col-title { color: rgba(255,255,255,.9); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.3rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: .75rem; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--blue); }
.footer-contact-list { list-style: none; margin: 0; padding: 0; }
.footer-contact-list li { display: flex; gap: .6rem; margin-bottom: .9rem; align-items: flex-start; }
.fc-icon { font-size: .95rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a,
.footer-contact-list span { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.55; text-decoration: none; transition: color .2s; }
.footer-contact-list a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p, .footer-bottom span { font-size: .8rem; color: rgba(255,255,255,.35); }

/* =====================================================
   BLOG LAYOUT
===================================================== */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.blog-sidebar .widget { background: var(--gray-50); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; border: 1px solid var(--gray-200); }
.widget-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
.entry-content h2,
.entry-content h3 { margin-top: 2rem; margin-bottom: .8rem; }
.entry-content p   { margin-bottom: 1rem; }
.entry-content ul,
.entry-content ol  { margin-bottom: 1rem; }
.author-box { display: flex; gap: 1rem; align-items: flex-start; background: var(--gray-50); border-radius: 12px; padding: 1.5rem; margin-top: 2.5rem; border: 1px solid var(--gray-200); }
.author-name { font-weight: 700; color: var(--navy); margin-bottom: .3rem; }

/* =====================================================
   ABOUT PAGE
===================================================== */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-main { position: relative; border-radius: 20px; overflow: visible; }
.about-img-main img { border-radius: 20px; width: 100%; height: 480px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-img-badge { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--blue); color: var(--white); border-radius: 14px; padding: 1.2rem 1.8rem; text-align: center; box-shadow: 0 8px 28px rgba(28,185,240,.4); }
.aib-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; line-height: 1; }
.aib-lbl { font-size: .75rem; opacity: .85; margin-top: .3rem; letter-spacing: .06em; }
.mv-card { background: var(--gray-50); border-radius: 12px; padding: 1.4rem; border: 1px solid var(--gray-200); }
.mv-icon { font-size: 1.5rem; margin-bottom: .7rem; }
.mv-card h4 { color: var(--navy); font-size: .95rem; margin-bottom: .5rem; }
.rise-grid-large { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.rise-card-large { background: var(--white); border-radius: 16px; padding: 2rem; border: 1px solid var(--gray-200); text-align: center; transition: transform .2s, box-shadow .2s; }
.rise-card-large:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rise-card-large .rise-letter { font-size: 3.5rem; margin-bottom: .5rem; display: block; }
.rise-card-large h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.rise-card-large p { font-size: .88rem; }
.compliance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.cert-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--gray-50); border-radius: 10px; padding: 1.1rem 1.3rem; margin-bottom: .8rem; border: 1px solid var(--gray-200); }
.cert-icon { font-size: 1.5rem; flex-shrink: 0; }
.cert-title { font-weight: 700; color: var(--navy); font-size: .9rem; }
.cert-sub   { font-size: .82rem; color: var(--text-soft); margin-top: .2rem; }

/* =====================================================
   SERVICES PAGE
===================================================== */
.how-quick { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hq-step   { display: flex; align-items: center; gap: .6rem; }
.hq-num    { width: 32px; height: 32px; border-radius: 50%; background: var(--blue); color: var(--white); font-weight: 800; font-size: .9rem; display: grid; place-items: center; flex-shrink: 0; }
.hq-step span { font-size: .88rem; font-weight: 600; color: var(--navy); }
.hq-arrow { color: var(--blue); font-size: 1.2rem; }
.service-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--gray-200); }
.service-detail-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail-row.reverse { direction: rtl; }
.service-detail-row.reverse > * { direction: ltr; }
.service-detail-img img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.svc-icon-lg { font-size: 2.5rem; margin-bottom: 1rem; }
.service-detail-body h2 { font-size: 1.8rem; margin-bottom: 1rem; }

/* =====================================================
   PROJECTS PAGE
===================================================== */
.projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.project-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); transition: transform .25s, box-shadow .25s; }
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.proj-img { position: relative; height: 220px; overflow: hidden; }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.project-card:hover .proj-img img { transform: scale(1.05); }
.proj-cat { position: absolute; top: 1rem; left: 1rem; background: var(--blue); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 4px; }
.proj-body { padding: 1.5rem; }
.proj-client { font-size: .8rem; color: var(--blue-dark); margin-bottom: .5rem; font-weight: 600; }
.proj-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }

/* =====================================================
   FAQ PAGE
===================================================== */
.faq-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.faq-cta-box { background: var(--navy); border-radius: 16px; padding: 2rem; text-align: center; margin-bottom: 1.5rem; }
.fcb-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.faq-cta-box h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .8rem; }
.faq-cta-box p { color: rgba(255,255,255,.6); font-size: .88rem; }
.faq-wa-btn { display: block; margin-top: .8rem; background: #25D366; color: var(--white) !important; padding: .7rem; border-radius: 8px; font-weight: 700; font-size: .85rem; text-decoration: none; }
.faq-quick-links { background: var(--gray-50); border-radius: 12px; padding: 1.5rem; border: 1px solid var(--gray-200); }
.faq-quick-links h4 { color: var(--navy); margin-bottom: 1rem; font-size: .9rem; }
.faq-quick-links ul { list-style: none; padding: 0; }
.faq-quick-links li { margin-bottom: .6rem; }
.faq-quick-links a { color: var(--blue-dark); font-size: .88rem; }

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--blue-pale); border-radius: 10px; display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; border: 1px solid rgba(28,185,240,.2); }
.contact-item h4 { color: var(--navy); font-weight: 700; font-size: .9rem; margin-bottom: .25rem; }
.contact-item p,
.contact-item a { color: var(--text-soft); font-size: .9rem; line-height: 1.6; text-decoration: none; }
.contact-item a:hover { color: var(--blue); }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--navy); margin-bottom: .5rem; }
.form-group { margin-bottom: 1.1rem; }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
  .services-grid-home { grid-template-columns: 1fr 1fr; }
  .rise-grid-large    { grid-template-columns: 1fr 1fr; }
  .process-steps      { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-right         { display: none; }
  .why-grid           { grid-template-columns: 1fr; }
  .why-img-side       { display: none; }
  .testi-grid         { grid-template-columns: 1fr 1fr; }
  .blog-layout        { grid-template-columns: 1fr; }
  .single-layout      { grid-template-columns: 1fr; }
  .about-intro-grid   { grid-template-columns: 1fr; }
  .compliance-grid    { grid-template-columns: 1fr; }
  .contact-layout     { grid-template-columns: 1fr; }
  .faq-layout         { grid-template-columns: 1fr; }
  .posts-grid         { grid-template-columns: 1fr; }
  .projects-grid      { grid-template-columns: 1fr 1fr; }
  .service-detail-row { grid-template-columns: 1fr; direction: ltr; }
  .service-detail-row.reverse { direction: ltr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger  { display: flex; }
  .services-grid-home { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .rise-grid-large { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row   { grid-template-columns: 1fr 1fr; }
  .btn-white-outline { margin-left: 0; margin-top: .8rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .how-quick { flex-direction: column; }
  .hq-arrow  { transform: rotate(90deg); }
}

/* =============================================================
   SARICHY GHANA — ENHANCED STYLES v2.0
   Developed by Elinas Technologies — Ghana
   ============================================================= */

/* ── HERO SLIDER ── */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 860px;
  overflow: hidden;
  margin-top: 72px;
}
.hero-slider-wrap { position: relative; width: 100%; height: 100%; overflow: hidden; }
.hero-slider-track {
  display: flex;
  height: 100%;
  transition: transform .75s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  flex-shrink: 0;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,20,35,.82) 0%, rgba(10,20,35,.45) 55%, rgba(10,20,35,.2) 100%);
}
.hero-slide-content {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  z-index: 2;
}
.hero-slide-inner { max-width: 720px; }
.hero-slide-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(28,185,240,.18); border: 1px solid rgba(28,185,240,.4);
  color: rgba(255,255,255,.9); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; padding: .45rem 1.1rem;
  border-radius: 50px; margin-bottom: 1.5rem;
}
.hero-slide-inner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800; color: #fff; line-height: 1.12;
  margin-bottom: 1.2rem;
}
.hero-accent { color: var(--blue); font-style: italic; }
.hero-slide-sub {
  color: rgba(255,255,255,.8); font-size: clamp(.95rem,1.5vw,1.1rem);
  line-height: 1.75; max-width: 580px; margin-bottom: 2.5rem;
}
.hero-slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-hero-primary {
  display: inline-block; background: var(--blue); color: #fff !important;
  padding: .95rem 2.4rem; border-radius: 8px; font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 24px rgba(28,185,240,.45); transition: background .2s, transform .15s;
  text-decoration: none;
}
.btn-hero-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.4); color: #fff !important;
  padding: .92rem 2.2rem; border-radius: 8px; font-weight: 600; font-size: .93rem;
  transition: background .2s, border-color .2s; text-decoration: none;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); }
.hero-trust-row { display: flex; align-items: center; gap: 1rem; }

/* Hero Arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.3); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background .2s, transform .2s;
}
.hero-arrow:hover { background: var(--blue); transform: translateY(-50%) scale(1.08); }
.hero-prev { left: clamp(1rem,3vw,2.5rem); }
.hero-next { right: clamp(1rem,3vw,2.5rem); }

/* Hero Dots */
.hero-dots {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .55rem; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4);
  border: none; cursor: pointer; padding: 0;
  transition: background .3s, width .3s, border-radius .3s;
}
.hero-dot.active { width: 28px; border-radius: 4px; background: var(--blue); }

/* Hero Slide Counter */
.hero-slide-counter {
  position: absolute; bottom: 2rem; right: 2.5rem; z-index: 10;
  font-family: 'Playfair Display', serif; font-size: .95rem;
  color: rgba(255,255,255,.6); font-weight: 600;
}
.hsc-sep { margin: 0 .25rem; opacity: .4; }

/* Hero Progress Bar */
.hero-progress-bar-wrap {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,.15); z-index: 10;
}
.hero-progress-bar { height: 100%; width: 0%; background: var(--blue); }

/* ── COUNTER BAND ── */
.counter-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2e47 100%);
  padding: 3rem clamp(1.5rem,5vw,5rem);
}
.counter-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.counter-item { text-align: center; min-width: 120px; }
.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem,3.5vw,3.2rem); font-weight: 800;
  color: var(--blue); line-height: 1;
}
.counter-lbl {
  font-size: .78rem; color: rgba(255,255,255,.6);
  font-weight: 500; margin-top: .5rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.counter-divider {
  width: 1px; height: 50px;
  background: rgba(255,255,255,.12); flex-shrink: 0;
}

/* ── ABOUT HOME ── */
.about-home-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-home-img { position: relative; }
.ahi-main {
  border-radius: 20px; overflow: hidden;
  height: 480px; box-shadow: var(--shadow-lg);
}
.ahi-main img { width: 100%; height: 100%; object-fit: cover; }
.ahi-float {
  position: absolute; bottom: -2rem; left: -2rem;
  width: 48%; height: 200px; border-radius: 14px; overflow: hidden;
  border: 4px solid var(--white); box-shadow: var(--shadow);
}
.ahi-float img { width: 100%; height: 100%; object-fit: cover; }
.ahi-badge {
  position: absolute; top: 2rem; right: -1.5rem;
  background: var(--blue); color: var(--white);
  border-radius: 14px; padding: 1.2rem 1.6rem; text-align: center;
  box-shadow: 0 8px 28px rgba(28,185,240,.4);
}
.ahi-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.ahi-txt { font-size: .72rem; opacity: .85; margin-top: .3rem; letter-spacing: .06em; }

/* RISE Home Grid */
.rise-home-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 2rem; }
.rise-home-card {
  display: flex; gap: .8rem; align-items: flex-start;
  background: var(--blue-light); border-radius: 10px;
  padding: 1rem 1.1rem; border-left: 3px solid var(--blue);
}
.rise-home-letter {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  font-weight: 800; color: var(--blue); line-height: 1; flex-shrink: 0;
}
.rise-home-card strong { display: block; color: var(--navy); font-size: .88rem; margin-bottom: .2rem; }
.rise-home-card p { font-size: .8rem; color: var(--text-soft); line-height: 1.5; }

/* ── WHY REG BADGE ── */
.why-reg-badge {
  position: absolute; top: 2rem; right: -1rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: .6rem 1.1rem;
  font-size: .78rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow); display: flex; align-items: center; gap: .4rem;
}
.why-reg-badge span { color: #22c55e; font-weight: 800; }

/* ── FAQ HOME LAYOUT ── */
.faq-home-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start;
}
.faq-contact-box {
  background: var(--gray-50); border-radius: 14px;
  border: 1px solid var(--gray-200); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}
.fcb-row { display: flex; gap: .9rem; align-items: flex-start; }
.fcb-icon {
  width: 40px; height: 40px; background: var(--blue-pale);
  border-radius: 8px; display: grid; place-items: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.fcb-row strong { display: block; color: var(--navy); font-size: .85rem; margin-bottom: .2rem; }
.fcb-row a { color: var(--blue-dark); font-size: .87rem; text-decoration: none; }
.fcb-row a:hover { color: var(--blue); }

/* ── PROCESS STEP ICON ── */
.step-icon-lrg { font-size: 2rem; margin: .75rem 0; }

/* ── WHATSAPP FLOATING BUTTON ── */
.sarichy-wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  display: flex; flex-direction: column; align-items: flex-end; gap: .6rem;
}
.wa-bubble {
  background: #25D366; color: #fff;
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,.45);
  text-decoration: none; transition: transform .2s, box-shadow .2s;
  cursor: pointer; position: relative;
}
.wa-bubble:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,.55); }
.wa-bubble svg { width: 32px; height: 32px; fill: #fff; }
.wa-bubble-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: rgba(37,211,102,.4);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-tooltip {
  background: var(--navy); color: #fff; font-size: .8rem; font-weight: 600;
  padding: .55rem 1rem; border-radius: 8px; white-space: nowrap;
  box-shadow: var(--shadow); pointer-events: none; opacity: 0;
  transform: translateX(10px); transition: opacity .2s, transform .2s;
}
.sarichy-wa-float:hover .wa-tooltip { opacity: 1; transform: none; }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed; bottom: 6.5rem; right: 2rem; z-index: 9998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 16px rgba(12,34,51,.25);
}
#backToTop.visible { opacity: 1; pointer-events: all; transform: none; }
#backToTop:hover { background: var(--blue); }

/* ── SERVICES GRID 3-COL → 2-COL → 1-COL ── */
.services-grid-home { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* ── ENHANCED FOOTER ── */
.footer-newsletter {
  background: rgba(28,185,240,.08); border: 1px solid rgba(28,185,240,.2);
  border-radius: 12px; padding: 1.8rem; margin-bottom: 3rem;
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
}
.footer-newsletter-text h4 { color: rgba(255,255,255,.9); font-size: 1rem; margin-bottom: .3rem; }
.footer-newsletter-text p { color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-newsletter-form { display: flex; gap: .5rem; }
.footer-newsletter-form input {
  padding: .65rem 1rem; border-radius: 7px; border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08); color: #fff; font-size: .85rem; outline: none;
  font-family: inherit; width: 220px;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter-form button {
  background: var(--blue); color: #fff; border: none; padding: .65rem 1.2rem;
  border-radius: 7px; font-weight: 700; font-size: .82rem; cursor: pointer;
  white-space: nowrap; transition: background .2s;
}
.footer-newsletter-form button:hover { background: var(--blue-dark); }
.footer-dev-credit {
  text-align: center; padding-top: 1.5rem; margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .75rem; color: rgba(255,255,255,.25);
}
.footer-dev-credit a { color: rgba(28,185,240,.7); text-decoration: none; }
.footer-dev-credit a:hover { color: var(--blue); }

/* ── SERVICE DETAIL PAGE ── */
.service-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; padding-bottom: 5rem; border-bottom: 1px solid var(--gray-200); }
.service-detail-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail-row.reverse { direction: rtl; }
.service-detail-row.reverse > * { direction: ltr; }
.service-detail-img img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow); }
.svc-icon-lg { font-size: 2.8rem; margin-bottom: 1rem; display: block; }

/* ── ABOUT PAGE ENHANCED ── */
.about-team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 2rem; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--blue-pale); margin: 0 auto 1rem; display: grid; place-items: center; font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 800; color: var(--blue); border: 3px solid var(--blue); }
.team-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.team-role { font-size: .8rem; color: var(--text-soft); }

/* ── CONTACT PAGE ENHANCED ── */
.contact-hero-band {
  background: linear-gradient(120deg, var(--blue) 0%, #0daee0 60%, var(--blue-dark) 100%);
  padding: 2.5rem clamp(1.5rem,5vw,5rem);
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.chb-item { display: flex; align-items: center; gap: 1rem; }
.chb-icon { width: 52px; height: 52px; background: rgba(255,255,255,.18); border-radius: 12px; display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0; }
.chb-title { color: rgba(255,255,255,.75); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .2rem; }
.chb-val { color: #fff; font-weight: 700; font-size: .95rem; }

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 1100px) {
  .about-home-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ahi-float { display: none; }
  .faq-home-layout { grid-template-columns: 1fr; gap: 3rem; }
  .rise-home-grid { grid-template-columns: 1fr 1fr; }
  .contact-hero-band { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .services-grid-home { grid-template-columns: 1fr 1fr; }
  .counter-inner { gap: 1.5rem; }
  .about-team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-slider-section { height: 90vh; max-height: 700px; }
  .hero-slide-inner h1 { font-size: 1.8rem; }
  .services-grid-home { grid-template-columns: 1fr; }
  .hero-dots { bottom: 1.2rem; }
  .hero-slide-counter { display: none; }
  .counter-inner { gap: 1rem; }
  .counter-divider { display: none; }
  .rise-home-grid { grid-template-columns: 1fr; }
  .footer-newsletter { grid-template-columns: 1fr; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-newsletter-form input { width: 100%; }
  .about-team-grid { grid-template-columns: 1fr 1fr; }
  .hero-arrow { display: none; }
}
