@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* ── LUCIDE ICONS ── */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
}
.hero-badge [data-lucide],
.badge [data-lucide] {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}
.card-icon [data-lucide] {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  color: var(--primary);
}
.contact-item-icon [data-lucide] {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
  color: var(--primary);
}
.visual-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(201, 32, 28, 0.12);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.visual-icon [data-lucide] {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
  color: var(--primary);
}

:root {
  --primary: #c9201c;
  --primary-dark: #a31916;
  --dark: #111827;
  --dark-2: #1f2937;
  --text: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --off-white: #f9fafb;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.14);
  --radius: 8px;
  --radius-lg: 16px;
  --nav-height: 78px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 28px;
  transition: box-shadow var(--transition);
}
nav.scrolled {
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.logo-svg {
  height: 42px;
  width: auto;
}
.logo-wordmark {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--primary);
  letter-spacing: 3px;
}
.logo-footer-img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: rgba(201, 32, 28, 0.07);
}
.nav-cta a {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
}
.nav-cta a:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 32, 28, 0.3);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  padding-left: 28px;
  padding-right: 28px;
  background-image: url("../assets/hero_main.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 14, 26, 0.92) 45%,
    rgba(10, 14, 26, 0.7) 100%
  );
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 32, 28, 0.12);
  border: 1px solid rgba(201, 32, 28, 0.3);
  color: #fca5a5;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 78px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 740px;
}
.hero h1 em {
  color: var(--primary);
  font-style: normal;
}
.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-height) + 80px) 28px 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/hero_sub.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 26, 0.88) 0%,
    rgba(10, 14, 26, 0.78) 100%
  );
}
.page-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 32, 28, 0.12);
  border: 1px solid rgba(201, 32, 28, 0.3);
  color: #fca5a5;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: "Inter", sans-serif;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 32, 28, 0.32);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* ── SECTIONS ── */
.section {
  padding: 96px 28px;
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-alt {
  background: var(--off-white);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-dark .section-header h2 {
  color: var(--white);
}
.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.58);
}

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(201, 32, 28, 0.2);
}
.section-dark .card {
  background: var(--dark-2);
  border-color: rgba(255, 255, 255, 0.07);
}
.section-dark .card:hover {
  border-color: rgba(201, 32, 28, 0.4);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 32, 28, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text);
}
.section-dark .card h3 {
  color: var(--white);
}
.card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.72;
}
.section-dark .card p {
  color: rgba(255, 255, 255, 0.58);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  transition: gap var(--transition);
}
.card-link:hover {
  gap: 10px;
}
.card-link svg {
  width: 16px;
  height: 16px;
}

/* ── SERVICE LIST ── */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.service-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(201, 32, 28, 0.08);
}
.section-dark .service-item {
  background: var(--dark-2);
  border-color: rgba(255, 255, 255, 0.07);
}
.section-dark .service-item:hover {
  border-color: rgba(201, 32, 28, 0.5);
}
.service-check {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: rgba(201, 32, 28, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  margin-top: 1px;
}
.service-check svg {
  width: 15px;
  height: 15px;
}
.item-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}
.section-dark .item-title {
  color: var(--white);
}
.item-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
.section-dark .item-desc {
  color: rgba(255, 255, 255, 0.55);
}

/* ── TWO COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.two-col-text h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 18px;
  line-height: 1.2;
}
.two-col-text p {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.78;
  margin-bottom: 14px;
}
.section-dark .two-col-text h2 {
  color: var(--white);
}
.section-dark .two-col-text p {
  color: rgba(255, 255, 255, 0.62);
}

/* ── VISUAL BOX ── */
.visual-box {
  background: linear-gradient(135deg, var(--dark-2) 0%, #0d1117 100%);
  border: 1px solid rgba(201, 32, 28, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.visual-stat {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 20px;
}
.visual-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.visual-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.visual-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ── CTA BOX ── */
.cta-box {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
}
.cta-box h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 14px;
}
.cta-box p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-box .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-box .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}
.section-dark .step-card h3 {
  color: var(--white);
}
.section-dark .step-card p {
  color: rgba(255, 255, 255, 0.55);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-size: 36px;
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: 15.5px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.75;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  margin-bottom: 12px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 32, 28, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ci-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.ci-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14.5px;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 32, 28, 0.07);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 28px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover {
  color: var(--primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}
.d1 {
  animation-delay: 0.1s;
}
.d2 {
  animation-delay: 0.2s;
}
.d3 {
  animation-delay: 0.3s;
}
.d4 {
  animation-delay: 0.4s;
}
.d5 {
  animation-delay: 0.5s;
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback: if JS hasn't run yet, still show content */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 12px 16px;
    text-align: left;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 72px 20px;
  }
  .cta-box {
    padding: 48px 28px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── COOKIE NOTICE ── */
#cookie-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--dark);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.35);
  animation: slideUpCookie 0.4s ease forwards;
}
@keyframes slideUpCookie {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
#cookie-notice p {
  flex: 1;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0;
}
#cookie-notice a {
  color: var(--primary);
  text-decoration: underline;
}
#cookie-notice a:hover {
  color: #e84a47;
}
#cookie-accept {
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: background var(--transition);
  white-space: nowrap;
}
#cookie-accept:hover {
  background: var(--primary-dark);
}
#cookie-notice.hidden {
  display: none;
}

/* ── PRIVACY PAGE ── */
.privacy-block {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.privacy-block:last-child {
  border-bottom: none;
}
.privacy-block h2 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text);
}
.privacy-block p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}
.privacy-block p:last-child {
  margin-bottom: 0;
}
.privacy-block ul {
  margin: 10px 0 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.privacy-block ul li {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}
.privacy-block a {
  color: var(--primary);
}
.privacy-block a:hover {
  text-decoration: underline;
}
