/* ============================================
   PIZZA DELIVERY STYLE GUIDE - MAIN STYLESHEET
   Colors: White #FFFFFF, Red #C8102E, Yellow #FFD100
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&family=Playfair+Display:wght@700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --red:        #C8102E;
  --red-dark:   #9E0B22;
  --red-light:  #F0334F;
  --yellow:     #FFD100;
  --yellow-dark:#E6B800;
  --yellow-light:#FFF0A0;
  --white:      #FFFFFF;
  --off-white:  #FAF8F5;
  --light-gray: #F4F4F4;
  --mid-gray:   #E0E0E0;
  --dark-gray:  #555555;
  --text-dark:  #1A1A1A;
  --text-body:  #3D3D3D;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.16);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --transition: 0.3s ease;
  --font-head:  'Montserrat', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-body:  'Open Sans', sans-serif;
  --max-width:  1240px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 800;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
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; }
p  { margin-bottom: 1rem; }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
}

/* --- Utility Classes --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-white  { color: var(--white) !important; }
.text-red    { color: var(--red) !important; }
.text-yellow { color: var(--yellow-dark) !important; }

.bg-white     { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-light     { background: var(--light-gray); }
.bg-red       { background: var(--red); }
.bg-dark      { background: var(--text-dark); }
.bg-gradient-red { background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, var(--red-light) 100%); }

.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 40px; }
.mt-5  { margin-top: 64px; }
.mb-1  { margin-bottom: 8px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 40px; }
.mb-5  { margin-bottom: 64px; }

.fw-normal { font-weight: 400; }
.fw-medium { font-weight: 600; }
.fw-bold   { font-weight: 700; }
.fw-black  { font-weight: 900; }

.pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.pill-red    { background: var(--red); color: var(--white); }
.pill-yellow { background: var(--yellow); color: var(--text-dark); }
.pill-white  { background: rgba(255,255,255,0.2); color: var(--white); border: 1px solid rgba(255,255,255,0.4); }

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 8px;
}

.section-header { margin-bottom: 52px; }
.section-header p { font-size: 1.05rem; color: var(--dark-gray); max-width: 600px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--yellow);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  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;
}

.navbar-logo .logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.navbar-logo .logo-text span { color: var(--red); }

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

.navbar-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--red);
  background: rgba(200,16,46,0.07);
}

.navbar-dropdown {
  position: relative;
}

.navbar-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--red);
  overflow: hidden;
  z-index: 100;
}

.navbar-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--light-gray);
  color: var(--red);
  padding-left: 24px;
}

.navbar-cta {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 100px !important;
  padding: 8px 20px !important;
}

.navbar-cta:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(200,16,46,0.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,0.4);
  color: var(--white);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(255,209,0,0.3);
}
.btn-secondary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,209,0,0.4);
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 42px; font-size: 0.95rem; }
.btn-sm { padding: 10px 22px; font-size: 0.78rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-main {
  min-height: 680px;
  background: linear-gradient(135deg, #1a0005 0%, #6b0018 40%, #C8102E 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,0,5,0.85) 0%, rgba(107,0,24,0.6) 60%, rgba(200,16,46,0.3) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,209,0,0.15);
  border: 1px solid rgba(255,209,0,0.4);
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .accent { color: var(--yellow); }
.hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Sub-page hero */
.hero-sub {
  min-height: 320px;
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
}

.hero-sub .hero-content { padding: 60px 0; }
.hero-sub h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--yellow); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }

/* ============================================
   CARDS
   ============================================ */
.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; }

/* Base Card */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--mid-gray);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p  { color: var(--dark-gray); font-size: 0.92rem; line-height: 1.65; margin-bottom: 18px; }

.card-footer {
  padding: 16px 24px;
  background: var(--light-gray);
  border-top: 1px solid var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Style Card */
.style-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
  position: relative;
}

.style-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.style-card:hover::before { transform: scaleX(1); }
.style-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.14);
}

.style-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.style-card-body { padding: 26px; }
.style-card-body .pill { margin-bottom: 12px; }
.style-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.style-card-body p { color: var(--dark-gray); font-size: 0.9rem; margin-bottom: 18px; }

.style-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.style-tag {
  background: var(--light-gray);
  color: var(--dark-gray);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; color: var(--red-dark); }
.card-link::after { content: '→'; }

/* Feature Card */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.feature-card h4 { margin-bottom: 10px; }
.feature-card p  { color: var(--dark-gray); font-size: 0.88rem; margin: 0; }

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  transition: all 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;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--dark-gray);
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p  { font-size: 0.88rem; color: var(--dark-gray); flex: 1; margin-bottom: 18px; }

/* ============================================
   COMPARISON TABLES
   ============================================ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th {
  background: var(--red);
  color: var(--white);
  padding: 18px 24px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare-table th:first-child { background: var(--red-dark); }
.compare-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 0.9rem;
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.compare-table tr:hover td { background: var(--yellow-light); }
.compare-table .feature-name {
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-head);
  font-size: 0.85rem;
}

.check-yes { color: #22c55e; font-size: 1.1rem; }
.check-no  { color: #ef4444; font-size: 1.1rem; }
.check-mid { color: var(--yellow-dark); font-size: 1.1rem; }

/* Compare Panels */
.compare-panel {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-panel-header {
  background: var(--red);
  color: var(--white);
  padding: 24px 28px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
}
.compare-panel-body {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--mid-gray);
  border-top: none;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
}
.compare-list li:last-child { border-bottom: none; }
.compare-list .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

/* ============================================
   BANNER / CTA STRIPS
   ============================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '🍕';
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  top: -40px;
  left: -40px;
}
.cta-strip::after {
  content: '🍕';
  position: absolute;
  font-size: 200px;
  opacity: 0.05;
  bottom: -40px;
  right: -40px;
}
.cta-strip h2 { color: var(--white); margin-bottom: 14px; }
.cta-strip 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 {
  background: var(--yellow);
  padding: 48px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 8px; }
.cta-banner p  { color: var(--dark-gray); margin: 0; }

/* ============================================
   INFO BOXES
   ============================================ */
.info-box {
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 24px 0;
}
.info-box-tip    { background: #fffbeb; border-left: 4px solid var(--yellow); }
.info-box-info   { background: #eff6ff; border-left: 4px solid #3b82f6; }
.info-box-warn   { background: #fff7ed; border-left: 4px solid #f97316; }
.info-box-red    { background: #fff1f2; border-left: 4px solid var(--red); }
.info-box h4     { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.info-box p      { margin: 0; font-size: 0.9rem; }

/* Characteristics List */
.char-list { margin: 0; }
.char-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.92rem;
}
.char-list li:last-child { border-bottom: none; }
.char-bullet {
  width: 24px;
  height: 24px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
.char-list strong { color: var(--text-dark); display: block; font-weight: 700; }
.char-list span   { color: var(--dark-gray); font-size: 0.85rem; }

/* Steps */
.steps { counter-reset: steps; }
.step-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 6px; }
.step-content p  { color: var(--dark-gray); font-size: 0.9rem; margin: 0; }

/* ============================================
   SIDEBAR LAYOUT
   ============================================ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.sidebar { position: sticky; top: 90px; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  margin-bottom: 28px;
}
.sidebar-widget-header {
  background: var(--red);
  color: var(--white);
  padding: 14px 20px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sidebar-widget-body { padding: 18px 20px; }

.sidebar-nav-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
}
.sidebar-nav-links a:hover,
.sidebar-nav-links a.active {
  background: var(--light-gray);
  color: var(--red);
}
.sidebar-nav-links a::after { content: '→'; color: var(--red); opacity: 0; transition: opacity var(--transition); }
.sidebar-nav-links a:hover::after { opacity: 1; }

/* ============================================
   RATING BARS
   ============================================ */
.rating-bar { margin-bottom: 14px; }
.rating-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}
.rating-bar-track {
  height: 8px;
  background: var(--light-gray);
  border-radius: 100px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 100%);
  border-radius: 100px;
  transition: width 1s ease;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--mid-gray);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-answer {
  padding: 0 0 18px 0;
  color: var(--dark-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon   { transform: rotate(45deg); background: var(--red); color: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: var(--yellow); }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin: 16px 0 24px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--yellow); }
.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--white); }
.footer-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 16px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.6;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ============================================
   SPECIAL COMPONENTS
   ============================================ */
/* Yellow accent bar */
.accent-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: 100px;
  margin: 24px 0;
}

/* Quote Block */
.blockquote {
  border-left: 4px solid var(--yellow);
  padding: 20px 28px;
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--dark-gray);
  font-size: 1.02rem;
}

/* Image with caption */
.figure { margin: 28px 0; }
.figure img { border-radius: var(--radius-md); width: 100%; }
.figcaption { text-align: center; font-size: 0.8rem; color: var(--dark-gray); margin-top: 10px; }

/* Location chip */
.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-light);
  border: 1px solid var(--yellow-dark);
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4        { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-layout   { grid-template-columns: 1fr; }
  .sidebar       { position: static; }
  .cta-banner    { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-stats      { flex-wrap: wrap; gap: 24px; }
  .navbar-nav      { display: none; }
  .hamburger       { display: flex; }
  .footer-grid     { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; gap: 12px; text-align: center; }
  .compare-table   { font-size: 0.82rem; }
  .compare-table td, .compare-table th { padding: 12px 14px; }
  .section         { padding: 56px 0; }
  .section-lg      { padding: 72px 0; }
  .hero-main       { min-height: 520px; }
  .cta-strip       { padding: 48px 0; }
}

@media (max-width: 480px) {
  .btn-lg          { padding: 14px 28px; font-size: 0.85rem; }
  .btn-group       { flex-direction: column; align-items: flex-start; }
  .hero-content    { padding: 56px 0; }
  h1               { font-size: 1.9rem; }
}