/* =============================================
   Danny's Driving School — Modern Stylesheet
   Colour: Red (#CC0000) + White + Dark
   ============================================= */

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

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

a { color: #CC0000; text-decoration: none; }
a:hover { text-decoration: underline; }

ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(180, 0, 0, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

nav ul li a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  letter-spacing: 0.2px;
}

nav ul li a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
}

nav ul li a.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

nav ul li a.nav-cta {
  background: #fff;
  color: #CC0000;
  font-weight: 700;
  padding: 8px 18px;
}

nav ul li a.nav-cta:hover {
  background: #f0f0f0;
  color: #aa0000;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #1a0000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(140,0,0,0.55) 0%,
    rgba(80,0,0,0.75) 60%,
    rgba(20,0,0,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 40px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero h1 span {
  color: #ff6666;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
}

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

.hero-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  transition: all 0.22s ease;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.2px;
}

.btn-white {
  background: #fff;
  color: #CC0000;
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  text-decoration: none;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-red {
  background: #CC0000;
  color: #fff;
  border-color: #CC0000;
  box-shadow: 0 4px 16px rgba(204,0,0,0.35);
}

.btn-red:hover {
  background: #aa0000;
  border-color: #aa0000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.4);
  text-decoration: none;
}

.btn-ghost-red {
  background: transparent;
  color: #CC0000;
  border-color: #CC0000;
}

.btn-ghost-red:hover {
  background: #CC0000;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* =============================================
   SECTIONS — General
   ============================================= */
section {
  padding: 90px 24px;
}

section.alt-bg {
  background: #f7f7f8;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #CC0000;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-title span { color: #CC0000; }

.section-subtitle {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* =============================================
   INTRO / ABOUT SECTION
   ============================================= */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-text p {
  margin-bottom: 18px;
  color: #444;
  font-size: 1.02rem;
  line-height: 1.8;
}

.intro-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid #CC0000;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.badge:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.badge-icon { font-size: 1.6rem; flex-shrink: 0; }

.badge-text strong {
  display: block;
  font-size: 0.97rem;
  color: #111;
  margin-bottom: 2px;
  font-weight: 700;
}

.badge-text span { font-size: 0.88rem; color: #777; }

/* =============================================
   AREAS SECTION — with background image
   ============================================= */
.areas-section {
  position: relative;
  padding: 90px 24px;
  overflow: hidden;
  background: #111;
}

.areas-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/areas-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.areas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(180,0,0,0.7) 0%, rgba(20,20,20,0.85) 100%);
}

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

.areas-section .section-label { color: rgba(255,200,200,0.9); }
.areas-section .section-title { color: #fff; }
.areas-section .section-subtitle { color: rgba(255,255,255,0.7); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.area-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-align: center;
  padding: 28px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.3px;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  cursor: default;
}

.area-card:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-4px);
}

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

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.price-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
}

.price-card:hover {
  border-color: #CC0000;
  box-shadow: 0 12px 40px rgba(204,0,0,0.14);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: #CC0000;
  background: linear-gradient(160deg, #fff 60%, #fff5f5 100%);
}

.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #CC0000;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(204,0,0,0.3);
}

.price-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.price-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #CC0000;
  margin: 16px 0 8px;
  line-height: 1;
}

.price-amount sup {
  font-size: 1.4rem;
  vertical-align: super;
  font-weight: 700;
}

.price-card > p {
  color: #666;
  font-size: 0.95rem;
  margin-top: 10px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.price-divider {
  width: 40px;
  height: 3px;
  background: #CC0000;
  border-radius: 2px;
  margin: 0 auto 20px;
}

.price-card ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.price-card ul li {
  font-size: 0.93rem;
  color: #444;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #CC0000;
  font-weight: 800;
}

/* =============================================
   CTA BANNER — with road background
   ============================================= */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  text-align: center;
  background: #0d0d0d;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(180,0,0,0.8) 0%, rgba(10,10,10,0.85) 100%);
}

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

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 70px;
  text-align: center;
  background: #1a0000;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(160,0,0,0.7), rgba(30,0,0,0.9));
}

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

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.instructor-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.instructor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.instructor-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #CC0000, #ff3333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(204,0,0,0.3);
}

.instructor-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.instructor-card .title-badge {
  display: inline-block;
  background: #fff0f0;
  color: #CC0000;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 18px;
  border: 1px solid #ffcccc;
  letter-spacing: 0.3px;
}

.instructor-card p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.value-item {
  text-align: center;
  padding: 36px 24px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.value-icon { font-size: 2.4rem; margin-bottom: 16px; }

.value-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.value-item p { font-size: 0.9rem; color: #777; line-height: 1.65; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: start;
}

.contact-form-wrap {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 44px 40px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.08);
}

.contact-form-wrap h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.contact-form-wrap p.form-intro {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: #333;
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.97rem;
  font-family: inherit;
  color: #1a1a1a;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #CC0000;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(204,0,0,0.08);
}

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

.contact-info-wrap { padding-top: 4px; }

.contact-info-wrap h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.contact-info-wrap p.info-intro {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid #CC0000;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-detail:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-detail-icon { font-size: 1.4rem; flex-shrink: 0; }

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 1.02rem;
  font-weight: 600;
  color: #111;
}

.contact-detail-text a:hover { color: #CC0000; text-decoration: none; }

.fb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #CC0000 !important;
  font-weight: 700;
}

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  border: 1px solid #eee;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  padding: 22px 26px;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  font-family: inherit;
}

.faq-question:hover { background: #fdf5f5; }

.faq-question.open {
  background: #CC0000;
  color: #fff;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 26px 24px;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.8;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.faq-answer.open { display: block; }

.faq-answer p { margin-top: 16px; }

.faq-answer ul {
  margin-top: 12px;
  padding-left: 22px;
  list-style: disc;
}

.faq-answer ul li { margin-bottom: 6px; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #0f0f0f;
  color: #bbb;
  padding: 60px 24px 28px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}

.footer-brand .logo-footer {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #888;
  font-size: 0.9rem;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-col ul li a:hover { color: #fff; text-decoration: none; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 12px;
}

.footer-contact-item a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  max-width: 1120px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #555;
}

.footer-bottom a { color: #777; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 18px 24px;
}

.trust-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #555;
}

.trust-item span:first-child { font-size: 1.1rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #CC0000;
    padding: 12px 20px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }

  nav ul.open { display: flex; }

  nav ul li a {
    display: block;
    padding: 13px 16px;
    font-size: 1rem;
  }

  nav ul li a.nav-cta {
    background: rgba(255,255,255,0.15);
    color: #fff;
    margin-top: 6px;
  }

  .nav-toggle { display: flex; }

  .hero { min-height: 80vh; }

  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .hero-stats { gap: 24px; }

  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  .page-hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .cta-banner h2 { font-size: 1.9rem; }

  section { padding: 64px 20px; }
}

@media (max-width: 480px) {
  .hero { min-height: 75vh; padding: 0; }
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats { gap: 20px; }
  .hero-stat strong { font-size: 1.6rem; }
  .contact-form-wrap { padding: 28px 20px; }
  section { padding: 52px 16px; }
  .price-amount { font-size: 2.6rem; }
  .page-hero h1 { font-size: 1.7rem; }
}
