/* ============================================
   CarChemist - Premium Website Styles
   ============================================ */

/* CSS Variables - Brand Colors */
:root {
  --primary-navy: #00234c;
  --primary-yellow: #f9c900;
  --dark-navy: #001a36;
  --light-navy: #003366;
  --accent-yellow: #ffdb4d;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --text-gray: #6c757d;
  --dark-gray: #343a40;
  --gradient-overlay: linear-gradient(135deg, rgba(0, 35, 76, 0.95), rgba(0, 35, 76, 0.85));
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

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

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

body {
  font-family: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 35, 76, 0.08);
  z-index: 9999;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 35, 76, 0.12);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  height: 40px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu a {
  font-weight: 500;
  color: var(--primary-navy);
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-yellow);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--primary-yellow);
}

.nav-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 10000;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-navy);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-yellow);
  color: var(--primary-navy);
  box-shadow: 0 4px 20px rgba(249, 201, 0, 0.3);
}

.btn-primary svg {
  fill: var(--primary-navy);
}

.btn-primary:hover {
  background: var(--accent-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(249, 201, 0, 0.4);
}

.btn-secondary {
  background: var(--primary-navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 35, 76, 0.3);
}

.btn-secondary svg {
  fill: var(--white);
}

.btn-secondary:hover {
  background: var(--light-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 35, 76, 0.4);
}

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

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

/* White outline button for dark backgrounds */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-left: 2rem;
  padding-right: 2rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-text .subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 500;
}

.trust-point svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-yellow);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.glass-card-list {
  list-style: none;
}

.glass-card-list li {
  color: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.glass-card-list li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

/* Section Styles */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--text-gray);
}

.section-dark {
  background: var(--primary-navy);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-light {
  background: var(--light-gray);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 35, 76, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 35, 76, 0.15);
  border-color: var(--primary-yellow);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(249, 201, 0, 0.3);
}

.card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-navy);
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card p {
  color: var(--text-gray);
  font-size: 1rem;
}

/* Service Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 35, 76, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 50px rgba(0, 35, 76, 0.2);
}

.service-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 35, 76, 0.6));
}

.service-card-content {
  padding: 2rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  margin-top: 1rem;
}

.service-card li {
  padding: 0.5rem 0;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card li::before {
  content: '✓';
  color: var(--primary-yellow);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-yellow);
  color: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 20px rgba(249, 201, 0, 0.4);
}

.step-card h3 {
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--text-gray);
}

/* Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.area-tag {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-navy);
  box-shadow: 0 4px 15px rgba(0, 35, 76, 0.08);
  transition: all 0.3s ease;
}

.area-tag:hover {
  background: var(--primary-yellow);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(249, 201, 0, 0.3);
}

/* Partner CTA Section */
.partner-cta {
  background: linear-gradient(135deg, var(--primary-navy), var(--dark-navy));
  position: relative;
  overflow: hidden;
}

.partner-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1600');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.partner-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.partner-cta h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.partner-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 35, 76, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 35, 76, 0.15);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--primary-navy);
}

.benefit-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.benefit-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 35, 76, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 35, 76, 0.15);
}

.blog-card-image {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-yellow);
  color: var(--primary-navy);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-card-content {
  padding: 2rem;
}

.blog-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.blog-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-gray);
  font-size: 0.875rem;
}

.read-more {
  color: var(--primary-navy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more:hover {
  color: var(--primary-yellow);
}

/* Testimonial / Story Cards */
.story-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 35, 76, 0.08);
  border-left: 4px solid var(--primary-yellow);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.story-location {
  color: var(--text-gray);
  font-size: 0.875rem;
}

.story-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-results {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
}

.story-results h4 {
  color: var(--primary-navy);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.story-results ul {
  list-style: none;
}

.story-results li {
  padding: 0.5rem 0;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-results li::before {
  content: '▸';
  color: var(--primary-yellow);
  font-weight: bold;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-yellow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-navy);
}

.contact-item-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.contact-item-content p {
  color: var(--text-gray);
  margin: 0;
}

.contact-item-content a {
  color: var(--primary-navy);
  font-weight: 600;
}

.contact-item-content a:hover {
  color: var(--primary-yellow);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 4px 30px rgba(0, 35, 76, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 3px rgba(249, 201, 0, 0.1);
}

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

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-yellow);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.social-link:hover svg {
  fill: var(--primary-navy);
}

/* Map Placeholder */
.map-placeholder {
  background: var(--light-gray);
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}

.map-placeholder p {
  color: var(--text-gray);
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  max-width: 400px;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-yellow);
}

/* App CTA Strip */
.app-cta-strip {
  background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
  padding: 3rem 0;
  text-align: center;
}

.app-cta-strip h3 {
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 35, 76, 0.1);
    transition: left 0.3s ease;
    align-items: flex-start;
    gap: 0;
    overflow-y: auto;
    z-index: 9998;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  /* Make sure all list items are visible */
  .nav-menu > li {
    width: 100%;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Style regular navigation links */
  .nav-menu > li:not(.nav-cta) {
    border-bottom: 1px solid var(--medium-gray);
  }
  
  .nav-menu > li:not(.nav-cta) > a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    width: 100%;
  }
  
  /* Remove underline effect on mobile */
  .nav-menu a::after {
    display: none;
  }
  
  /* Style the CTA section */
  .nav-cta {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--primary-yellow);
  }
  
  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Hide desktop navigation on mobile */
  nav {
    display: block;
  }
  
  .trust-points {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .card-grid,
  .service-grid,
  .steps-grid,
  .areas-grid,
  .benefits-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 1rem;
  }
  
  .header-content {
    padding: 1rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-yellow {
  color: var(--primary-yellow);
}

.text-white {
  color: var(--white);
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.hidden {
  display: none;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
