/* ============================================================
   PIZZA DELIVERY MENU & VARIETY GUIDE - Main Stylesheet
   Colors: Red #D32F2F | White #FFFFFF | Warm Yellow #FFC107
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --red:        #D32F2F;
  --red-dark:   #B71C1C;
  --red-light:  #FFEBEE;
  --yellow:     #FFC107;
  --yellow-dark:#F9A825;
  --yellow-light:#FFF8E1;
  --white:      #FFFFFF;
  --off-white:  #FAFAFA;
  --gray-light: #F5F5F5;
  --gray:       #9E9E9E;
  --gray-dark:  #616161;
  --text:       #212121;
  --text-light: #555555;
  --shadow:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.15);
  --radius:     14px;
  --radius-sm:  8px;
  --transition: all 0.3s ease;
  --font-main:  'Poppins', 'Segoe UI', sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.25; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; font-family: var(--font-main); font-weight: 600; }
p  { font-size: 1rem; color: var(--text-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Utility Classes ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-yellow { color: var(--yellow-dark); }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-red { background: var(--red); }
.bg-yellow { background: var(--yellow); }
.bg-red-light { background: var(--red-light); }
.bg-yellow-light { background: var(--yellow-light); }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(211,47,47,0.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211,47,47,0.45);
}
.btn-secondary {
  background: var(--yellow);
  color: var(--text);
  box-shadow: 0 4px 14px rgba(255,193,7,0.35);
}
.btn-secondary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,193,7,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--yellow);
  color: var(--text);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 9px 22px; font-size: 0.85rem; }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.09);
  padding: 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.navbar-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.navbar-logo span.highlight { color: var(--red); }

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.navbar-links li a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: block;
}
.navbar-links li a:hover,
.navbar-links li a.active {
  color: var(--red);
  background: var(--red-light);
}
.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
@media (max-width: 900px) {
  .navbar-links { display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0; padding: 16px;
    box-shadow: var(--shadow); align-items: flex-start; }
  .navbar-links.open { display: flex; }
  .navbar-links li { width: 100%; }
  .navbar-links li a { padding: 12px 16px; width: 100%; }
  .hamburger { display: flex; }
  .navbar-cta .btn { display: none; }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0000 0%, #8B0000 40%, #D32F2F 75%, #E64A19 100%);
  color: var(--white);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,193,7,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,193,7,0.2);
  border: 1px solid rgba(255,193,7,0.5);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--yellow); }
.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.hero-stat { text-align: left; }
.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
}
.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.hero-image-wrap {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.9;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(255,193,7,0.3);
}
.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-floating-card .icon-wrap {
  width: 40px; height: 40px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.hero-floating-card p { margin: 0; color: var(--text); font-size: 0.85rem; }
.hero-floating-card strong { color: var(--red); font-size: 0.95rem; display: block; }
.floating-card-1 { bottom: 20%; right: 20%; }
.floating-card-2 { top: 25%; right: 8%; }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 14px 0;
  background: var(--white);
  border-bottom: 1px solid #eee;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
}
.breadcrumb-list li a { color: var(--red); }
.breadcrumb-list li a:hover { text-decoration: underline; }
.breadcrumb-list li::after { content: '›'; color: var(--gray); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list li:last-child { color: var(--text); font-weight: 500; }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}
.card-title { margin-bottom: 10px; color: var(--text); font-size: 1.15rem; }
.card-text { font-size: 0.92rem; margin-bottom: 16px; }
.card-link {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; color: var(--red-dark); }
.card-link::after { content: '→'; }

/* Pizza Category Card */
.pizza-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}
.pizza-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.pizza-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.pizza-card:hover .pizza-card-img { transform: scale(1.04); }
.pizza-card-img-wrap { overflow: hidden; position: relative; }
.pizza-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.pizza-card-body { padding: 22px; }
.pizza-card-title { font-size: 1.2rem; margin-bottom: 8px; }
.pizza-card-desc { font-size: 0.9rem; margin-bottom: 16px; }
.pizza-card-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.trait-pill {
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(249,168,37,0.3);
}
.trait-pill.red { background: var(--red-light); color: var(--red); border-color: rgba(211,47,47,0.2); }

/* Feature Card */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  border-top: 4px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--red);
}
.feature-icon {
  width: 68px;
  height: 68px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--red); }
.feature-card h4 { margin-bottom: 12px; font-size: 1.05rem; }

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 12px;
}
.blog-meta .category {
  background: var(--red-light);
  color: var(--red);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card-body p { flex: 1; font-size: 0.9rem; margin-bottom: 18px; }

/* ---------- Grid Layouts ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }
}

/* ---------- Section Divider ---------- */
.divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 0 auto 20px;
}
.divider-left { margin: 0 0 20px; }

/* ---------- Banner / CTA Strip ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255,193,7,0.12);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -5%;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; position: relative; z-index: 1; }

/* ---------- Yellow Info Banner ---------- */
.info-banner {
  background: var(--yellow);
  padding: 20px 0;
}
.info-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}
.info-banner p { margin: 0; color: var(--text); font-weight: 600; font-size: 0.95rem; }

/* ---------- How It Works Steps ---------- */
.steps-wrap { position: relative; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 72px;
  height: 72px;
  background: var(--red);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(211,47,47,0.3);
}
.step-item h4 { margin-bottom: 10px; font-size: 1rem; }
.step-item p { font-size: 0.88rem; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- Accordion FAQ ---------- */
.accordion-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}
.accordion-header:hover { color: var(--red); }
.accordion-header .icon {
  width: 28px; height: 28px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.accordion-header.open .icon { background: var(--red); color: var(--white); transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body.open { max-height: 400px; }
.accordion-body p { padding: 0 24px 20px; font-size: 0.95rem; }

/* ---------- Tabs ---------- */
.tabs-wrap { margin-top: 20px; }
.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #eee;
}
.tab-btn {
  background: var(--gray-light);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover { background: var(--red-light); color: var(--red); }
.tab-btn.active { background: var(--red); color: var(--white); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- Tip Box ---------- */
.tip-box {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.tip-box p { margin: 0; color: var(--text); font-size: 0.95rem; }
.tip-box .tip-label {
  font-weight: 700;
  color: var(--yellow-dark);
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Info Box ---------- */
.info-box {
  background: var(--red-light);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box p { margin: 0; color: var(--text); font-size: 0.95rem; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: var(--white); }
thead { background: var(--red); color: var(--white); }
thead th { padding: 16px 20px; text-align: left; font-size: 0.9rem; font-weight: 600; white-space: nowrap; }
tbody td { padding: 14px 20px; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; color: var(--text-light); }
tbody tr:hover { background: var(--red-light); }
tbody tr:last-child td { border-bottom: none; }

/* ---------- Tag / Badge ---------- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.badge-red { background: var(--red-light); color: var(--red); }
.badge-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.badge-green { background: #E8F5E9; color: #2E7D32; }

/* ---------- Contact Card ---------- */
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.88rem; color: var(--gray); margin-bottom: 4px; font-family: var(--font-main); text-transform: uppercase; letter-spacing: 0.08em; }
.contact-item p { font-size: 0.97rem; color: var(--text); margin: 0; }

/* ---------- Form ---------- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--text); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}
.form-textarea { height: 140px; resize: vertical; }
.form-hint { font-size: 0.8rem; color: var(--gray); margin-top: 6px; }

/* ---------- Footer ---------- */
footer {
  background: #1a0000;
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
footer p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; }
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--yellow); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #1a0000 0%, var(--red) 100%);
  padding: 72px 0 64px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(255,193,7,0.12) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 560px; }

/* ---------- Sidebar Layout ---------- */
.content-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.sidebar-widget h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red-light);
  color: var(--text);
}
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}
.sidebar-links a:hover { background: var(--red-light); color: var(--red); border-color: transparent; }
.sidebar-links a .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .content-sidebar-layout { grid-template-columns: 1fr; }
}

/* ---------- Scroll Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Highlight Band ---------- */
.highlight-band {
  background: var(--yellow);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--text);
}

/* ---------- List Styles ---------- */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-light);
}
.check-list li .check {
  width: 22px; height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Testimonial / Quote ---------- */
.quote-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--yellow);
  position: relative;
}
.quote-block::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--yellow);
  opacity: 0.3;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.quote-block p { font-size: 1.05rem; font-style: italic; color: var(--text); padding-left: 32px; }

/* ---------- Tag Cloud ---------- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--gray-light);
  color: var(--text-light);
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: default;
}
.tag:hover { background: var(--red-light); color: var(--red); }

/* ---------- Responsive Utilities ---------- */
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero-image-wrap { display: none; }
  .hero-floating-card { display: none; }
  .cta-banner { padding: 48px 0; }
  .steps-grid::before { display: none; }
}
@media (max-width: 480px) {
  .section-pad { padding: 40px 0; }
  .container { padding: 0 16px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}

/* ---------- Print Styles ---------- */
@media print {
  .navbar, footer, .cta-banner { display: none; }
  body { font-size: 12pt; }
  h1 { font-size: 22pt; }
  h2 { font-size: 18pt; }
}

/* ---------- Sticky Sidebar ---------- */
.sticky-sidebar { position: sticky; top: 90px; }

/* ---------- Image Overlay Card ---------- */
.img-overlay-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.img-overlay-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.img-overlay-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.img-overlay-card .overlay h3 { color: var(--white); margin: 0; }
.img-overlay-card .overlay p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 6px 0 0; }

/* ---------- Scrollbar Styling ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-dark); }

/* ---------- Selection ---------- */
::selection { background: var(--yellow); color: var(--text); }