/* =====================================================
   MEDIAPRINT SATU MARE — Dark premium / industrial theme
   Orange #F39200 · Black #0D0D0D · Sora + Inter
   ===================================================== */

:root {
  --orange: #f39200;
  --orange-light: #ffb347;
  --orange-dark: #d97e00;
  --bg: #0d0d0d;
  --bg-2: #121212;
  --surface: #181818;
  --surface-2: #1f1f1f;
  --surface-3: #262626;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #e9e9ea;
  --text-muted: #9a9a9e;
  --white: #ffffff;
  --glow: 0 0 40px rgba(243, 146, 0, 0.25);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.4);
  --radius: 14px;
  --radius-sm: 10px;
  --t: 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  --container-pad: 1rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}

a { color: var(--orange); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--orange-light); }
img { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 1rem; }
ul { margin: 0; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: #111;
  padding: 10px 18px;
  font-weight: 700;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #111; }

.container { padding-left: clamp(1rem, 4vw, 2rem); padding-right: clamp(1rem, 4vw, 2rem); }

/* ===== Section system ===== */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-alt { background: var(--bg-2); }
.section-surface { background: var(--surface); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 6vw, 70px); }
.section-head.left { text-align: left; margin-left: 0; }
.pre-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.pre-title::before { content: ''; width: 28px; height: 2px; background: var(--orange); display: inline-block; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin: 0 0 14px; }
.section-head p { color: var(--text-muted); margin: 0; font-size: 1.05rem; }

.divider-orange { width: 60px; height: 3px; background: var(--orange); border-radius: 3px; margin: 14px 0 22px; }
.text-orange { color: var(--orange) !important; }

/* ===== Buttons ===== */
.btn-orange, .btn-ghost, .btn-dark-solid, .btn-ghost-dark, .btn-whatsapp, .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--t);
  text-align: center;
}
.btn-orange { background: var(--orange); color: #1a1200; border-color: var(--orange); box-shadow: 0 10px 30px rgba(243, 146, 0, 0.25); }
.btn-orange:hover { background: var(--orange-light); border-color: var(--orange-light); color: #1a1200; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(243, 146, 0, 0.4); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }
.btn-dark-solid { background: #111; color: var(--white); border-color: #111; }
.btn-dark-solid:hover { background: #000; color: var(--orange); transform: translateY(-3px); }
.btn-ghost-dark { background: transparent; color: #1a1200; border-color: rgba(0, 0, 0, 0.35); }
.btn-ghost-dark:hover { background: rgba(0, 0, 0, 0.12); color: #1a1200; transform: translateY(-3px); }
.btn-whatsapp { background: #25d366; color: #06351a; border-color: #25d366; }
.btn-whatsapp:hover { background: #2ee676; color: #06351a; transform: translateY(-3px); }
.w-100 { width: 100%; }
.mb-2 { margin-bottom: 0.6rem; }

/* ===== Top bar ===== */
.top-bar {
  background: #000;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  padding: 9px 0;
}
.top-bar-info { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.top-bar-info span, .top-bar-info a { color: var(--text-muted); display: inline-flex; align-items: center; gap: 7px; }
.top-bar-info a:hover { color: var(--orange); }
.top-bar i { color: var(--orange); }
.social-icons { display: flex; gap: 8px; }
.social-icons a {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.social-icons a:hover { background: var(--orange); border-color: var(--orange); color: #1a1200; transform: translateY(-2px); }

/* ===== Navbar ===== */
.navbar-main {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  transition: padding var(--t), background var(--t);
}
.navbar-main.scrolled { padding: 8px 0; background: rgba(10, 10, 10, 0.95); }
.navbar-brand img { height: 50px; width: auto; transition: height var(--t); }
.navbar-main.scrolled .navbar-brand img { height: 42px; }
.navbar-main .nav-link {
  color: var(--text) !important;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 8px 14px !important;
  position: relative;
}
.navbar-main .nav-link::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.navbar-main .nav-link:hover, .navbar-main .nav-link.active { color: var(--orange) !important; }
.navbar-main .nav-link:hover::after, .navbar-main .nav-link.active::after { transform: scaleX(1); }
.navbar-toggler { border: 1px solid var(--line-strong); padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f39200' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-cta { padding: 10px 22px; background: var(--orange); color: #1a1200; border-color: var(--orange); text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.06em; }
.btn-cta:hover { background: var(--orange-light); border-color: var(--orange-light); color: #1a1200; transform: translateY(-2px); }
@media (max-width: 991px) {
  .navbar-collapse { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); margin-top: 14px; padding: 14px; }
  .navbar-main .nav-link::after { display: none; }
  .btn-cta { margin-top: 10px; width: 100%; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(243, 146, 0, 0.22), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(243, 146, 0, 0.10), transparent 45%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--orange); font-family: 'Sora', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem;
  border: 1px solid var(--line-strong); border-radius: 50px; padding: 7px 16px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  margin: 0 0 22px;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--orange); }
.hero-lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-muted); max-width: 620px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-badges .badge-item { display: inline-flex; align-items: center; gap: 11px; color: var(--text); font-weight: 500; font-size: 0.95rem; }
.hero-badges .badge-item i { color: var(--orange); font-size: 1.3rem; }

/* ===== Service cards (home) ===== */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  height: 100%;
  overflow: hidden;
  transition: var(--t);
}
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: width var(--t);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: var(--shadow-sm); background: var(--surface-2); }
.service-card:hover::before { width: 100%; }
.service-card .icon-box {
  width: 64px; height: 64px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--orange);
  background: rgba(243, 146, 0, 0.1);
  border: 1px solid rgba(243, 146, 0, 0.25);
  margin-bottom: 20px;
  transition: var(--t);
}
.service-card:hover .icon-box { background: var(--orange); color: #1a1200; transform: rotate(-6deg); }
.service-card h3 { font-size: 1.2rem; margin: 0 0 10px; }
.service-card p { color: var(--text-muted); font-size: 0.94rem; margin: 0 0 16px; }
.service-card .read-more { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; display: inline-flex; align-items: center; gap: 7px; }
.service-card .read-more i { transition: transform var(--t); }
.service-card:hover .read-more i { transform: translateX(5px); }

/* compact extra-services cards */
.mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mini-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px; transition: var(--t); height: 100%;
}
.mini-card:hover { border-color: rgba(243, 146, 0, 0.4); transform: translateY(-4px); }
.mini-card i { color: var(--orange); font-size: 1.3rem; margin-top: 3px; }
.mini-card h4 { font-size: 1rem; margin: 0 0 5px; }
.mini-card p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ===== Process steps ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.process-step { position: relative; text-align: center; padding: 14px; }
.process-step .step-num {
  position: absolute; top: -6px; right: 14px; font-family: 'Sora', sans-serif;
  font-weight: 800; font-size: 3.4rem; color: rgba(255, 255, 255, 0.04); line-height: 1;
}
.process-step .step-icon {
  width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  color: var(--orange); background: var(--surface); border: 1px solid var(--line-strong);
  position: relative; z-index: 1; transition: var(--t);
}
.process-step:hover .step-icon { background: var(--orange); color: #1a1200; box-shadow: var(--glow); }
.process-step h4 { font-size: 1.1rem; margin: 0 0 8px; }
.process-step p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ===== Counters / stats ===== */
.stats-band {
  background:
    linear-gradient(rgba(13,13,13,0.85), rgba(13,13,13,0.92)),
    radial-gradient(circle at 50% 0%, rgba(243,146,0,0.18), transparent 60%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-box { text-align: center; padding: 14px; }
.stat-box .stat-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--orange); line-height: 1; display: block; }
.stat-box .stat-label { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.82rem; margin-top: 8px; }

/* ===== About (home) ===== */
.about-media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.about-media img { width: 100%; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.feature-item .feature-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: rgba(243,146,0,0.1); border: 1px solid rgba(243,146,0,0.25); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.feature-item h4 { font-size: 1.05rem; margin: 0 0 4px; }
.feature-item p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }
.lead-muted { color: var(--text-muted); }

/* ===== Portfolio ===== */
.portfolio-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.portfolio-filter button {
  background: transparent; border: 1px solid var(--line-strong); color: var(--text);
  font-family: 'Sora', sans-serif; font-weight: 500; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 9px 20px; border-radius: 50px; cursor: pointer; transition: var(--t);
}
.portfolio-filter button:hover { border-color: var(--orange); color: var(--orange); }
.portfolio-filter button.active { background: var(--orange); border-color: var(--orange); color: #1a1200; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.portfolio-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 3; cursor: pointer; background: var(--surface);
  border: 1px solid var(--line); transition: opacity 0.3s, transform 0.3s;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--t); }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 20px;
  background: linear-gradient(to top, rgba(13,13,13,0.94), rgba(243,146,0,0.55));
  opacity: 0; transition: var(--t);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .icon-zoom { width: 48px; height: 48px; border: 2px solid var(--white); border-radius: 50%; color: var(--white); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; transform: translateY(14px); transition: var(--t); }
.portfolio-overlay h4 { color: var(--white); font-size: 1.1rem; margin: 0 0 4px; transform: translateY(14px); transition: var(--t) 0.05s; }
.portfolio-overlay span { color: #ffe; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; transform: translateY(14px); transition: var(--t) 0.1s; }
.portfolio-item:hover .portfolio-overlay .icon-zoom,
.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay span { transform: translateY(0); }

/* Lightbox */
.lb-overlay { display: none; position: fixed; inset: 0; z-index: 3000; background: rgba(5,5,5,0.95); align-items: center; justify-content: center; padding: 30px; }
.lb-overlay.open { display: flex; }
.lb-overlay img { max-width: 92%; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow); border: 1px solid var(--line-strong); }
.lb-close { position: absolute; top: 18px; right: 26px; background: transparent; border: none; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }
.lb-close:hover { color: var(--orange); }

/* ===== Testimonials ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--orange); border-radius: var(--radius); padding: 32px 28px; position: relative; height: 100%; }
.testimonial-card .quote-icon { position: absolute; top: -22px; right: 26px; width: 46px; height: 46px; background: var(--orange); color: #1a1200; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.testimonial-card .stars { color: var(--orange); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card .text { color: var(--text); font-style: italic; margin-bottom: 22px; }
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author-avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(243,146,0,0.12); border: 1px solid rgba(243,146,0,0.3); color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; }
.testimonial-card .author-info h5 { margin: 0; font-size: 0.98rem; }
.testimonial-card .author-info span { color: var(--text-muted); font-size: 0.84rem; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); margin-bottom: 14px; overflow: hidden; transition: border-color var(--t); }
.faq-item.open { border-color: rgba(243,146,0,0.4); }
.faq-q { width: 100%; text-align: left; background: transparent; border: none; color: var(--white); font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.05rem; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; }
.faq-q i { color: var(--orange); transition: transform var(--t); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--text-muted); }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%); position: relative; overflow: hidden; padding: clamp(48px, 7vw, 84px) 0; }
.cta-band::before { content: ''; position: absolute; top: -40%; right: -8%; width: 460px; height: 460px; border-radius: 50%; background: rgba(255,255,255,0.1); }
.cta-band::after { content: ''; position: absolute; bottom: -45%; left: -6%; width: 460px; height: 460px; border-radius: 50%; background: rgba(0,0,0,0.08); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-copy h2 { color: #1a1200; font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0 0 8px; }
.cta-copy p { color: rgba(26,18,0,0.85); margin: 0; font-size: 1.05rem; max-width: 620px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ===== Page header (subpages) ===== */
.page-header { position: relative; padding: clamp(70px, 9vw, 110px) 0 clamp(40px, 6vw, 64px); text-align: center; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(243,146,0,0.18), transparent 60%); }
.page-header::after { content: ''; position: absolute; inset: 0; opacity: 0.4; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 56px 56px; -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 70%); mask-image: radial-gradient(circle at 50% 30%, #000, transparent 70%); }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 14px 0 10px; }
.page-header-sub { color: var(--text-muted); max-width: 620px; margin: 0 auto; }
.breadcrumb-custom { display: flex; justify-content: center; flex-wrap: wrap; gap: 0; list-style: none; padding: 0; margin: 0; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.breadcrumb-custom li { color: var(--text-muted); }
.breadcrumb-custom li a { color: var(--orange); }
.breadcrumb-custom li:not(:last-child)::after { content: '/'; margin: 0 10px; color: var(--line-strong); }

/* ===== Service page ===== */
.service-hero { margin: 0 0 28px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.service-hero img { width: 100%; }
.service-content h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 0 0 6px; }
.service-content h3 { font-size: 1.25rem; color: var(--orange); margin: 32px 0 14px; }
.service-content p { color: var(--text-muted); }
.service-list { list-style: none; padding: 0; }
.service-list li { position: relative; padding: 11px 0 11px 38px; border-bottom: 1px solid var(--line); color: var(--text); }
.service-list li:last-child { border-bottom: none; }
.service-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 12px; width: 24px; height: 24px; background: rgba(243,146,0,0.12); border: 1px solid rgba(243,146,0,0.3); color: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.service-list li strong { color: var(--white); }
.service-gallery-img { border-radius: var(--radius-sm); border: 1px solid var(--line); width: 100%; }

.service-sidebar { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; margin-bottom: 22px; }
.service-sidebar h4 { font-size: 1.1rem; margin: 0 0 18px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); display: inline-block; }
.service-nav-list { list-style: none; padding: 0; margin: 0; }
.service-nav-list li { margin-bottom: 8px; }
.service-nav-list a { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 16px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--text); font-weight: 500; font-size: 0.92rem; transition: var(--t); }
.service-nav-list a span { display: inline-flex; align-items: center; gap: 10px; }
.service-nav-list a span i { color: var(--orange); width: 18px; text-align: center; }
.service-nav-list a:hover, .service-nav-list a.active { background: var(--orange); border-color: var(--orange); color: #1a1200; transform: translateX(4px); }
.service-nav-list a:hover span i, .service-nav-list a.active span i { color: #1a1200; }
.service-nav-list a .fa-chevron-right { font-size: 0.7rem; }
.sidebar-cta { background: linear-gradient(160deg, var(--surface-2), var(--bg)); border-color: var(--line-strong); }
.sidebar-cta p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== Contact ===== */
.contact-card { background: var(--surface); border: 1px solid var(--line); border-bottom: 3px solid var(--orange); border-radius: var(--radius); padding: 32px 24px; text-align: center; height: 100%; transition: var(--t); }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.contact-card .icon-circle { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: rgba(243,146,0,0.1); border: 1px solid rgba(243,146,0,0.3); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.contact-card h4 { font-size: 1.1rem; margin: 0 0 10px; }
.contact-card a, .contact-card p { color: var(--text-muted); font-size: 0.95rem; margin: 2px 0; }
.contact-card a:hover { color: var(--orange); }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 42px); }
.contact-form h3 { font-size: 1.5rem; margin: 0 0 8px; }
.form-label { font-family: 'Sora', sans-serif; font-weight: 500; color: var(--text); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.form-label .req { color: var(--orange); }
.form-control, .form-select {
  background: var(--bg-2); border: 1px solid var(--line-strong); color: var(--text);
  border-radius: var(--radius-sm); padding: 13px 16px; font-size: 0.95rem;
}
.form-control::placeholder { color: #6a6a6e; }
.form-control:focus, .form-select:focus { background: var(--bg-2); color: var(--text); border-color: var(--orange); box-shadow: 0 0 0 3px rgba(243,146,0,0.18); }
.form-select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23f39200' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); }
.form-select option { background: var(--surface); color: var(--text); }
.form-check-input { background-color: var(--bg-2); border-color: var(--line-strong); }
.form-check-input:checked { background-color: var(--orange); border-color: var(--orange); }
.form-check-label { color: var(--text-muted); font-size: 0.9rem; }

.info-panel h3 { font-size: 1.4rem; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 14px 18px; background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: var(--radius-sm); margin-bottom: 10px; }
.hours-list li span:first-child { color: var(--text); font-weight: 500; }
.hours-list li span:last-child { color: var(--text-muted); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; border: 0; display: block; filter: grayscale(0.4) invert(0.9) hue-rotate(180deg) contrast(0.9); }

/* ===== Prose (legal pages) ===== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin: 34px 0 12px; color: var(--white); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-muted); }
.prose ul { padding-left: 22px; margin-bottom: 1rem; }
.prose a { color: var(--orange); }

/* ===== Footer ===== */
.site-footer { background: #080808; border-top: 1px solid var(--line); padding: clamp(50px, 7vw, 80px) 0 0; }
.footer-logo { height: 50px; width: auto; margin-bottom: 18px; }
.site-footer p { color: var(--text-muted); font-size: 0.92rem; }
.site-footer h5 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 22px; position: relative; padding-bottom: 12px; }
.site-footer h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--orange); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--text-muted); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 8px; transition: var(--t); }
.footer-links a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--orange); }
.footer-links a:hover { color: var(--orange); transform: translateX(4px); }
.footer-contact p { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact i { color: var(--orange); margin-top: 5px; }
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--orange); }
.social-footer { display: flex; gap: 10px; margin-top: 18px; }
.social-footer a { width: 38px; height: 38px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); color: var(--text); display: inline-flex; align-items: center; justify-content: center; }
.social-footer a:hover { background: var(--orange); border-color: var(--orange); color: #1a1200; transform: translateY(-3px); }
.footer-bottom { margin-top: 50px; padding: 22px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: #6a6a6e; font-size: 0.86rem; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--orange); }

/* ===== Floating actions ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; z-index: 999; box-shadow: 0 8px 26px rgba(37,211,102,0.45); animation: wa-pulse 2.4s infinite; }
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 8px 26px rgba(37,211,102,0.45); } 50% { box-shadow: 0 8px 38px rgba(37,211,102,0.85); } }
.scroll-top { position: fixed; bottom: 92px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: #1a1200; border: none; display: none; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; z-index: 999; transition: var(--t); }
.scroll-top:hover { background: var(--orange-light); transform: translateY(-3px); }
.scroll-top.show { display: flex; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .whatsapp-float { animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575px) {
  .cards-grid, .mini-grid, .process-grid, .stats-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .top-bar-info { gap: 12px; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; bottom: 16px; right: 16px; }
  .scroll-top { bottom: 78px; right: 16px; width: 42px; height: 42px; }
  .footer-bottom { flex-direction: column; }
}
