@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=Roboto+Slab:wght@300;400;500;700&display=swap');

:root {
  --red: #ed1b24;
  --red-dark: #c4121a;
  --white: #ffffff;
  --black: #000000;
  --text: #555555;
  --heading: #000000;
  --light: #fafafa;
  --border: #e5e5e5;
  --overlay: #151515;
  --footer-bar: #000000;
  --radius-pill: 70px;
  --radius-card: 15px;
  --shadow: 0 7px 16px rgba(50, 50, 50, 0.2);
  --shadow-form: 0 40px 80px -40px rgba(0, 0, 0, 0.85);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  margin: 0 0 15px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

p {
  font-size: 14px;
  color: var(--text);
  line-height: 28px;
  font-weight: 300;
  margin: 0 0 16px;
}

a {
  color: var(--heading);
  text-decoration: none;
  transition: 0.4s;
}

a:hover {
  color: var(--red);
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col {
  padding: 0 15px;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }
.col-8 { width: 66.666%; }
.col-5 { width: 41.666%; }
.col-7 { width: 58.333%; }

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.bg-light {
  background: var(--light);
}

.bg-white {
  background: var(--white);
}

.text-center {
  text-align: center;
}

.section-kicker {
  display: inline-block;
  color: var(--red);
  font-family: 'Roboto Slab', serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2,
.section-title {
  font-size: 32px;
  text-transform: none;
  margin-bottom: 18px;
}

.section-head p,
.lead {
  font-size: 15px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-transform: capitalize;
  padding: 13px 32px;
  border: 1px solid var(--red);
  border-radius: var(--radius-pill);
  font-family: 'Roboto Slab', serif;
  cursor: pointer;
  background: var(--red);
  color: var(--white);
  text-align: center;
  transition: 0.4s;
}

.btn:hover {
  border: 1px dashed var(--red) !important;
  background: transparent;
  color: var(--red);
}

.btn-block {
  width: 100%;
  display: block;
}

.btn-lg {
  padding: 16px 42px;
  font-size: 17px;
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border: 1px dashed var(--white) !important;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-top: 5px solid var(--red);
  background: transparent;
  transition: 0.4s;
}

.site-header.scrolled,
.site-header.inner-header {
  background: rgba(21, 21, 21, 0.96);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo img,
.logo svg {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

.logo-text {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}

.logo-text small {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 400;
  opacity: 0.85;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 12px;
  letter-spacing: 0.4px;
  font-family: 'Roboto', sans-serif;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: #000 url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?auto=format&fit=crop&w=1920&q=80') center / cover no-repeat;
  padding: 180px 0 120px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #151515;
  opacity: 0.52;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  color: var(--white);
  font-size: 52px;
  font-weight: 700;
  margin: 0 0 18px;
  line-height: 1.15;
}

.hero .hero-copy {
  color: var(--white);
  font-size: 16px;
  line-height: 28px;
  max-width: 520px;
  margin-bottom: 28px;
}

.intro-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.intro-box {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--white);
  backdrop-filter: blur(4px);
}

.intro-box .ico {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--white);
  color: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.intro-box h4 {
  color: var(--white);
  font-size: 14px;
  margin: 0 0 4px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.intro-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  line-height: 18px;
  margin: 0;
}

.intro-form {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 36px 36px;
  box-shadow: var(--shadow-form);
}

.intro-form h3 {
  font-size: 22px;
  text-align: center;
  margin: 0 0 22px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.form-control,
select.form-control,
textarea.form-control {
  display: block;
  width: 100%;
  appearance: none;
  font-size: 15px;
  padding: 0 22px;
  height: 48px;
  color: #222;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: 'Roboto', sans-serif;
  outline: none;
  transition: 0.3s;
}

textarea.form-control {
  height: auto;
  min-height: 110px;
  padding: 14px 22px;
  border-radius: 18px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--red);
}

.form-error {
  color: var(--red);
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.form-group.invalid .form-error {
  display: block;
}

.form-group.invalid .form-control {
  border-color: var(--red);
}

.form-note {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.form-note.success {
  display: block;
  background: #e8f7ee;
  color: #146c2e;
}

.form-note.error {
  display: block;
  background: #fdecec;
  color: var(--red);
}

.form-note.info {
  display: block;
  background: #f4f4f4;
  color: #333;
}

/* STATS */
.stats {
  background: var(--red);
  padding: 55px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  color: var(--white);
}

.stat-item i,
.stat-item .stat-ico {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.stat-item h3 {
  color: var(--white);
  font-size: 42px;
  margin: 0 0 6px;
  font-weight: 700;
}

.stat-item p {
  color: var(--white);
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 400;
}

/* FEATURES SPLIT */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-split:last-child {
  margin-bottom: 0;
}

.feature-split.reverse {
  direction: rtl;
}

.feature-split.reverse > * {
  direction: ltr;
}

.feature-photo {
  border-radius: 8px;
  overflow: hidden;
  min-height: 360px;
}

.feature-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--text);
  font-size: 15px;
  line-height: 24px;
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--red);
  position: absolute;
  left: 0;
  top: 8px;
}

.motto {
  background: var(--red);
  padding: 55px 0;
  text-align: center;
}

.motto h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 12px;
}

.motto p {
  color: var(--white);
  font-size: 16px;
  max-width: 780px;
  margin: 0 auto;
  opacity: 0.95;
}

/* SERVICES GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 20px;
}

.service-box {
  text-align: center;
  padding: 20px 10px 10px;
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-6px);
}

.service-box .ico-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 18px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 32px;
}

.service-box h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0 0 12px;
}

.service-box p {
  font-size: 14px;
  padding: 0 8px;
}

.service-box .price {
  color: var(--red);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 18px;
  margin: 8px 0 12px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card .price {
  color: var(--red);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 22px;
  margin: 8px 0 14px;
}

/* TESTIMONIALS */
.reviews-section .quote-ico {
  color: var(--red);
  font-size: 64px;
  margin-bottom: 18px;
}

.review-slide {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.review-slide p {
  font-size: 20px;
  line-height: 34px;
  font-style: italic;
  color: #333;
}

.review-slide .author {
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  margin-top: 10px;
}

.review-slide .role {
  color: #888;
  font-size: 13px;
}

.review-nav {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.review-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--red);
  cursor: pointer;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.review-card .stars {
  color: var(--red);
  margin-bottom: 12px;
}

.review-card h4 {
  font-size: 16px;
  margin: 16px 0 4px;
  color: var(--red);
}

/* CTA BAND */
.cta-band {
  background: #6b6b6b;
  padding: 28px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-band h3 {
  color: var(--white);
  font-size: 22px;
  margin: 0;
  font-weight: 500;
}

.promo {
  text-align: center;
  padding: 90px 0;
}

.promo h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.promo p {
  font-size: 16px;
  margin-bottom: 28px;
}

/* PAGE BANNER */
.page-banner {
  position: relative;
  background: #000 url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1800&q=80') center / cover no-repeat;
  padding: 160px 0 80px;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #151515;
  opacity: 0.62;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 10px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb a:hover {
  color: var(--red);
}

/* ABOUT */
.about-story p {
  font-size: 15px;
  line-height: 28px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.value-card i {
  color: var(--red);
  font-size: 36px;
  margin-bottom: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.team-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.team-card span {
  color: var(--red);
  font-size: 13px;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 52px 18px 20px;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 22px;
}

.faq-item.open button::after {
  content: '–';
}

.faq-item .faq-body {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.open .faq-body {
  display: block;
}

/* PRODUCT DETAIL */
.product-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}

.product-gallery img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

.product-meta .badge {
  display: inline-block;
  background: #fdecec;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.product-price {
  font-family: 'Roboto Slab', serif;
  font-size: 36px;
  color: var(--red);
  font-weight: 700;
  margin: 10px 0 18px;
}

.product-price small {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
  margin-left: 6px;
}

.product-tabs {
  margin-top: 50px;
}

.tab-nav {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.tab-nav button {
  background: none;
  border: none;
  padding: 12px 18px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
  border-bottom: 3px solid transparent;
}

.tab-nav button.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* LEGAL */
.legal-content h2 {
  font-size: 24px;
  margin: 32px 0 12px;
}

.legal-content h3 {
  font-size: 18px;
  margin: 24px 0 10px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 28px;
  color: var(--text);
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 18px 22px;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 8px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--light);
  border-radius: var(--radius-card);
  padding: 28px;
}

.contact-card i {
  color: var(--red);
  font-size: 28px;
  margin-bottom: 10px;
}

/* FOOTER */
.site-footer {
  background: var(--light);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
}

.footer-brand .logo-text {
  color: var(--heading);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 26px;
}

.site-footer h5 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.site-footer .footer-links a {
  display: block;
  font-size: 14px;
  color: var(--text);
  padding: 5px 0;
}

.site-footer .footer-links a:hover {
  color: var(--red);
  padding-left: 4px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.social-links a:hover {
  background: var(--heading);
  color: var(--white);
}

.footer-copy {
  background: var(--footer-bar);
  padding: 18px 0;
  text-align: center;
}

.footer-copy p,
.footer-copy a {
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0;
}

.footer-copy a {
  margin: 0 8px;
}

.footer-copy a:hover {
  color: var(--red);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.checkbox-row input {
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .col-3, .col-4, .col-5, .col-6, .col-7, .col-8 { width: 100%; }
  .hero-grid,
  .feature-split,
  .feature-split.reverse,
  .product-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .stats-grid,
  .service-grid,
  .value-grid,
  .team-grid,
  .review-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: #151515;
    flex-direction: column;
    padding: 16px 0 24px;
    align-items: stretch;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hero { padding: 140px 0 70px; min-height: auto; }
  .hero h1 { font-size: 36px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .page-banner h1 { font-size: 32px; }
}

@media (max-width: 575px) {
  .stats-grid,
  .service-grid,
  .value-grid,
  .team-grid,
  .review-grid,
  .related-grid,
  .intro-boxes {
    grid-template-columns: 1fr;
  }
  .logo-text { font-size: 13px; letter-spacing: 1px; }
  .hero h1 { font-size: 28px; }
  .section { padding: 70px 0; }
  .promo h2 { font-size: 26px; }
}
