@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --red:     #cc0000;
  --red-dark:#a30000;
  --black:   #111111;
  --grey-dark: #333333;
  --grey:    #666666;
  --grey-light: #f4f4f4;
  --border:  #e2e2e2;
  --white:   #ffffff;
  --shadow:  0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 6px 28px rgba(0,0,0,0.13);
}

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #f0f0f0;
  color: var(--black);
  line-height: 1.65;
  font-size: 16px;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
nav {
  background: var(--red);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.nav-logo {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-logo span {
  font-weight: 400;
  opacity: 0.8;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

nav ul li a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* ═══════════════════════════════════════
   PAGE WRAPPER
═══════════════════════════════════════ */
.page-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ═══════════════════════════════════════
   HERO BANNER
═══════════════════════════════════════ */
.hero-banner {
  background: var(--red);
  border-radius: 8px;
  padding: 4rem 3rem;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.hero-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.hero-banner h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.hero-banner p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   PAGE HEADER BANNER (inner pages)
═══════════════════════════════════════ */
.page-banner {
  background: var(--red);
  border-radius: 8px;
  padding: 2.75rem 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.page-banner h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.page-banner p {
  opacity: 0.88;
  font-size: 1.05rem;
  max-width: 600px;
}

/* ═══════════════════════════════════════
   CONTENT BOXES / PANELS
═══════════════════════════════════════ */
.box {
  background: var(--white);
  border-radius: 8px;
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.box-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--black);
}

.box-rule {
  width: 48px;
  height: 4px;
  background: var(--red);
  border: none;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.box p {
  color: var(--grey-dark);
  margin-bottom: 0.9rem;
}

.box p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════
   CARDS GRID
═══════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
  transition: transform 0.18s, box-shadow 0.18s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
}

.card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.9rem;
  color: var(--grey-dark);
  line-height: 1.55;
}

/* ═══════════════════════════════════════
   RED HIGHLIGHT BOX
═══════════════════════════════════════ */
.box-red {
  background: var(--red);
  border-radius: 8px;
  padding: 2.5rem 2.5rem;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.box-red h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.box-red p {
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 0.5rem;
  font-size: 0.98rem;
}

/* ═══════════════════════════════════════
   CTA BOX
═══════════════════════════════════════ */
.box-cta {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.box-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.box-cta p {
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-white:hover {
  background: #f0f0f0;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

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

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

/* ═══════════════════════════════════════
   SERVICE ITEMS (services page)
═══════════════════════════════════════ */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-item {
  background: var(--grey-light);
  border-left: 5px solid var(--red);
  border-radius: 0 6px 6px 0;
  padding: 1.4rem 1.6rem;
  transition: background 0.15s;
}

.service-item:hover {
  background: #ebebeb;
}

.service-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.4rem;
}

.service-item p {
  font-size: 0.93rem;
  color: var(--grey-dark);
}

/* ═══════════════════════════════════════
   ABOUT PAGE — TWO COLUMN
═══════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
}

.facts-box {
  background: var(--grey-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  border-top: 4px solid var(--red);
}

.facts-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.facts-box ul {
  list-style: none;
}

.facts-box ul li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--grey-dark);
}

.facts-box ul li:last-child { border-bottom: none; }

.facts-box ul li strong {
  color: var(--black);
  font-weight: 600;
  display: inline-block;
  min-width: 110px;
}

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-detail {
  margin-bottom: 1.25rem;
}

.contact-detail .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red);
  margin-bottom: 0.2rem;
}

.contact-detail .value {
  font-size: 1rem;
  color: var(--grey-dark);
}

.contact-detail a {
  color: var(--red);
  text-decoration: none;
}

.contact-detail a:hover { text-decoration: underline; }

/* Form */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--grey);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.18s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--black);
  color: #888;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
  margin-top: 2rem;
}

footer strong { color: var(--white); }

footer a {
  color: var(--red);
  text-decoration: none;
}

footer a:hover { text-decoration: underline; }

footer .footer-links {
  margin-top: 0.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 640px) {
  .hero-banner h1 { font-size: 2rem; }
  .hero-banner { padding: 3rem 1.75rem; }
  .box, .box-red, .box-cta { padding: 1.75rem 1.5rem; }
  nav { padding: 0 1.25rem; }
  nav ul { gap: 0; }
  nav ul li a { padding: 0.4rem 0.6rem; font-size: 0.85rem; }
  .page-wrapper { padding: 1.5rem 1rem 3rem; }
}
