/* ============ Mistri4You — Design Tokens (Premium Logo Theme Only) ============ */
:root {
  --primary-red: #ec3237;
  --primary-red-hover: #c41e22;
  --primary-red-dark: #a8181c;
  --primary-red-light: rgba(236, 50, 55, 0.08);
  --primary-red-glow: rgba(236, 50, 55, 0.3);
  
  --primary-gold: #ffcc00;
  --primary-gold-hover: #e6b800;
  --primary-gold-light: rgba(255, 204, 0, 0.12);
  
  --dark-bg: #0f1012;
  --dark-surface: #17181c;
  --dark-surface-light: #202227;
  --dark-border: rgba(255, 255, 255, 0.08);
  
  --light-bg: #f8f9fa;
  --light-surface: #ffffff;
  --light-border: #e9ecef;
  
  --ink-900: #111317;
  --ink-700: #2d3139;
  --ink-500: #5c626e;
  --ink-300: #ced4da;
  --ink-100: #e9ecef;
  --white: #ffffff;
  
  --success: var(--primary-gold);
  --error: var(--primary-red);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Rubik', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  
  --shadow-sm: 0 4px 10px rgba(15, 16, 18, 0.03);
  --shadow-md: 0 10px 30px rgba(15, 16, 18, 0.06);
  --shadow-lg: 0 20px 50px rgba(15, 16, 18, 0.12);
  --shadow-glow: 0 0 20px rgba(236, 50, 55, 0.2);
  --container-w: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--light-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { 
  font-family: var(--font-heading); 
  color: var(--ink-900); 
  line-height: 1.15; 
  font-weight: 700;
  letter-spacing: -0.02em;
}
a { text-decoration: none; color: inherit; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }

.icon { width: 24px; height: 24px; }
.icon-sm { width: 18px; height: 18px; }
.icon-caret { width: 12px; height: 12px; transform: rotate(90deg); transition: transform 0.3s ease; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 15px;
  border: 2px solid transparent; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
  white-space: nowrap; position: relative; overflow: hidden; z-index: 1;
}
.btn-primary { 
  background: linear-gradient(135deg, var(--primary-red), #ff2e34); 
  color: var(--white); 
  box-shadow: 0 4px 15px rgba(236, 50, 55, 0.3);
}
.btn-primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(236, 50, 55, 0.45);
}
.btn-outline { 
  border-color: var(--ink-900); 
  color: var(--ink-900); 
  background: transparent;
}
.btn-outline:hover { 
  background: var(--ink-900); 
  color: var(--white); 
  transform: translateY(-2px);
}
.btn-ghost { 
  color: var(--ink-900); 
  border-color: var(--primary-gold);
  background: var(--primary-gold);
  font-weight: 700;
}
.btn-ghost:hover { 
  color: var(--white); 
  background: var(--primary-red); 
  border-color: var(--primary-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(236, 50, 55, 0.25);
}
.btn-white { 
  background: var(--white); 
  color: var(--ink-900); 
  box-shadow: var(--shadow-md);
}
.btn-white:hover { 
  background: var(--primary-red-light); 
  color: var(--primary-red);
  transform: translateY(-2px);
}
.btn-outline-white { 
  border-color: rgba(255,255,255,.6); 
  color: var(--white); 
}
.btn-outline-white:hover { 
  background: rgba(255,255,255,.15); 
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-lg { padding: 18px 36px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ============ Topbar & Header ============ */
.topbar { 
  background: #090a0c; 
  color: rgba(255,255,255,.85); 
  font-size: 13px; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 10px 24px; }
.topbar-contact { display: flex; gap: 24px; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.topbar-contact a:hover { color: var(--primary-gold); }
.topbar-contact svg { width: 14px; height: 14px; color: var(--primary-gold); }
.topbar-note { opacity: .9; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.topbar-note::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--primary-gold); border-radius: 50%; animation: pulse-gold 2s infinite; }

@keyframes pulse-gold {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 204, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

.site-header { 
  background: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky; 
  top: 0; 
  z-index: 100; 
  transition: all 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 56px; width: auto; display: block; transition: transform 0.3s ease; }
.logo:hover .logo-img { transform: scale(1.03); }

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav > a { font-weight: 600; color: var(--ink-700); padding: 10px 0; position: relative; display: inline-flex; align-items: center; gap: 4px; font-size: 15px; }
.main-nav > a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--primary-red); transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.main-nav > a.active, .main-nav > a:hover { color: var(--primary-red); }
.main-nav > a.active::after, .main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-dropdown { position: relative; }
.nav-dropdown > a:hover .icon-caret { transform: rotate(270deg); }
.dropdown-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(12px);
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md); 
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px; width: 260px; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); z-index: 50;
}
.nav-dropdown:hover .dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-panel a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm); font-weight: 600; font-size: 14.5px; color: var(--ink-700); }
.dropdown-panel a:hover { background: var(--primary-red-light); color: var(--primary-red); transform: translateX(4px); }
.dropdown-panel svg { color: var(--primary-red); flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-call { display: none; }
.nav-toggle { display: none; background: none; border: none; padding: 8px; color: var(--ink-900); border-radius: 50%; }
.nav-toggle:hover { background: rgba(0,0,0,0.05); }

/* ============ Hero ============ */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #f8f9fa 0%, #edf1f5 100%); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; opacity: 0.25; pointer-events: none; }
.hero-bg::before,
.hero-bg::after {
  content: ''; position: absolute; top: -10%; height: 120%; width: 35%;
  clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%); filter: blur(60px);
}
.hero-bg::before { right: -5%; background: var(--primary-red); }
.hero-bg::after { right: 15%; width: 15%; background: var(--primary-gold); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; padding: 110px 24px 120px; }
.eyebrow { display: inline-block; color: var(--primary-red); font-weight: 800; font-size: 13.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.hero .eyebrow, .page-hero .eyebrow, .why-section .eyebrow { color: var(--primary-red); }
.hero-copy h1 { color: var(--ink-900); font-size: clamp(34px, 4.5vw, 56px); margin-bottom: 24px; font-weight: 800; }
.hero-copy h1 span { color: var(--primary-red); text-shadow: 0 0 20px rgba(236, 50, 55, 0.1); }
.hero-copy > p { color: var(--ink-700); font-size: 18px; max-width: 540px; margin-bottom: 38px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stats strong { display: block; color: var(--ink-900); font-family: var(--font-heading); font-size: 32px; font-weight: 800; }
.hero-stats span { color: var(--ink-500); font-size: 13.5px; font-weight: 500; }

.hero-card { 
  position: relative; 
  background: rgba(255,255,255,0.7); 
  border: 1px solid rgba(255,255,255,0.6); 
  border-radius: var(--radius-lg); 
  padding: 10px; 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  animation: float-slow 6s ease-in-out infinite;
}

@keyframes float-slow {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.hero-badge {
  position: absolute; top: -20px; right: 28px; z-index: 2; 
  background: linear-gradient(135deg, var(--primary-gold), #ffde59); 
  color: #0c0d0f;
  font-family: var(--font-heading); font-weight: 800; font-size: 13.5px; padding: 11px 20px; border-radius: 999px;
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4); transform: rotate(-3deg); display: flex; align-items: center; gap: 6px;
}
.hero-badge svg { width: 15px; height: 15px; fill: #0c0d0f; }
.hero-card-inner { background: var(--white); border-radius: var(--radius-md); padding: 40px 36px; }
.hero-card-icon { width: 56px; height: 56px; color: var(--primary-red); margin-bottom: 20px; }
.hero-card-inner h3 { font-size: 24px; margin-bottom: 12px; font-weight: 800; }
.hero-card-inner > p { margin-bottom: 24px; color: var(--ink-500); font-size: 15px; }
.hero-card-inner ul li { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-weight: 600; color: var(--ink-700); border-top: 1px solid var(--ink-100); font-size: 14.5px; }
.hero-card-inner ul li:first-child { border-top: none; }
.hero-card-inner ul svg { color: var(--primary-gold); flex-shrink: 0; fill: var(--primary-gold); }

/* ============ Trust Strip ============ */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--light-border); padding: 32px 0; }
.trust-strip-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item-icon { 
  width: 46px; 
  height: 46px; 
  border-radius: 12px; 
  background: var(--primary-red-light); 
  color: var(--primary-red); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  flex-shrink: 0; 
  box-shadow: 0 4px 12px rgba(236, 50, 55, 0.05);
}
.trust-item-icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-size: 15px; color: var(--ink-900); font-weight: 700; }
.trust-item span { font-size: 13px; color: var(--ink-500); }

/* ============ Sections ============ */
.section { padding: 110px 0; }
.section-alt { background: var(--white); border-top: 1px solid var(--light-border); border-bottom: 1px solid var(--light-border); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; font-weight: 800; }
.section-head p { color: var(--ink-500); font-size: 17px; line-height: 1.6; }
.section-cta { text-align: center; margin-top: 48px; }

/* ============ Services Grid ============ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.services-grid-full { grid-template-columns: repeat(4, 1fr); }
.service-card {
  position: relative; background: var(--white); border: 1px solid var(--light-border); border-radius: var(--radius-lg);
  padding: 38px 30px 32px; transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; 
  background: linear-gradient(90deg, var(--primary-red), var(--primary-gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-lg), var(--shadow-glow); 
  border-color: rgba(236, 50, 55, 0.15); 
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px; background: var(--primary-red-light); color: var(--primary-red);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: all .35s ease;
}
.service-card:hover .service-icon { background: var(--primary-red); color: var(--white); transform: scale(1.05); }
.service-icon svg { width: 30px; height: 30px; }
.service-icon-lg { width: 80px; height: 80px; border-radius: 20px; }
.service-icon-lg svg { width: 40px; height: 40px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; font-weight: 700; color: var(--ink-900); }
.service-card p { color: var(--ink-500); font-size: 15px; margin-bottom: 20px; flex-grow: 1; line-height: 1.6; }
.service-points-mini { margin-bottom: 20px; }
.service-points-mini li { display: flex; gap: 8px; font-size: 14px; color: var(--ink-700); padding: 4px 0; align-items: center; }
.service-points-mini svg { color: var(--primary-gold); flex-shrink: 0; width: 16px; height: 16px; fill: var(--primary-gold); }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; color: var(--primary-red); font-size: 14.5px; }
.service-card:hover .service-link svg { transform: translateX(4px); }
.service-link svg { transition: transform .2s ease; }

/* ============ Why / How ============ */
.why-section { background: #fafbfc; color: var(--ink-700); position: relative; overflow: hidden; border-top: 1px solid var(--light-border); border-bottom: 1px solid var(--light-border); }
.why-section::before {
  content: ''; position: absolute; top: -50%; left: -20%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(236, 50, 55, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.why-section h2, .why-section h4 { color: var(--ink-900); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-copy > p { color: var(--ink-500); margin: 20px 0 36px; max-width: 480px; font-size: 16.5px; }
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item svg { width: 28px; height: 28px; color: var(--primary-red); flex-shrink: 0; margin-top: 3px; }
.why-item p { color: var(--ink-500); font-size: 15px; margin-top: 6px; }
.why-item h4 { font-size: 18px; font-weight: 700; }

.how-steps { display: flex; flex-direction: column; gap: 24px; }

.how-step { 
  background: var(--white); 
  border: 1px solid var(--light-border); 
  border-radius: var(--radius-md); 
  padding: 28px 32px; 
  display: flex; 
  align-items: flex-start; 
  gap: 20px; 
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.how-step:hover {
  background: var(--white);
  border-color: rgba(236, 50, 55, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.how-num { 
  width: 40px; 
  height: 40px; 
  border-radius: 50%; 
  background: linear-gradient(135deg, var(--primary-red), #ff2e34); 
  color: var(--white); 
  flex-shrink: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-family: var(--font-heading); 
  font-weight: 800; 
  box-shadow: 0 4px 10px rgba(236, 50, 55, 0.2);
}
.how-step h4 { color: var(--ink-900); margin-bottom: 6px; font-size: 17px; }
.how-step p { color: var(--ink-500); font-size: 14.5px; }

.section-alt .how-steps-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.section-alt .how-step { 
  background: var(--white); 
  border-color: var(--light-border); 
  flex-direction: column; 
  box-shadow: var(--shadow-sm);
}
.section-alt .how-step:hover {
  border-color: rgba(236, 50, 55, 0.2);
  box-shadow: var(--shadow-md);
}
.section-alt .how-step h4 { color: var(--ink-900); margin-top: 8px; font-weight: 700; }
.section-alt .how-step p { color: var(--ink-500); }
.section-alt .how-num {
  background: linear-gradient(135deg, var(--primary-red), #ff2e34);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(236, 50, 55, 0.25);
}

/* ============ Gallery ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-grid-full { grid-template-columns: repeat(3, 1fr); }
.gallery-item { 
  position: relative; 
  border-radius: var(--radius-md); 
  overflow: hidden; 
  aspect-ratio: 4/3; 
  background: var(--ink-100); 
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption { 
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 20px; 
  background: linear-gradient(180deg, transparent 0%, rgba(15, 16, 18, 0.95) 80%); 
  color: var(--white); font-weight: 600; font-size: 15px; 
  transform: translateY(4px); transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.filter-pill { 
  padding: 10px 22px; border-radius: 999px; border: 1.5px solid var(--ink-300); 
  font-weight: 600; font-size: 14px; color: var(--ink-700); 
  background: var(--white); transition: all 0.3s ease;
}
.filter-pill.active, .filter-pill:hover { 
  background: var(--ink-900); 
  border-color: var(--ink-900); 
  color: var(--white); 
  transform: translateY(-1px);
}

.empty-state { text-align: center; padding: 80px 20px; color: var(--ink-500); }
.empty-icon { width: 64px; height: 64px; color: var(--ink-300); margin: 0 auto 20px; }
.empty-state h3 { color: var(--ink-900); margin-bottom: 10px; font-size: 20px; }

/* ============ Testimonials ============ */
.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { 
  background: var(--white); 
  border: 1px solid var(--light-border); 
  border-top: 4px solid var(--primary-gold); 
  border-radius: var(--radius-lg); 
  padding: 36px; 
  box-shadow: var(--shadow-sm); 
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); 
}
.testimonial-card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-lg); 
  border-top-color: var(--primary-red);
}
.quote-icon { width: 36px; height: 36px; color: var(--primary-red); opacity: 0.15; margin-bottom: 16px; }
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; color: var(--ink-300); }
.stars svg.filled { color: var(--primary-gold); fill: var(--primary-gold); }
.testimonial-card p { color: var(--ink-700); margin-bottom: 24px; font-size: 15.5px; line-height: 1.7; font-style: italic; }
.testimonial-author strong { display: block; color: var(--ink-900); font-size: 15px; font-weight: 700; }
.testimonial-author span { color: var(--ink-500); font-size: 13.5px; }

/* ============ CTA Band ============ */
/* ============ CTA Band ============ */
.cta-band { 
  background: var(--white); 
  border-top: 2px solid var(--primary-red);
  border-bottom: 1px solid var(--light-border);
  padding: 56px 0; 
}
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band h3 { color: var(--ink-900); font-size: 26px; margin-bottom: 6px; font-weight: 800; }
.cta-band h3 span { color: var(--primary-red); }
.cta-band p { color: var(--ink-500); font-size: 15px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.contact-strip { 
  position: relative;
  width: 100%;
  min-height: 520px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}
.contact-strip-grid { 
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.contact-strip-content { 
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 20px 40px rgba(0,0,0,0.05);
  padding: 48px; 
  max-width: 480px;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  pointer-events: auto;
  position: relative;
  overflow: hidden;
}
.contact-strip-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-red), var(--primary-gold));
}
.contact-strip-content h2 { margin-top: 8px; margin-bottom: 16px; font-size: 32px; color: var(--ink-900); font-weight: 800; }
.contact-strip-content p { margin-bottom: 28px; color: var(--ink-700); font-size: 15.5px; line-height: 1.6; }
.contact-strip-content .btn { align-self: flex-start; }
.contact-strip-map { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  z-index: 1; 
  background: var(--light-bg); 
}
.contact-strip-map iframe { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  border: 0; 
  display: block; 
  filter: grayscale(10%) contrast(100%); 
}


/* ============ Page Hero (inner pages) ============ */
.page-hero { 
  position: relative; 
  overflow: hidden; 
  background: linear-gradient(135deg, #f8f9fa 0%, #edf1f5 100%); 
  padding: 80px 0 72px; 
  text-align: center; 
  border-bottom: 4px solid var(--primary-gold); 
}
.page-hero::before, .page-hero::after {
  content: ''; position: absolute; top: -30%; height: 160%; width: 90px;
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0 100%); opacity: .15; filter: blur(10px);
}
.page-hero::before { right: -12px; background: var(--primary-red); }
.page-hero::after { right: 78px; width: 32px; background: var(--primary-gold); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--ink-900); font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; font-weight: 800; }
.page-hero p { color: var(--ink-700); max-width: 640px; margin: 0 auto; font-size: 16.5px; }
.page-hero .eyebrow { display: block; text-align: center; }

/* ============ About ============ */
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 64px; }
.about-copy h2 { margin-bottom: 20px; font-weight: 800; font-size: 32px; }
.about-copy p { margin-bottom: 20px; color: var(--ink-700); font-size: 16px; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.about-stats strong { display: block; font-family: var(--font-heading); font-size: 36px; color: var(--primary-red); font-weight: 800; }
.about-stats span { color: var(--ink-500); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-content: start; }
.value-card { 
  background: var(--white); 
  border-radius: var(--radius-md); 
  padding: 30px; 
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-red-light);
}
.value-card svg { width: 30px; height: 30px; color: var(--primary-red); margin-bottom: 16px; }
.value-card h4 { font-size: 18px; margin-bottom: 8px; font-weight: 700; }
.value-card p { font-size: 14px; color: var(--ink-500); line-height: 1.6; }

/* ============ Service Detail ============ */
.service-hero { text-align: left; }
.service-hero .container { text-align: left; }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; }
.service-detail-main h2 { margin: 32px 0 20px; font-weight: 800; font-size: 28px; }
.service-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.service-points li { 
  display: flex; gap: 12px; align-items: center; font-weight: 600; color: var(--ink-900); 
  padding: 16px 20px; background: var(--white); border-radius: var(--radius-md); 
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
}
.service-points svg { color: var(--primary-gold); flex-shrink: 0; fill: var(--primary-gold); }
.service-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.service-sidebar h3 { font-size: 17px; margin-bottom: 16px; font-weight: 700; }
.sidebar-service-list { border: 1px solid var(--light-border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 30px; box-shadow: var(--shadow-sm); }
.sidebar-service-list li a { display: flex; align-items: center; gap: 12px; padding: 14px 18px; font-weight: 600; font-size: 15px; border-bottom: 1px solid var(--light-border); background: var(--white); }
.sidebar-service-list li:last-child a { border-bottom: none; }
.sidebar-service-list li a:hover { background: var(--primary-red-light); color: var(--primary-red); }
.sidebar-service-list svg { color: var(--primary-red); }
.sidebar-card { background: #0c0d0f; color: var(--white); border-radius: var(--radius-md); padding: 30px; border-top: 3px solid var(--primary-gold); }
.sidebar-card svg { width: 32px; height: 32px; color: var(--primary-gold); margin-bottom: 14px; }
.sidebar-card h4 { color: var(--white); font-size: 17px; margin-bottom: 8px; font-weight: 700; }
.sidebar-card p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============ Contact Page ============ */
.contact-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--light-border); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 14px; color: var(--ink-900); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--ink-300); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 15px; color: var(--ink-900); background: #fcfcfd; transition: all 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { 
  outline: none; 
  border-color: var(--primary-red); 
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-red-light);
}
.form-group textarea { resize: vertical; }
.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 14.5px; }
.alert-success { background: rgba(255, 204, 0, 0.1); color: #b89400; border: 1px solid rgba(255, 204, 0, 0.3); }
.alert-error { background: rgba(236, 50, 55, 0.08); color: var(--primary-red); border: 1px solid rgba(236, 50, 55, 0.2); }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.info-card { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border: 1px solid var(--light-border); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); transition: all 0.3s ease; }
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(236, 50, 55, 0.15); }
.info-card svg { width: 26px; height: 26px; color: var(--primary-red); flex-shrink: 0; }
.info-card h4 { font-size: 16px; margin-bottom: 6px; font-weight: 700; color: var(--ink-900); }
.info-card a, .info-card p { font-size: 14.5px; color: var(--ink-700); }
.info-card a:hover { color: var(--primary-red); }

.map-section { position: relative; height: 460px; border-top: 4px solid var(--primary-gold); }
.map-section iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ============ Footer ============ */
.footer-accent { display: flex; height: 6px; }
.footer-accent span { flex: 1; }
.footer-accent span:nth-child(1) { background: var(--primary-red); }
.footer-accent span:nth-child(2) { background: var(--primary-gold); }
.footer-accent span:nth-child(3) { background: var(--light-border); }
.site-footer { background: #f8f9fa; color: var(--ink-700); padding: 80px 0 0; border-top: 1px solid var(--light-border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.logo-footer { margin-bottom: 20px; }
.logo-footer .logo-img { height: 64px; }
.footer-about p { font-size: 14.5px; line-height: 1.7; margin-bottom: 24px; color: var(--ink-500); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,0,0,.03); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--ink-700); transition: all 0.3s ease; border: 1px solid var(--light-border); }
.footer-social a:hover { background: var(--primary-red); border-color: var(--primary-red); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { color: var(--ink-900); font-size: 16px; margin-bottom: 22px; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: 14.5px; color: var(--ink-500); }
.footer-col ul a:hover { color: var(--primary-red); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; margin-bottom: 16px; color: var(--ink-700); }
.footer-contact svg { width: 18px; height: 18px; color: var(--primary-red); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--primary-red); }
.footer-bottom { border-top: 1px solid var(--light-border); padding: 24px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; font-size: 13.5px; flex-wrap: wrap; gap: 12px; color: var(--ink-500); }
.footer-bottom a { color: var(--primary-red); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }

.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; width: 60px; height: 60px; border-radius: 50%;
  background: var(--primary-gold); color: #0c0d0f; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3); z-index: 90; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); background: var(--primary-red); color: var(--white); box-shadow: 0 12px 30px rgba(236, 50, 55, 0.4); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .services-grid, .services-grid-full { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .about-grid, .service-detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .testimonial-track { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-alt .how-steps-4 { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-card { max-width: 480px; }
}

@media (max-width: 860px) {
  .topbar-note { display: none; }
  .main-nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 85vw); background: var(--white);
    flex-direction: column; align-items: flex-start; padding: 100px 28px 28px; gap: 8px; box-shadow: var(--shadow-lg);
    transition: right .3s ease; z-index: 200; overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav > a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--ink-100); }
  .nav-dropdown { width: 100%; }
  .dropdown-panel { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; width: 100%; padding: 0 0 0 16px; display: none; }
  .nav-dropdown.open .dropdown-panel { display: block; }
  .nav-toggle { display: block; }
  .header-call { display: none !important; }
  .services-grid, .services-grid-full, .gallery-grid, .gallery-grid-full { grid-template-columns: 1fr; }
  .about-values, .service-points, .about-stats { grid-template-columns: 1fr; }
  .section-alt .how-steps-4 { grid-template-columns: 1fr; }
  .cta-band-inner, .footer-bottom-inner { flex-direction: column; text-align: center; }
  
  /* Stacking contact strip overlay on mobile */
  .contact-strip { display: flex; flex-direction: column; min-height: auto; height: auto; }
  .contact-strip-grid { padding: 0; }
  .contact-strip-content { max-width: 100%; border-radius: 0; border: none; padding: 40px 24px; box-shadow: none; background: var(--white); }
  .contact-strip-content::after { display: none; }
  .contact-strip-map { position: relative; height: 300px; width: 100%; order: -1; }
  
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-band-actions .btn { width: 100%; }
  .trust-strip-inner { flex-direction: column; }
  .hero-badge { right: 16px; top: -14px; font-size: 11px; padding: 8px 14px; }
}

/* ============ Scroll Reveal ============ */
.reveal { opacity: 0; transform: translateY(24px) scale(0.98); transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.reveal-visible { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Modal ============ */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: rgba(9, 10, 12, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: flex; 
  align-items: center; 
  justify-content: center;
  opacity: 0; 
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 16px;
  box-sizing: border-box;
}
.modal-overlay.open {
  opacity: 1; visibility: visible;
}
.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(236, 50, 55, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transform: scale(0.96) translateY(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  font-size: 28px; line-height: 1;
  color: var(--ink-500); transition: color 0.2s ease;
  z-index: 10;
}
.modal-close:hover {
  color: var(--primary-red);
}
.modal-header {
  margin-bottom: 24px;
}
.modal-header h3 {
  font-size: 24px; font-weight: 800; margin-bottom: 6px;
}
.modal-header p {
  color: var(--ink-500); font-size: 14.5px;
}
.modal-alert {
  padding: 12px 16px; border-radius: var(--radius-sm); margin-top: 16px; font-weight: 600; font-size: 14px; text-align: center;
}

/* Modal form always single-column */
.modal-form .form-row {
  grid-template-columns: 1fr;
}
.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
  box-sizing: border-box;
  max-width: 100%;
}
.modal-card * {
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .modal-overlay {
    padding: 12px;
  }
  .modal-card {
    padding: 28px 16px 20px;
    border-radius: var(--radius-md);
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .modal-header h3 {
    font-size: 20px;
  }
  .modal-header p {
    font-size: 13px;
  }
  .modal-form .form-group input,
  .modal-form .form-group select,
  .modal-form .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
}
