/* ═══════════════════════════════════════
   SEPT71 — style.css
   ═══════════════════════════════════════ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #ff2a1f;
  --red-dark:  #dc1b12;
  --red-light: #ffe4e1;
  --dark:      #243246;
  --dark2:     #42536a;
  --gray:      #64748b;
  --light:     #f4f7fb;
  --line:      #d8e0ea;
  --surface:   #eef3f8;
  --white:     #ffffff;
  --shadow-sm: 0 10px 24px rgba(36,50,70,0.07);
  --shadow-md: 0 18px 44px rgba(36,50,70,0.12);
  --radius:    12px;
  --nav-h:     64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a   { color: inherit; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(216,224,234,0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 4px rgba(36,50,70,0.06);
}

.nav-container {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 40px;
}

.nav-logo {
  text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center;
}
.nav-logo-full {
  display: block; width: 148px; height: auto; object-fit: contain;
}

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-link {
  text-decoration: none; color: var(--dark2);
  font-size: 0.9rem; font-weight: 500;
  transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red); border-radius: 2px;
  transform: scaleX(0); transition: transform .2s;
}
.nav-link:hover, .nav-link.active { color: var(--red); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-nav-cta {
  background: var(--dark); color: var(--white) !important;
  border: none; border-radius: 6px; padding: 10px 20px;
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; transition: background .2s; white-space: nowrap;
}
.btn-nav-cta:hover { background: #1a2534; }
.btn-nav-logo {
  width: 16px; height: 16px; object-fit: contain; flex-shrink: 0;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; background: rgba(255,255,255,0.98);
  border-top: 1px solid var(--line);
  padding: 20px 24px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block; padding: 12px 0;
  text-decoration: none; font-size: 1rem; font-weight: 500; color: var(--dark2);
  border-bottom: 1px solid var(--line); transition: color .2s;
}
.mobile-link:hover, .mobile-link.active { color: var(--red); }
.mobile-cta { margin-top: 16px !important; justify-content: center; border-bottom: none !important; }

/* ── PAGE WRAPPER ── */
main { padding-top: var(--nav-h); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--white);
  padding: 13px 28px; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  border: none; cursor: pointer; transition: background .2s;
}
.btn-primary:hover { background: #1a2534; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.76); color: var(--dark);
  border: 1px solid rgba(66,83,106,0.20);
  padding: 13px 28px; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: all .2s;
}
.btn-outline-white:hover { border-color: rgba(36,50,70,0.3); background: var(--white); }

.link-red {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 600; font-size: 0.95rem; text-decoration: none;
}
.link-red:hover { text-decoration: underline; }

/* ── SECTION BASE ── */
.section { padding: 96px 48px; }
.section--light { background: var(--light); }
.section--white { background: var(--white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.section-header p { color: var(--gray); font-size: 1.05rem; max-width: 620px; margin: 0 auto; line-height: 1.7; }

.container { max-width: 100%; margin: 0 auto; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 24px 60px; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #f5f7fb 0%, #eef3f8 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url('../img/im2.jpeg') center/cover no-repeat;
  opacity: 0.10;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(0.8) brightness(1.15);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at top left, rgba(255,42,31,0.08), transparent 34%),
    linear-gradient(135deg, rgba(148,163,184,0.14), rgba(255,255,255,0.18));
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.82); border: 1px solid rgba(255,42,31,0.18);
  color: var(--dark2); border-radius: 999px; padding: 8px 18px;
  font-size: 0.82rem; font-weight: 500; margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(36,50,70,0.07);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); display: inline-block; flex-shrink: 0; }

.hero-title {
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800; color: var(--dark); line-height: 1.12; margin-bottom: 18px;
}
.hero-title .red { color: var(--red); }

.hero-sub { color: var(--dark2); font-size: clamp(0.95rem,2vw,1.08rem); line-height: 1.75; max-width: 640px; margin: 0 auto 40px; }

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; justify-content: center; gap: clamp(24px,5vw,64px);
  margin-top: 72px; flex-wrap: wrap;
}
.stat-item {
  text-align: center; background: rgba(255,255,255,0.84); border: 1px solid rgba(216,224,234,0.9);
  border-radius: 16px; min-width: 165px; padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.stat-num  { font-size: clamp(1.1rem,3vw,1.55rem); font-weight: 800; color: var(--dark); display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-label{ font-size: 0.8rem; color: var(--gray); margin-top: 4px; }
.stat-plus     { color: #16a34a; font-weight: 900; font-size: 1.1em; }
.stat-plus-red { color: var(--red); font-weight: 900; font-size: 1.1em; }
.counter       { color: var(--red); }

.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-hint-inner {
  width: 30px; height: 50px;
  border: 2px solid rgba(66,83,106,0.45); border-radius: 15px;
  display: flex; align-items: flex-start; justify-content: center; padding-top: 8px;
  box-shadow: 0 0 12px rgba(66,83,106,0.08);
}
.scroll-hint-inner::after {
  content: ''; width: 4px; height: 10px; background: var(--dark2); border-radius: 2px;
  animation: sd 1.6s ease-in-out infinite; box-shadow: 0 0 8px rgba(66,83,106,0.2);
}
@keyframes sd { 0%{transform:translateY(0);opacity:1} 60%{transform:translateY(12px);opacity:0.1} 100%{transform:translateY(0);opacity:1} }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 96px 48px 80px; text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #f5f7fb 0%, #edf2f7 45%, #f7f9fc 100%);
  z-index: 0;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.08;
  filter: grayscale(1);
}
.page-hero-bg.bg-services::after { background-image: url('../img/img3_dev.png'); }
.page-hero-bg.bg-apropos::after  { background-image: url('../img/im5.jpeg'); }
.page-hero-bg.bg-real::after     { background-image: url('../img/img6_itsm.png'); }
.page-hero-bg.bg-contact::after  { background-image: url('../img/img8_business.png'); }
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.page-hero h1 { color: var(--dark); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.page-hero p  { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.page-hero .breadcrumb { color: var(--gray); font-size: 0.85rem; margin-bottom: 14px; text-align: center; }
.page-hero .breadcrumb a { color: var(--red); text-decoration: none; font-weight: 500; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 14px; margin-bottom: 14px;
  border-radius: 999px; border: 1px solid rgba(255,42,31,0.16);
  background: rgba(255,255,255,0.78); color: var(--dark2);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(36,50,70,0.06);
}
.page-hero--contact .page-hero-bg {
  background:
    radial-gradient(circle at top left, rgba(255,42,31,0.08), transparent 24%),
    linear-gradient(135deg, #f6f8fb 0%, #edf2f7 55%, #f7f9fc 100%);
}
.page-hero--contact .page-hero-bg::after {
  opacity: 0.05;
  filter: grayscale(1) blur(1px);
}
.page-hero--contact .page-hero-content {
  max-width: 760px;
}
.page-hero--contact h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}
.page-hero--contact p {
  max-width: 640px;
  text-align: center;
}

@keyframes heroFadeIn { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.page-hero-content { animation: heroFadeIn 0.8s cubic-bezier(.22,.68,0,1.2) both; }
.page-hero .breadcrumb { animation: heroFadeIn 0.6s 0.1s cubic-bezier(.22,.68,0,1.2) both; }
.page-hero h1 { animation: heroFadeIn 0.7s 0.2s cubic-bezier(.22,.68,0,1.2) both; }
.page-hero p  { animation: heroFadeIn 0.7s 0.35s cubic-bezier(.22,.68,0,1.2) both; }

/* ── SERVICE CARDS (home 3-col) ── */
.svc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.svc-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-icon {
  width: 64px; height: 64px; background: var(--red-light);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--red); font-size: 1.5rem;
}
.svc-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.svc-card > p { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 18px; }
.svc-card ul  { list-style: none; margin-bottom: 24px; }
.svc-card ul li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--dark2); padding: 5px 0; }
.svc-card ul li .svc-chk { color: #16a34a; font-size: 1rem; flex-shrink: 0; }

/* ── SERVICE CARDS (detail page 2-col) ── */
.svc-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px;
  max-width: 1400px; margin: 0 auto;
}
.svc-big {
  background: var(--white); border-radius: var(--radius); padding: 44px 52px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); display: flex; gap: 28px;
  transition: transform .25s, box-shadow .25s;
}
.svc-big:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.svc-big-ico {
  width: 60px; height: 60px; background: var(--red-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px;
}
.svc-big-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.svc-big-body > p { color: var(--gray); font-size: 0.97rem; margin-bottom: 16px; line-height: 1.65; }
.svc-big-body ul { list-style: none; margin-bottom: 18px; }
.svc-big-body ul li { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; color: var(--dark2); padding: 4px 0; }
.svc-big-body ul li .chk { color: #16a34a; font-size: 0.95rem; }

/* CTA BOX */
.cta-box {
  max-width: 680px; margin: 56px auto 0; text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 44px 40px; box-shadow: var(--shadow-sm);
}
.cta-box h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.cta-box p  { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; }
.cta-center { text-align: center; margin-top: 48px; }

/* ── ABOUT ── */
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 48px; }
.about-text h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 18px; }
.about-text p  { color: var(--gray); line-height: 1.85; margin-bottom: 18px; font-size: 1.05rem; }
.about-img img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 340px; }

.vals-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.val-item { text-align: center; }
.val-icon  { width: 58px; height: 58px; background: var(--red-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--red); font-size: 1.25rem; }
.val-item h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; text-align: center; }
.val-item p  { color: var(--gray); font-size: 0.95rem; line-height: 1.5; text-align: center; }

.vision-box {
  background: var(--surface); border-radius: var(--radius);
  padding: 44px 48px; text-align: center; max-width: 660px; margin: 0 auto;
}
.vision-box h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 14px; }
.vision-box p  { color: var(--gray); line-height: 1.8; font-size: 0.95rem; }
.about-cta { margin-top: 8px; }

.stats-blocks { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat-block { background:var(--white); border-radius:16px; padding:36px 24px; text-align:center; box-shadow:var(--shadow-sm); transition:transform .25s,box-shadow .25s; border: 1px solid var(--line); }
.stat-block:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.stat-block-icon { width:56px; height:56px; background:var(--red-light); border-radius:12px; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; color:var(--red); font-size:1.3rem; }
.stat-block-num { font-size:2.4rem; font-weight:900; margin-bottom:8px; display:flex; align-items:baseline; justify-content:center; gap:2px; }
.stat-plus-green { color:#16a34a; font-size:1.8rem; font-weight:900; }
.counter-green { color:#16a34a; }
.stat-block-num-text { font-size:1.5rem; color:#16a34a; font-weight:800; }
.stat-block-label { color:var(--gray); font-size:0.9rem; font-weight:500; }

/* ── H-BADGE ── */
.h-badge { font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.h-badge.open   { background: #dcfce7; color: #166534; }
.h-badge.closed { background: #fee2e2; color: #991b1b; }

/* ══ ENTRANCE ANIMATIONS ══ */
@keyframes fadeUp    { from { opacity:0; transform:translateY(40px);  } to { opacity:1; transform:translateY(0);   } }
@keyframes fadeLeft  { from { opacity:0; transform:translateX(60px);  } to { opacity:1; transform:translateX(0);  } }
@keyframes fadeRight { from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:translateX(0);  } }
@keyframes zoomIn    { from { opacity:0; transform:scale(0.82);       } to { opacity:1; transform:scale(1);       } }
@keyframes flipInY   { from { opacity:0; transform:rotateY(60deg) scaleX(0.7); } to { opacity:1; transform:rotateY(0) scaleX(1); } }

.anim-ready    { opacity: 0; will-change: opacity, transform; }
.anim-fadeup   { animation: fadeUp   0.6s cubic-bezier(.22,.68,0,1.2) forwards; }
.anim-fadeleft  { animation: fadeLeft  0.6s cubic-bezier(.22,.68,0,1.2) forwards; }
.anim-faderight { animation: fadeRight 0.6s cubic-bezier(.22,.68,0,1.2) forwards; }
.anim-zoom     { animation: zoomIn   0.55s cubic-bezier(.34,1.56,.64,1) forwards; }
.anim-flip     { animation: flipInY  0.55s ease forwards; }

/* ── RÉALISATIONS ── */
.real-grid-wrap { max-width: 1200px; margin: 0 auto; }
.real-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.real-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.real-card { border: 1px solid var(--line); }
.real-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.real-img-wrap { position: relative; height: 260px; overflow: hidden; }
.real-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.real-card:hover .real-img-wrap img { transform: scale(1.06); }
.real-badge { position: absolute; top: 16px; left: 16px; background: var(--red); color: var(--white); font-size: 0.8rem; font-weight: 600; padding: 6px 14px; border-radius: 999px; }
.real-body { padding: 28px 32px; }
.real-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.real-body > p { color: var(--gray); font-size: 0.97rem; line-height: 1.65; margin-bottom: 18px; }
.real-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag { background: #f1f5f9; color: var(--dark2); font-size: 0.82rem; padding: 5px 14px; border-radius: 999px; font-weight: 500; border: 1px solid #e2e8f0; }
.real-foot { display: flex; justify-content: space-between; align-items: center; }
.real-foot .ext { color: #94a3b8; font-size: 0.95rem; text-decoration: none; }
.real-foot .ext:hover { color: var(--dark); }

.real-cta {
  max-width: 680px; margin: 56px auto 0; text-align: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 40px;
}
.real-cta h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.real-cta p  { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; }

/* ── REAL-GRID HOME (2x2) ── */
.real-grid-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.real-grid-home .real-img-wrap { height: 220px; }
.real-grid-home .real-body     { padding: 22px 24px; }
.real-grid-home .real-body h3  { font-size: 1.05rem; }
.real-grid-home .real-body > p { font-size: 0.9rem; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.c-info-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 28px; }
.c-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.c-ico  { width: 40px; height: 40px; background: var(--red-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.c-text strong { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 2px; }
.c-text span, .c-text p { color: var(--gray); font-size: 0.85rem; display: block; }
.c-text a { color: var(--red); font-size: 0.85rem; font-weight: 500; text-decoration: none; }
.c-text a:hover { text-decoration: underline; }

.hours-card { background: var(--white); border-radius: 10px; padding: 22px 24px; margin-top: 8px; box-shadow: var(--shadow-sm); }
.hours-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.h-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 7px 0; border-bottom: 1px solid #f1f5f9; }
.h-row:last-child { border-bottom: none; }
.h-row span:first-child { color: var(--gray); }
.h-row span:last-child  { font-weight: 500; }

.form-card { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.cform { display: flex; flex-direction: column; gap: 16px; }
.flabel { font-size: 0.82rem; font-weight: 600; color: var(--dark2); margin-bottom: 6px; display: block; }
.cform input, .cform textarea, .cform select {
  border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 12px 16px;
  font-size: 0.875rem; font-family: inherit; outline: none; width: 100%;
  transition: border-color .2s; color: var(--dark); background: var(--white);
}
.cform input:focus, .cform textarea:focus, .cform select:focus { border-color: var(--red); }
.cform textarea { resize: vertical; min-height: 130px; }
.btn-send {
  background: var(--red); color: var(--white); border: none; padding: 14px;
  border-radius: 8px; font-weight: 700; font-size: 0.95rem; cursor: pointer;
  transition: background .2s; display: flex; align-items: center; gap: 8px;
  justify-content: center; width: 100%; font-family: inherit;
}
.btn-send:hover { background: var(--red-dark); }
.form-success { display: none; background: #dcfce7; border: 1px solid #86efac; color: #166534; padding: 14px 18px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; }

/* ── FOOTER ── */
.footer { background: #eef3f8; color: var(--gray); padding: 56px 24px 24px; border-top: 1px solid var(--line); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 16px; text-decoration: none; }
.footer-logo-image { display: block; width: min(220px, 100%); height: auto; object-fit: contain; }
.footer-about { font-size: 0.85rem; line-height: 1.7; color: var(--gray); margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.soc-link { width: 34px; height: 34px; background: var(--white); border: 1px solid var(--line); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--dark2); font-size: 0.9rem; text-decoration: none; transition: all .2s; }
.soc-link:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.footer-col h4 { color: var(--dark); font-weight: 700; font-size: 0.9rem; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--gray); }
.footer-col ul li a { color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--dark); }
.footer-col ul li i, .footer-col ul li span { font-size: 0.8rem; color: #7b8797; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; text-align: center; font-size: 0.82rem; color: #7b8797; }

/* ── CONTACT HOME v2 ── */
.contact-home-grid-v2 {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: start;
}
.chv2-left  { display: flex; flex-direction: column; gap: 20px; }
.chv2-right { height: 100%; }

.contact-home-header { max-width: 760px; margin-left: auto; margin-right: auto; }
.contact-home-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 999px; margin-bottom: 18px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--dark2); background: var(--surface); border: 1px solid var(--line);
}
.contact-home-intro h3 { font-size: 1.55rem; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.contact-home-intro p  { color: var(--gray); line-height: 1.75; margin-bottom: 22px; }
.contact-home-points { display: flex; flex-direction: column; gap: 12px; }
.contact-home-point {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--dark2); font-size: 0.92rem; line-height: 1.55;
}
.contact-home-point i { color: var(--red); margin-top: 2px; flex-shrink: 0; }

.h-row-home {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem; padding: 10px 0;
  border-bottom: 1px solid #eef2f7; color: var(--gray);
}
.h-row-home:last-of-type { border-bottom: none; }

.contact-home-details { display: flex; flex-direction: column; gap: 12px; }
.contact-home-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 14px; text-decoration: none;
  background: #f8fafc; border: 1px solid #e8eef5; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.contact-home-detail:hover {
  transform: translateY(-2px); border-color: rgba(255,42,31,0.22); box-shadow: var(--shadow-sm);
}
.contact-home-detail--static:hover { transform: none; border-color: #e8eef5; box-shadow: none; }
.contact-home-detail-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); color: var(--red); font-size: 1rem;
}
.contact-home-detail--wa .contact-home-detail-icon { background: #dcfce7; color: #16a34a; }
.contact-home-detail-body { display: flex; flex-direction: column; min-width: 0; }
.contact-home-detail-body strong { font-size: 0.88rem; color: var(--dark); margin-bottom: 2px; }
.contact-home-detail-body span { font-size: 0.88rem; color: var(--gray); }
.contact-home-hours { margin-top: 24px; padding-top: 20px; border-top: 1px solid #eef2f7; }
.chc-subhead {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--dark2); margin-bottom: 12px;
}

/* ── SEND BUTTON ── */
.btn-home-send {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: var(--dark); color: var(--white); border: none; border-radius: 12px;
  padding: 16px 18px; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 12px 28px rgba(36,50,70,0.16);
  font-family: inherit; margin-top: 10px;
}
.btn-home-send:hover {
  background: #1a2534; transform: translateY(-2px); box-shadow: 0 16px 32px rgba(36,50,70,0.22);
}
.btn-home-send-text {
  font-size: 0.97rem; font-weight: 700; letter-spacing: 0.01em;
}
.btn-home-send-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 10px; background: rgba(255,255,255,0.10); font-size: 0.95rem; transition: background .2s;
}
.btn-home-send:hover .btn-home-send-arrow { background: rgba(255,255,255,0.16); }

/* ── CONTACT HOME CARD ── */
.contact-home-card {
  background: var(--white); border-radius: 16px; padding: 28px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.chc-header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.chc-header i { color: var(--red); font-size: 1.2rem; }
.chc-header h3 { font-size: 1.05rem; font-weight: 700; }
.chc-extra { margin-top: 24px; padding-top: 20px; border-top: 1px solid #f1f5f9; }
.contact-home-form { padding: 34px 32px; }
.contact-home-form-intro { color: var(--gray); line-height: 1.7; margin: -8px 0 18px; font-size: 0.92rem; }

.cform-home { display: flex; flex-direction: column; gap: 14px; }
.cform-home input, .cform-home textarea, .cform-home select {
  width: 100%; border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 11px 16px 11px 40px; font-size: 0.875rem; font-family: inherit;
  outline: none; transition: border-color .2s, box-shadow .2s;
  background: #fafafa; color: var(--dark);
}
.cform-home textarea { padding: 13px 16px; min-height: 136px; resize: vertical; }
.cform-home input:focus, .cform-home textarea:focus, .cform-home select:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,32,32,0.08);
  background: var(--white);
}
.contact-home-note {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; border-radius: 12px; background: var(--surface);
  color: var(--gray); font-size: 0.84rem; line-height: 1.6;
}
.contact-home-note i { color: var(--red); margin-top: 2px; flex-shrink: 0; }

.contact-home-card .h-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.875rem; padding: 9px 0; border-bottom: 1px solid #f9fafb; color: var(--gray);
}
.contact-home-card .h-row:last-of-type { border-bottom: none; }

/* ── FORM ROW 2 COLS ── */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-group { display: flex; flex-direction: column; }
.input-icon-wrap { position: relative; }
.input-icon-wrap i {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: #9ca3af; font-size: 0.85rem; pointer-events: none;
}
.input-icon-wrap input, .input-icon-wrap select { padding-left: 36px; }

/* ── CONTACT CTA BOX ── */
.contact-cta-box { background: var(--white); border-radius: 20px; box-shadow: 0 4px 32px rgba(0,0,0,0.08); border: 1px solid #f1f5f9; }
.contact-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 52px 60px; }
.contact-cta-text h2 { font-size: clamp(1.3rem,2.5vw,1.75rem); font-weight: 800; margin-bottom: 10px; }
.contact-cta-text p  { color: var(--gray); font-size: 1rem; }
.btn-lg { padding: 16px 36px !important; font-size: 1.05rem !important; white-space: nowrap; }

/* ── CONTACT PAGE ── */
.contact-page-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
  max-width: 1120px; margin: 0 auto;
}
.contact-page-left { display: flex; flex-direction: column; gap: 20px; }
.contact-page-right { min-width: 0; }
.contact-page-intro {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--line); border-radius: 20px;
  padding: 34px 32px; box-shadow: var(--shadow-sm);
  min-height: 100%;
}
.contact-page-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px; border-radius: 999px; margin-bottom: 18px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--dark2); background: var(--surface); border: 1px solid var(--line);
}
.contact-page-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.15; font-weight: 800; margin-bottom: 14px;
}
.contact-page-intro p {
  color: var(--gray); line-height: 1.8; font-size: 0.98rem; margin-bottom: 22px;
}
.contact-page-points { display: flex; flex-direction: column; gap: 12px; }
.contact-page-point {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.92rem; color: var(--dark2); line-height: 1.6;
}
.contact-page-point i { color: var(--red); margin-top: 2px; flex-shrink: 0; }

.contact-card { background: var(--white); border-radius: 16px; padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 20px; transition: transform .25s, box-shadow .25s; border: 1px solid var(--line); }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; color: var(--dark); }
.contact-card h3 i { color: var(--red); }

.contact-page-details { display: flex; flex-direction: column; gap: 12px; }
.contact-page-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 14px; text-decoration: none;
  background: #f8fafc; border: 1px solid #e8eef5; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.contact-page-detail:hover {
  transform: translateY(-2px); border-color: rgba(255,42,31,0.22); box-shadow: var(--shadow-sm);
}
.contact-page-detail--static:hover { transform: none; border-color: #e8eef5; box-shadow: none; }
.contact-page-detail-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--red-light); color: var(--red); font-size: 1rem;
}
.contact-page-detail--wa .contact-page-detail-icon { background: #dcfce7; color: #16a34a; }
.contact-page-detail-body { display: flex; flex-direction: column; min-width: 0; }
.contact-page-detail-body strong { font-size: 0.88rem; color: var(--dark); margin-bottom: 2px; }
.contact-page-detail-body span { font-size: 0.88rem; color: var(--gray); }
.contact-page-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid #eef2f7;
  color: var(--gray); font-size: 0.84rem; line-height: 1.6;
}
.contact-page-note i { color: var(--red); margin-top: 2px; flex-shrink: 0; }

.form-card-premium { background: var(--white); border-radius: 20px; padding: 40px 44px; box-shadow: 0 4px 32px rgba(0,0,0,0.08); border: 1px solid #f1f5f9; }
.contact-page-right .form-card-premium { max-width: 100%; margin: 0 auto; }
.form-card-header { margin-bottom: 32px; }
.form-card-header h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.form-card-header p  { color: var(--gray); font-size: 0.92rem; line-height: 1.7; }
.cform-premium input,
.cform-premium select { width: 100%; border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 13px 16px 13px 40px; font-size: 0.9rem; font-family: inherit; outline: none; transition: border-color .2s, box-shadow .2s; background: #fafafa; color: var(--dark); }
.cform-premium textarea { width: 100%; border: 1.5px solid #e5e7eb; border-radius: 10px; padding: 13px 16px; font-size: 0.9rem; font-family: inherit; outline: none; transition: border-color .2s, box-shadow .2s; background: #fafafa; color: var(--dark); resize: vertical; min-height: 150px; }
.cform-premium input:focus, .cform-premium select:focus, .cform-premium textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(224,32,32,0.08); background: var(--white); }
.btn-send-premium { width: 100%; background: var(--dark); color: var(--white); border: none; padding: 16px 24px; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .2s, transform .2s; display: flex; align-items: center; justify-content: center; gap: 10px; font-family: inherit; margin-top: 8px; letter-spacing: 0.01em; box-shadow: 0 12px 28px rgba(36,50,70,0.16); }
.btn-send-premium:hover { background: #1a2534; transform: translateY(-2px); }
.btn-arrow { margin-left: auto; opacity: 0.7; }
.contact-page-form-note {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; margin-bottom: 6px; border-radius: 12px;
  background: var(--surface); color: var(--gray); font-size: 0.84rem; line-height: 1.6;
}
.contact-page-form-note i { color: var(--red); margin-top: 2px; flex-shrink: 0; }
.alert-success { background: #dcfce7; border: 1px solid #86efac; color: #166534; padding: 16px 20px; border-radius: 10px; margin-bottom: 24px; display: flex; align-items: flex-start; gap: 12px; }
.alert-success i { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.alert-success strong { display: block; font-weight: 700; margin-bottom: 2px; }
.alert-error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; padding: 16px 20px; border-radius: 10px; margin-bottom: 24px; display: flex; align-items: flex-start; gap: 12px; }
.alert-error i { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.alert-error ul { list-style: none; }

/* ── RESPONSIVE ══════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .vals-grid            { grid-template-columns: repeat(2, 1fr); }
  .svc-grid-3           { gap: 24px; }
  .svc-grid-2           { grid-template-columns: 1fr; max-width: 680px; }
  .contact-home-grid-v2 { grid-template-columns: 1fr; }
  .contact-page-grid    { grid-template-columns: 1fr; }
  .chv2-left            { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .chv2-left > div      { flex: 1; min-width: 260px; }
  .contact-cta-inner    { flex-direction: column; text-align: center; padding: 36px 32px; }
  .form-card-premium    { padding: 28px 24px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-container  { padding: 0 20px; }
  .nav-links      { display: none; }
  .nav-logo-full  { width: 124px; }
  .btn-nav-cta span { display: none; }
  .btn-nav-cta    { padding: 9px 14px; font-size: 0.8rem; }
  .btn-nav-logo   { width: 14px; height: 14px; }
  .hamburger      { display: flex; }
  .section        { padding: 56px 20px; }
  .page-hero      { padding: 72px 20px 60px; }
  .svc-grid-3, .svc-grid-2, .about-2col, .contact-wrap { grid-template-columns: 1fr; }
  .svc-grid-2     { max-width: 100%; }
  .svc-grid-3     { gap: 20px; }
  .real-grid      { grid-template-columns: 1fr; gap: 32px; }
  .real-grid-home { grid-template-columns: 1fr; gap: 24px; }
  .real-grid-home .real-img-wrap { height: 210px; }
  .real-grid-home .real-body     { padding: 20px 18px; }
  .vals-grid      { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .about-2col     { gap: 28px; }
  .about-img img  { height: 220px; }
  .hero-stats     { gap: 20px; }
  .stat-item      { min-width: 145px; padding: 16px 18px; }
  .cta-box, .real-cta { padding: 28px 20px; }
  .vision-box     { padding: 28px 20px; }
  .svc-big        { flex-direction: column; gap: 14px; padding: 28px 24px; }
  .svc-card       { padding: 26px 22px; }
  .contact-home-grid-v2 { grid-template-columns: 1fr; }
  .chv2-left            { flex-direction: column; }
  .contact-home-form    { padding: 28px 22px; }
  .contact-page-intro   { padding: 28px 22px; }
  .contact-cta-inner    { padding: 28px 20px; }
  .form-row-2           { grid-template-columns: 1fr; }
  .stats-blocks         { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title     { font-size: 1.85rem; }
  .hero-badge     { font-size: 0.76rem; padding: 6px 14px; }
  .hero-sub       { font-size: 0.92rem; }
  .btn-primary, .btn-outline-white { padding: 12px 20px; font-size: 0.88rem; }
  .section-header h2 { font-size: 1.55rem; }
  .vals-grid      { grid-template-columns: 1fr 1fr; gap: 12px; }
  .real-img-wrap  { height: 190px; }
  .svc-card h3    { font-size: 1.05rem; }
  .real-body h3   { font-size: 1rem; }
  .hero-stats     { gap: 16px; }
  .stats-blocks   { grid-template-columns: 1fr 1fr; }
}