/* ==========================================================================
   HARIQ FIRE PROTECTION SYSTEMS — Design System
   Palette: Alarm Red / Deep Navy / Ember Orange / Charcoal / Warm White
   Type: Oswald (display, condensed/industrial) + Inter (body) + Roboto Mono (data)
   ========================================================================== */

:root {
  --c-red: #d62828;
  --c-red-dark: #a81f1f;
  --c-navy: #292d34;
  --c-navy-light: #16305a;
  --c-orange: #f77f00;
  --c-charcoal: #1e1e1e;
  --c-white: #faf9f7;
  --c-white-pure: #ffffff;
  --c-gray: #6b7280;
  --c-gray-light: #e7e5e0;
  --c-line: #dedad3;

  --f-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius: 4px;
  --shadow-sm: 0 2px 10px rgba(11,31,58,0.08);
  --shadow-md: 0 8px 30px rgba(11,31,58,0.14);
  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
svg { width: 1em; height: 1em; display: inline-block; flex-shrink: 0; vertical-align: -0.125em; }
.icon-wrap svg, .value-card .icon-wrap svg { width: 1em; height: 1em; }
.brand-logo svg { display: none; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body { font-family: var(--f-body); color: var(--c-charcoal); background: var(--c-white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1,h2,h3,h4,h5 { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em; color: var(--c-navy); line-height: 1.15; }
:focus-visible { outline: 3px solid var(--c-orange); outline-offset: 2px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.eyebrow { font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-red); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--c-red); display: inline-block; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.section-lead { color: var(--c-gray); max-width: 640px; font-size: 1.05rem; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }
.bg-navy { background: var(--c-navy); color: #cfd7e4; }
.bg-navy h2, .bg-navy h3 { color: var(--c-white-pure); }

.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 15px 30px; border-radius: var(--radius); transition: all 0.25s var(--ease); white-space: nowrap; position: relative; overflow: hidden; }
.btn-primary { background: var(--c-red); color: #fff; }
.btn-primary:hover { background: var(--c-red-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--c-white-pure); border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-navy { background: var(--c-navy); color: #fff; }
.btn-navy:hover { background: var(--c-navy-light); transform: translateY(-2px); }
.btn::after { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.25); border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.5s var(--ease), height 0.5s var(--ease); }
.btn:active::after { width: 240px; height: 240px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* HEADER */
.top-bar { background: var(--c-navy); color: #cfd7e4; font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.top-bar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.top-bar-left { display: flex; align-items: center; gap: 22px; }
.top-bar-left a { display: flex; align-items: center; gap: 7px; color: #cfd7e4; transition: color 0.2s; }
.top-bar-left a:hover { color: var(--c-orange); }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; transition: all 0.2s; }
.social-icons a:hover { background: var(--c-red); border-color: var(--c-red); }
.top-cta { background: var(--c-red); color: #fff !important; padding: 7px 18px; font-family: var(--f-display); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.top-cta:hover { background: var(--c-red-dark); }

.site-header { position: sticky; top: 0; z-index: 200; background: var(--c-navy); box-shadow: 0 2px 14px rgba(11,31,58,0.07); transition: all 0.3s var(--ease); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100px; transition: height 0.3s var(--ease); }
.site-header.scrolled .header-inner { height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
/*.brand-logo { background: var(--c-navy); padding: 10px 16px; border-radius: var(--radius); display: flex; align-items: center; transition: padding 0.3s var(--ease); }*/
.brand-logo img { height: 70px; width: auto; display: block; transition: height 0.3s var(--ease); }
.site-header.scrolled .brand-logo { padding: 7px 14px; }
.site-header.scrolled .brand-logo img { height: 40px; }
.brand-text { font-family: var(--f-display); font-size: 0.92rem; line-height: 1.2; color: var(--c-navy); letter-spacing: 0.02em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > ul { display: flex; align-items: center; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: flex; align-items: center; gap: 6px; padding: 12px 16px; font-family: var(--f-display); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-white-pure); transition: color 0.2s; position: relative; }
.main-nav > ul > li > a::after { content: ''; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px; background: var(--c-red); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease); }
.main-nav > ul > li > a:hover, .main-nav > ul > li > a.active { color: var(--c-red); }
.main-nav > ul > li > a:hover::after, .main-nav > ul > li > a.active::after { transform: scaleX(1); }
.caret { font-size: 0.6rem; transition: transform 0.25s; }
.main-nav li:hover .caret { transform: rotate(180deg); }

.dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 320px; box-shadow: var(--shadow-md); border-top: 3px solid var(--c-red); padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.22s var(--ease); }
.main-nav li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 12px 24px; font-size: 0.88rem; color: var(--c-charcoal); transition: all 0.18s; border-left: 3px solid transparent; }
.dropdown a:hover { background: var(--c-white); color: var(--c-red); border-left-color: var(--c-red); padding-left: 28px; }
.dropdown .dd-icon { color: var(--c-red); font-size: 0.9rem; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { padding: 13px 24px; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 30px; z-index: 210; }
.hamburger span { height: 2px; background: var(--c-white-pure); transition: all 0.3s var(--ease); }
.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 drawer + backdrop are hidden by default at every width; the media
   query below only ever RUNS on screens ≤1024px, so without this base rule
   the drawer had no positioning at all above 1024px and rendered as plain
   in-page content. */
.mobile-drawer, .drawer-backdrop { display: none; }

@media (max-width: 1024px) {
  .main-nav, .header-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .header-cta { gap: 10px; }
  .mobile-drawer, .drawer-backdrop { display: block; }
  .mobile-drawer { position: fixed; top: 0; right: -100%; width: min(360px, 86vw); height: 100vh; background: var(--c-navy); z-index: 205; transition: right 0.35s var(--ease); overflow-y: auto; padding: 90px 0 40px; }
  .mobile-drawer.open { right: 0; }
  .mobile-drawer ul { padding: 0 12px; }
  .mobile-drawer > ul > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mobile-drawer > ul > li > a, .mobile-drawer .mob-toggle { display: flex; align-items: center; justify-content: space-between; padding: 16px 12px; color: #fff; font-family: var(--f-display); letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.92rem; }
  .mobile-drawer .sub-menu { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); background: rgba(0,0,0,0.18); }
  .mobile-drawer .sub-menu.open { max-height: 600px; }
  .mobile-drawer .sub-menu a { display: block; padding: 12px 28px; color: #cfd7e4; font-size: 0.88rem; }
  .drawer-backdrop { position: fixed; inset: 0; background: rgba(11,31,58,0.55); z-index: 204; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
  .drawer-backdrop.open { opacity: 1; visibility: visible; }
  .mobile-drawer .drawer-cta { padding: 22px; }
}

/* HERO SLIDER */
.hero-slider-section { position: relative; }
.hero-tabs { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 6px; background: rgba(11,31,58,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 6px; border-radius: 40px; border: 1px solid rgba(255,255,255,0.15); max-width: 94vw; }
.hero-tab { padding: 11px 22px; border-radius: 30px; font-family: var(--f-display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; opacity: 0.65; transition: all 0.25s var(--ease); white-space: nowrap; }
.hero-tab:hover { opacity: 0.9; }
.hero-tab.active { background: var(--c-red); opacity: 1; }
.hero-slider-group { display: none; }
.hero-slider-group.active { display: block; }
.tab-short { display: none; }
@media (max-width: 1024px) {
  .slider-label { display: none; }
}
@media (max-width: 480px) {
  .hero-tabs { top: 12px; padding: 4px; gap: 4px; }
  .hero-tab { padding: 9px 14px; font-size: 0.68rem; }
  .tab-full { display: none; }
  .tab-short { display: inline; }
}
.hero-slider { position: relative; height: 92vh; min-height: 560px; overflow: hidden; color: #fff; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 1s; display: flex; align-items: center; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(11,19,33,0.92) 0%, rgba(11,31,58,0.78) 42%, rgba(11,31,58,0.45) 75%); }
.hero-content { position: relative; z-index: 3; /*max-width: 640px; */}
.hero-content .eyebrow { color: var(--c-orange); }
.hero-content h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin-bottom: 18px; }
.hero-content p { font-size: 1.08rem; color: #e6e9f0; max-width: 520px; margin-bottom: 32px; }
.hero-slide.active .hero-content .eyebrow, .hero-slide.active .hero-content h1, .hero-slide.active .hero-content p, .hero-slide.active .hero-content .btn-group { animation: heroUp 0.9s var(--ease) both; }
.hero-slide.active .hero-content h1 { animation-delay: 0.1s; }
.hero-slide.active .hero-content p { animation-delay: 0.2s; }
.hero-slide.active .hero-content .btn-group { animation-delay: 0.32s; }
@keyframes heroUp { from { opacity: 0; transform: translateY(26px);} to { opacity: 1; transform: translateY(0);} }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

.slider-label { position: absolute; top: 28px; left: 24px; z-index: 4; font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 10px; }
.slider-label::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--c-red); box-shadow: 0 0 0 4px rgba(214,40,40,0.25); }

.slider-nav { position: absolute; z-index: 4; bottom: 34px; left: 24px; right: 24px; display: flex; align-items: center; justify-content: space-between; }
.slider-dots { display: flex; gap: 10px; }
.slider-dots button { width: 34px; height: 4px; background: rgba(255,255,255,0.35); transition: background 0.25s; }
.slider-dots button.active { background: var(--c-red); }
.slider-arrows { display: flex; gap: 10px; }
.slider-arrows button { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all 0.2s; }
.slider-arrows button:hover { background: var(--c-red); border-color: var(--c-red); }

/* HOME SECTIONS */
.about-snap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-snap-media { position: relative; }
.about-snap-media .frame-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-snap-media .badge { position: absolute; bottom: -26px; left: -26px; background: var(--c-red); color: #fff; padding: 22px 26px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-snap-media .badge .num { font-family: var(--f-mono); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-snap-media .badge .cap { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.about-snap h2 { margin-bottom: 18px; }
.about-snap p { color: var(--c-gray); margin-bottom: 16px; }
.snap-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.snap-points li { display: flex; align-items: center; gap: 10px; font-size: 0.94rem; color: var(--c-charcoal); }
.snap-points li .tick { color: var(--c-red); font-weight: 700; }

.stats-strip { background: var(--c-navy); position: relative; overflow: hidden; }
.stats-strip::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, transparent 0 40px, rgba(255,255,255,0.03) 40px 42px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 56px 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-item .stat-num { font-family: var(--f-mono); font-size: 2.6rem; font-weight: 700; color: var(--c-orange); display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-item .stat-cap { color: #cfd7e4; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 8px; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 34px 26px; transition: all 0.3s var(--ease); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--c-red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon-wrap { width: 58px; height: 58px; border-radius: var(--radius); background: rgba(214,40,40,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--c-red); font-size: 1.5rem; transition: all 0.3s var(--ease); }
.service-card:hover .icon-wrap { background: var(--c-red); color: #fff; transform: rotate(-6deg) scale(1.05); }
.service-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.service-card p { color: var(--c-gray); font-size: 0.9rem; margin-bottom: 16px; }
.service-card .card-link { font-family: var(--f-mono); font-size: 0.78rem; color: var(--c-navy); text-transform: uppercase; letter-spacing: 0.06em; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-card .card-link:hover { gap: 10px; color: var(--c-red); }

/* CLIENT LOGO MARQUEE */
.client-strip { background: var(--c-white); padding: 60px 0; border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); }
.client-strip .section-head { margin-bottom: 34px; }
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; width: max-content; animation: scrollLeft 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .logo-item { flex: 0 0 auto; width: 200px; display: flex; align-items: center; justify-content: center; padding: 0 40px; }
.marquee-track .logo-item img { max-height: 56px; width: auto; filter: grayscale(1); opacity: 0.6; transition: all 0.3s; }
.marquee-track .logo-item img:hover { filter: grayscale(0); opacity: 1; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ASSOCIATED BRANDS (text wordmark marquee) */
.brand-strip { background: var(--c-navy); padding: 56px 0; }
.brand-strip .section-head.center .eyebrow { color: var(--c-orange); }
.brand-strip .section-head.center h2 { color: #fff; }
.brand-marquee-track { display: flex; width: max-content; animation: scrollLeft 26s linear infinite; align-items: center; }
.brand-marquee-track:hover { animation-play-state: paused; }
.brand-item { flex: 0 0 auto; padding: 0 46px; font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.4); text-transform: uppercase; transition: color 0.3s; white-space: nowrap; }
.brand-item:hover { color: #fff; }

/* PROJECTS GALLERY */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.project-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; transition: all 0.3s var(--ease); }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.project-card .p-head { padding: 22px 22px 16px; }
.project-card .p-tag { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-red); margin-bottom: 8px; display: block; }
.project-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.project-card .p-loc { color: var(--c-gray); font-size: 0.85rem; }
.project-card .p-img { aspect-ratio: 4/3; overflow: hidden; }
.project-card .p-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.project-card:hover .p-img img { transform: scale(1.06); }
.project-card .p-scope { padding: 16px 22px 22px; color: var(--c-gray); font-size: 0.88rem; }
@media (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

/* PROCESS STRIP */
.process-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { position: relative; padding: 0 28px 0 0; border-right: 1px dashed var(--c-line); }
.process-step:last-child { border-right: none; padding-right: 0; }
.process-step .step-num { font-family: var(--f-mono); font-size: 0.78rem; color: var(--c-red); letter-spacing: 0.1em; margin-bottom: 14px; display: block; }
.process-step h4 { font-size: 1rem; margin-bottom: 10px; }
.process-step p { color: var(--c-gray); font-size: 0.88rem; }

/* TESTIMONIALS */
.testimonial-wrap { position: relative; max-width: 780px; margin: 0 auto; text-align: center; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeUp 0.6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: translateY(0);} }
.testimonial-slide .quote-mark { font-family: var(--f-display); font-size: 3.4rem; color: var(--c-red); line-height: 1; opacity: 0.35; }
.testimonial-slide p { font-size: 1.2rem; color: var(--c-white-pure); line-height: 1.7; margin: 14px 0 24px; }
.testimonial-slide .t-name { font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.04em; color: #fff; }
.testimonial-slide .t-role { color: var(--c-orange); font-size: 0.85rem; margin-top: 4px; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.testimonial-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.testimonial-dots button.active { background: var(--c-red); width: 24px; border-radius: 4px; }

/* CTA BANNER */
.cta-banner { background: var(--c-red); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 22px, transparent 22px 44px); }
.cta-banner-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 54px 0; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); }

/* PAGE HERO */
.page-hero { position: relative; height: 340px; display: flex; align-items: center; color: #fff; overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(11,19,33,0.93), rgba(11,31,58,0.72)); }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { font-family: var(--f-mono); font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; display: flex; gap: 8px; align-items: center; text-transform: uppercase; letter-spacing: 0.05em; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--c-orange); }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); }

.intro-block { max-width: 820px; }
.intro-block p { color: var(--c-gray); font-size: 1.05rem; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card { background: var(--c-white); border-left: 3px solid var(--c-red); padding: 26px 24px; border-radius: 0 var(--radius) var(--radius) 0; transition: all 0.25s; }
.offer-card:hover { background: #fff; box-shadow: var(--shadow-sm); transform: translateX(4px); }
.offer-card h4 { font-size: 0.98rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.offer-card h4 .n { font-family: var(--f-mono); color: var(--c-red); font-size: 0.85rem; }
.offer-card p { color: var(--c-gray); font-size: 0.88rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-grid .g-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--c-navy), var(--c-navy-light)); }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-grid .g-item:hover img { transform: scale(1.08); }

.related-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-card { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border: 1px solid var(--c-line); border-radius: var(--radius); transition: all 0.25s; }
.related-card:hover { border-color: var(--c-red); background: #fff; box-shadow: var(--shadow-sm); }
.related-card span { font-family: var(--f-display); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--c-navy); }
.related-card .arrow { color: var(--c-red); }

/* ABOUT */
.md-profile { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.md-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.md-photo::after { content: ''; position: absolute; inset: 0; border: 6px solid var(--c-white); outline: 1px solid var(--c-line); outline-offset: -6px; }
.md-name { font-size: 1.5rem; margin-bottom: 2px; }
.md-title { color: var(--c-red); font-family: var(--f-mono); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.md-bio p { color: var(--c-gray); margin-bottom: 14px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip { background: var(--c-white); border: 1px solid var(--c-line); padding: 8px 16px; border-radius: 30px; font-size: 0.82rem; color: var(--c-navy); font-family: var(--f-mono); }

.timeline { position: relative; padding-left: 30px; border-left: 2px solid var(--c-line); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; position: absolute; left: -37px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--c-red); border: 3px solid var(--c-white); }
.timeline-item .t-year { font-family: var(--f-mono); color: var(--c-red); font-size: 0.85rem; margin-bottom: 6px; }
.timeline-item h4 { font-size: 1rem; margin-bottom: 6px; }
.timeline-item p { color: var(--c-gray); font-size: 0.9rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 30px 20px; }
.value-card .icon-wrap { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; border: 1.5px solid var(--c-red); display: flex; align-items: center; justify-content: center; color: var(--c-red); font-size: 1.6rem; }
.value-card h4 { font-size: 0.98rem; margin-bottom: 8px; }
.value-card p { color: var(--c-gray); font-size: 0.88rem; }

.cert-strip { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.cert-badge { display: flex; align-items: center; gap: 12px; border: 1px solid var(--c-line); padding: 16px 24px; border-radius: var(--radius); }
.cert-badge .cb-icon { color: var(--c-red); font-size: 1.4rem; }
.cert-badge span { font-family: var(--f-display); font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-navy); }

/* CONTACT */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-list { margin-top: 26px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .ci-icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--radius); background: rgba(214,40,40,0.08); color: var(--c-red); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.contact-info-item h4 { font-size: 0.92rem; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { color: var(--c-gray); font-size: 0.92rem; }
.contact-info-item a:hover { color: var(--c-red); }
.quick-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

.contact-form { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label { font-size: 0.82rem; font-family: var(--f-mono); text-transform: uppercase; letter-spacing: 0.05em; color: var(--c-navy); }
.form-group input, .form-group select, .form-group textarea { padding: 13px 14px; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-white); transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--c-red); outline: none; box-shadow: 0 0 0 3px rgba(214,40,40,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--c-gray); margin-top: 14px; }
.form-status { margin-top: 14px; font-size: 0.9rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #1a7f37; }
.form-status.err { color: var(--c-red); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.hours-block { display: flex; justify-content: space-between; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 18px 22px; margin-top: 20px; }
.hours-block div span { display: block; }
.hours-block .h-label { font-family: var(--f-mono); font-size: 0.75rem; color: var(--c-gray); text-transform: uppercase; letter-spacing: 0.05em; }
.hours-block .h-value { font-family: var(--f-display); font-size: 0.95rem; color: var(--c-navy); margin-top: 2px; }

/* WHATSAPP FAB */
.wa-fab { position: fixed; bottom: 26px; right: 26px; z-index: 150; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 6px 20px rgba(37,211,102,0.45); transition: transform 0.25s; }
.wa-fab:hover { transform: scale(1.08); }
.wa-fab::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366; animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }

/* FOOTER */
.site-footer { background: var(--c-charcoal); color: #b7b7b7; }
.footer-top { padding: 72px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h5 { color: #fff; font-size: 0.92rem; margin-bottom: 22px; letter-spacing: 0.05em; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand img { height: 44px; }
.footer-brand strong { font-family: var(--f-display); color: #fff; font-size: 1.1rem; }
.footer-col p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 0.88rem; transition: color 0.2s, padding-left 0.2s; display: inline-block; }
.footer-col ul li a:hover { color: var(--c-red); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; font-size: 0.88rem; }
.footer-contact li .fc-icon { color: var(--c-red); margin-top: 3px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid #444; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.footer-social a:hover { background: var(--c-red); border-color: var(--c-red); color: #fff; }
.footer-bottom { border-top: 1px solid #333; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--c-red); }

/* RESPONSIVE */
@media (max-width: 1180px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .related-strip { grid-template-columns: 1fr; }
  .process-strip { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .process-step { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .about-snap, .md-profile, .contact-wrap { grid-template-columns: 1fr; }
  .about-snap-media { margin-bottom: 40px; order: -1; }
  .top-bar-left span:last-child, .top-bar-left a:nth-child(2) { display: none; }
  .header-inner { height: 84px; }
  .brand-logo img { height: 38px; }
  .brand-logo { padding: 6px 12px; }
  .hero-content { max-width: 100%; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .services-grid, .offer-grid, .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .hero-slider { height: 82vh; }
  .snap-points { grid-template-columns: 1fr; }
  .top-bar-right .social-icons { display: none; }
  .process-strip { grid-template-columns: 1fr; row-gap: 26px; }
  .contact-form { padding: 24px; }
  .offer-card, .related-card { padding: 20px 18px; }
  .about-snap-media .badge { left: 0; bottom: -20px; padding: 16px 18px; }
  .about-snap-media .badge .num { font-size: 1.7rem; }
  .hours-block { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hours-block > div:last-child { text-align: left; }
}
@media (max-width: 640px) {
  .page-hero { height: auto; min-height: 240px; padding: 110px 0 36px; }
}
@media (max-width: 380px) {
  .header-cta { gap: 6px; }
  .brand-logo { padding: 5px 10px; }
  .brand-logo img { height: 32px; }
  .wa-fab { width: 50px; height: 50px; font-size: 1.4rem; bottom: 18px; right: 18px; }
  .btn { padding: 13px 22px; font-size: 0.78rem; }
}
