* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --red: #e31e24;
  --dark-red: #b71c1c;
  --white: #ffffff;
  --light: #fff5f5;
  --gray: #f8f8f8;
  --text: #222222;
  --muted: #666666;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(227,30,36,0.10);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 70px;
}
.nav-logo img { height: 70px; object-fit: contain; background: transparent; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text);
  font-weight: 500; font-size: 0.97rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red); color: var(--white);
  border: none; padding: 10px 24px;
  border-radius: 25px; font-weight: 600;
  cursor: pointer; font-size: 0.95rem;
  transition: background 0.2s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--dark-red); }

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #fff 55%, #fff0f0 100%);
  display: flex; align-items: center;
  padding: 100px 6% 60px;
  gap: 60px;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-block;
  background: #fdecea; color: var(--red);
  padding: 6px 18px; border-radius: 20px;
  font-size: 0.85rem; font-weight: 600;
  margin-bottom: 20px; letter-spacing: 1px;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-text h1 span { color: var(--red); }
.hero-text p {
  font-size: 1.15rem; color: var(--muted);
  line-height: 1.7; margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 14px 32px; border-radius: 30px;
  text-decoration: none; font-weight: 700;
  font-size: 1rem; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--dark-red); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--red); color: var(--red);
  padding: 12px 30px; border-radius: 30px;
  text-decoration: none; font-weight: 700;
  font-size: 1rem; transition: all 0.2s;
}
.btn-outline:hover { background: var(--red); color: var(--white); }
.hero-img { flex: 1; display: flex; justify-content: center; }
.hero-img img {
  max-width: 600px; width: 100%;
  filter: drop-shadow(0 20px 60px rgba(227,30,36,0.18));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}



/* SECTIONS */
section { padding: 90px 6%; }
.section-tag {
  display: inline-block;
  background: #fdecea; color: var(--red);
  padding: 5px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 580px; }

/* SERVICES */
.services { background: var(--gray); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  justify-items: center;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
  width: 100%;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
  transform: scaleY(0);
  transition: transform 0.25s;
  transform-origin: bottom;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(227,30,36,0.12); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 60px; height: 60px;
  background: #fdecea; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* ABOUT */
.about { background: var(--white); }
.about-inner {
  display: flex; gap: 80px; align-items: center; flex-wrap: wrap;
}
.about-img { flex: 1; min-width: 280px; }
.about-logo-wrap {
  background: linear-gradient(135deg, #fff0f0, #fff);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(227,30,36,0.10);
}
.about-logo-wrap img { max-width: 260px; width: 100%; }
.about-text { flex: 1.2; min-width: 280px; }
.about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 20px; font-size: 1.02rem; }
.features-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.features-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.97rem; font-weight: 500;
}
.features-list li::before {
  content: '✓';
  background: var(--red); color: white;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
  flex-shrink: 0;
}

/* PROCESS */
.process { background: var(--light); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header .section-sub { margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.step {
  text-align: center; padding: 36px 24px;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  background: var(--red); color: white;
  border-radius: 50%; font-size: 1.3rem;
  font-weight: 800; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* PRIVACY PAGE */
.privacy-page {
  background: var(--gray);
  min-height: 100vh;
  padding: 120px 6% 80px;
}
.privacy-page-inner { max-width: 820px; margin: 0 auto; }
.privacy-updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; }
.privacy-block {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-left: 4px solid var(--red);
}
.privacy-block h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.privacy-block p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.privacy-block p strong { color: var(--text); }
.privacy-contact-box {
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 36px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border: 1px solid #f0f0f0;
}
.privacy-contact-box h4 {
  font-size: 1.1rem; font-weight: 800;
  color: var(--text); margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fdecea;
}
.privacy-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.privacy-contact-tile {
  display: flex; align-items: center; gap: 14px;
  background: var(--gray);
  border-radius: 12px; padding: 18px 20px;
  text-decoration: none; color: var(--text);
  border: 1px solid #ececec;
  transition: box-shadow 0.2s, transform 0.2s;
}
.privacy-contact-tile:hover { box-shadow: 0 6px 20px rgba(227,30,36,0.10); transform: translateY(-2px); }
.pct-icon { font-size: 1.8rem; flex-shrink: 0; }
.privacy-contact-tile strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.privacy-contact-tile span { font-size: 0.85rem; color: var(--red); }
.pct-logo { display: flex; align-items: center; justify-content: center; width: 100%; }
.pct-logo img { height: 52px; object-fit: contain; }
@media (max-width: 540px) { .privacy-contact-cards { grid-template-columns: 1fr; } }
.privacy-back { display: inline-block; margin-top: 4px; }

/* CONTACT */
.contact { background: var(--white); }

/* FOOTER */
footer {
  background: #111; color: #aaa;
  padding: 0 0 0 0;
}
.footer-contact {
  background: var(--red);
  padding: 60px 6%;
  text-align: center;
}
.footer-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2); color: var(--white);
  padding: 5px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-contact h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--white);
  margin-bottom: 10px;
}
.footer-contact h3 span { color: #ffd0d0; }
.footer-contact > p { color: rgba(255,255,255,0.85); margin-bottom: 36px; font-size: 1rem; }
.footer-contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.footer-contact-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px; padding: 20px 22px;
  display: flex; gap: 14px; align-items: center;
  text-decoration: none; color: var(--white);
  transition: background 0.2s, transform 0.2s;
  text-align: left;
}
.footer-contact-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px); }
.footer-contact-card > span { font-size: 1.8rem; flex-shrink: 0; }
.footer-contact-card strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.footer-contact-card em { font-style: normal; font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.footer-inner {
  display: flex; gap: 50px; flex-wrap: wrap;
  padding: 50px 6% 36px;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 0;
}
.footer-brand { flex: 1.5; min-width: 220px; }
.footer-brand img {
  height: 80px; margin-bottom: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 16px;
  object-fit: contain;
}
.footer-brand p { font-size: 0.93rem; line-height: 1.7; color: #ccc; }
.footer-col { flex: 1; min-width: 140px; }
.footer-col h4 { color: var(--white); font-size: 0.97rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: #aaa; text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--red); }
.footer-bottom { text-align: center; font-size: 0.87rem; padding: 24px 6%; }
.footer-bottom span { color: var(--red); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 100px 5% 50px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-text p { margin: 0 auto 36px; }
  .hero-img img { max-width: 280px; }
  .about-inner, .contact-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 70px 5%; }
}
