/* ===== BUYRENTLEASETRUCKS.COM — SHARED STYLES ===== */
/* Colors: #880E4F, #C2185B, #F06292, #F8BBD0, #FCE4EC */
/* Fonts: Outfit (headings), Plus Jakarta Sans (body) */

:root {
  --color-primary: #880E4F;
  --color-secondary: #C2185B;
  --color-accent: #F06292;
  --color-light: #F8BBD0;
  --color-pale: #FCE4EC;
  --color-white: #ffffff;
  --color-dark: #1a1a2e;
  --color-gray: #6b7280;
  --color-gray-light: #f3f4f6;
  --shadow-md: 0 4px 20px rgba(136, 14, 79, 0.12);
  --shadow-lg: 0 8px 40px rgba(136, 14, 79, 0.18);
  --radius-card: 16px;
  --radius-btn: 8px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; font-weight: 300; }
a { color: var(--color-secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(136, 14, 79, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-white) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-icon { font-size: 1.5rem; }

.main-nav ul {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-nav ul li a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  transition: var(--transition);
}

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

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

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-btn);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background: #6a0b3d;
  border-color: #6a0b3d;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 { color: var(--color-white); margin-bottom: 1.5rem; }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* SECTIONS */
section { padding: 5rem 0; }
.section-alt { background: var(--color-pale); }
.section-dark { background: var(--color-primary); color: var(--color-white); }
.section-dark h2, .section-dark h3 { color: var(--color-light); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--color-gray); max-width: 600px; margin: 0 auto; }

/* CARDS */
.card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

/* GRID */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 3rem; color: var(--color-accent); }
.stat-item p { color: var(--color-gray); font-size: 0.9rem; }

/* COMPARISON TABLE */
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.comparison-table th, .comparison-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--color-light);
}
.comparison-table th {
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Outfit', sans-serif;
}
.comparison-table tr:nth-child(even) { background: var(--color-pale); }
.comparison-table tr:hover { background: var(--color-light); }

/* ACCORDION */
.accordion-item {
  border: 1px solid var(--color-light);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--color-white);
  transition: var(--transition);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--color-primary);
}

.accordion-header:hover { background: var(--color-pale); }
.accordion-header.active { background: var(--color-primary); color: var(--color-white); }

.accordion-icon { font-size: 1.2rem; transition: var(--transition); }
.accordion-header.active .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  display: none;
  padding: 1.25rem 1.5rem;
  background: var(--color-pale);
  color: var(--color-dark);
}

.accordion-body.open { display: block; }

/* TESTIMONIALS */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-accent);
}

.testimonial-text { font-style: italic; margin-bottom: 1rem; color: var(--color-dark); }
.testimonial-author { font-weight: 600; color: var(--color-primary); font-family: 'Outfit', sans-serif; }
.testimonial-role { font-size: 0.85rem; color: var(--color-gray); }

/* BADGE */
.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.badge-primary { background: var(--color-pale); color: var(--color-primary); }
.badge-accent { background: var(--color-accent); color: var(--color-white); }

/* FLOATING BADGE */
.floating-badge {
  position: absolute;
  background: var(--color-accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ZIGZAG SECTION */
.zigzag-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.zigzag-section:nth-child(even) .zigzag-image { order: -1; }

.zigzag-image img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* FORM */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--color-light);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--color-white);
  color: var(--color-dark);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.1);
}

.form-input.error, .form-textarea.error { border-color: #e53e3e; }
.form-error { color: #e53e3e; font-size: 0.8rem; margin-top: 0.25rem; display: none; }
.form-error.show { display: block; }

.form-textarea { resize: vertical; min-height: 140px; }

/* NEWSLETTER */
.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 2px solid var(--color-light);
  border-radius: var(--radius-btn);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* FOOTER */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
  color: var(--color-light);
  margin-bottom: 1rem;
  font-family: 'Outfit', sans-serif;
}

.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--color-light); }
.footer-col address { font-style: normal; }
.footer-col address p { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-col address a { color: rgba(255,255,255,0.7); }
.footer-col address a:hover { color: var(--color-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ARTICLE */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body p { font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.5rem; }
.article-body h2 { margin: 2.5rem 0 1rem; }
.article-body h3 { margin: 2rem 0 0.75rem; }
.article-body blockquote {
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.5rem;
  background: var(--color-pale);
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
  font-style: italic;
}

/* AUTHOR BIO */
.author-bio {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--color-pale);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* SIDEBAR */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: var(--color-pale);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-widget h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-light);
}

/* ICON FEATURE */
.icon-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.icon-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.icon-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* MAP */
.map-container {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe { width: 100%; height: 100%; border: none; }

/* COOKIE BANNER */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--color-dark);
  color: white;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

#cookieBanner p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
#cookieBanner a { color: var(--color-light); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* LIVE CHAT WIDGET */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
}

.chat-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-btn:hover { background: var(--color-primary); transform: scale(1.1); }

.chat-popup {
  display: none;
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 300px;
  background: white;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.chat-popup.open { display: block; }
.chat-header {
  background: var(--color-primary);
  color: white;
  padding: 1rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

.chat-body { padding: 1rem; }
.chat-body p { font-size: 0.9rem; color: var(--color-gray); margin-bottom: 1rem; }
.chat-input { display: flex; gap: 0.5rem; }
.chat-input input {
  flex: 1;
  padding: 0.6rem;
  border: 1px solid var(--color-light);
  border-radius: 8px;
  font-size: 0.85rem;
}

/* FLOATING ACTION BUTTONS */
.fab-container {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 997;
}

.fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.fab:hover { background: var(--color-secondary); transform: scale(1.1); color: white; }

/* ACHIEVEMENT BADGES */
.achievement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.achievement-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.achievement-card:hover { transform: translateY(-4px); }
.achievement-icon { font-size: 3rem; margin-bottom: 1rem; }
.achievement-card h4 { color: var(--color-primary); margin-bottom: 0.5rem; }
.achievement-card p { font-size: 0.85rem; color: var(--color-gray); margin: 0; }

/* SHARE BUTTONS */
.share-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 2rem 0; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  color: white;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn:hover { opacity: 0.85; transform: translateY(-2px); }

/* COMMENTS */
.comment-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-light);
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.comment-meta { font-size: 0.8rem; color: var(--color-gray); margin-bottom: 0.5rem; }
.comment-meta strong { color: var(--color-primary); font-family: 'Outfit', sans-serif; }

/* VIDEO EMBED */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* PORTFOLIO */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.portfolio-item img { width: 100%; height: 250px; object-fit: cover; transition: var(--transition); }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(136,14,79,0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: var(--transition);
  padding: 1.5rem;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

/* DOWNLOAD RESOURCES */
.resource-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.resource-item:hover { transform: translateX(4px); }
.resource-icon { font-size: 2rem; flex-shrink: 0; }
.resource-info { flex: 1; }
.resource-info h5 { color: var(--color-primary); margin-bottom: 0.25rem; font-family: 'Outfit', sans-serif; }
.resource-info p { font-size: 0.85rem; color: var(--color-gray); margin: 0; }

/* BUSINESS HOURS */
.hours-table { width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-light);
}

.hours-day { font-weight: 600; color: var(--color-primary); font-family: 'Outfit', sans-serif; }
.hours-time { color: var(--color-gray); }
.hours-row.today { background: var(--color-pale); padding: 0.75rem 1rem; border-radius: 8px; }

/* TAGS */
.tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 1rem 0; }
.tag {
  padding: 0.3rem 0.8rem;
  background: var(--color-pale);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

/* TEAM */
.team-card {
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-4px); }
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--color-light);
}

.team-name { color: var(--color-primary); margin-bottom: 0.25rem; }
.team-role { font-size: 0.85rem; color: var(--color-gray); }

/* CHART PLACEHOLDER */
.chart-container {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-up { animation: fadeInUp 0.7s ease forwards; }
.animate-fade { animation: fadeIn 0.7s ease forwards; }

/* COUNTER */
.counter-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

/* GEOMETRIC ACCENT */
.geometric-accent {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--color-accent);
}

/* SECTION DIVIDER */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-light));
  border: none;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-primary); padding: 1rem; }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul li a { display: block; padding: 0.75rem 1rem; }
  .nav-toggle { display: flex; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .zigzag-section { grid-template-columns: 1fr; }
  .zigzag-section:nth-child(even) .zigzag-image { order: 0; }
  .achievement-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .author-bio { flex-direction: column; }
  .fab-container { display: none; }
  #cookieBanner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .achievement-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
}

/* LEGAL PAGES */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 0;
}

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-light);
}

.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.legal-section p, .legal-section li { font-size: 0.95rem; line-height: 1.8; }
.legal-section ul { padding-left: 1.5rem; list-style: disc; }
.legal-section ul li { margin-bottom: 0.5rem; }

/* COOKIE TABLE */
.cookie-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.85rem; }
.cookie-table th, .cookie-table td { padding: 0.75rem 1rem; border: 1px solid var(--color-light); text-align: left; }
.cookie-table th { background: var(--color-primary); color: white; }
.cookie-table tr:nth-child(even) { background: var(--color-pale); }

/* HERO COMPACT */
.hero-compact {
  min-height: 45vh;
  padding-top: 80px;
}

/* HERO MINIMAL */
.hero-minimal {
  min-height: 35vh;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

/* PAGE PADDING TOP */
.page-content { padding-top: 80px; }

/* PROGRESS BAR */
.progress-bar-container { background: var(--color-pale); border-radius: 50px; height: 10px; margin: 0.5rem 0 1rem; }
.progress-bar { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); }

/* CONTACT DETAILS */
.contact-detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.contact-detail-item:hover { transform: translateX(4px); }
.contact-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* JOURNEY MAP */
.journey-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
}

.journey-step::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 56px;
  width: 2px;
  height: calc(100% + 2rem);
  background: var(--color-light);
}

.journey-step:last-child::after { display: none; }

.journey-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.journey-content {
  flex: 1;
  padding-bottom: 2rem;
}

/* RELATED ARTICLES */
.related-article-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.related-article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.related-article-card img { width: 100%; height: 180px; object-fit: cover; }
.related-article-content { padding: 1.25rem; }
.related-article-content h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.related-article-content p { font-size: 0.85rem; color: var(--color-gray); margin: 0; }

/* NEWSLETTER SECTION */
.newsletter-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 4rem 0;
  text-align: center;
  color: white;
}

.newsletter-section h2 { color: white; margin-bottom: 1rem; }
.newsletter-section p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.newsletter-form input { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: white; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }

/* BACK TO BLOG */
.back-cta {
  text-align: center;
  padding: 3rem 0;
  background: var(--color-pale);
}

/* PRICING CARDS */
.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.pricing-card:hover, .pricing-card.featured {
  border-color: var(--color-secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 { margin-bottom: 1rem; }
.pricing-features { list-style: none; margin: 1.5rem 0; text-align: left; }
.pricing-features li { padding: 0.5rem 0; border-bottom: 1px solid var(--color-pale); font-size: 0.9rem; }
.pricing-features li::before { content: "✓ "; color: var(--color-secondary); font-weight: 700; }
