/* Delta Auto Gear - Main Stylesheet */
:root {
  --primary: #2563eb;
  --primary-dark: #1e3a8a;
  --primary-light: #3b82f6;
  --yellow-bar: #ffc107;
  --yellow-dark: #e6ac00;
  --white: #ffffff;
  --bg-light: #f5f5f5;
  --bg-gray: #f0f0f0;
  --text-dark: #222222;
  --text-muted: #666666;
  --text-light: #999999;
  --border: #e0e0e0;
  --promo-dark: #2b2b2b;
  --sale-red: #e74c3c;
  --new-green: #27ae60;
  --hot-purple: #8e44ad;
  --star-yellow: #f1c40f;
  --shadow: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.12);
  --radius: 4px;
  --transition: all 0.3s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Top Yellow Bar */
.top-bar {
  background: var(--yellow-bar);
  color: var(--text-dark);
  text-align: center;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 500;
}

/* Header */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img { height: 42px; width: auto; }

.main-nav { display: flex; gap: 30px; list-style: none; }
.main-nav a {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 0;
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.header-icons { display: flex; align-items: center; gap: 20px; }
.header-icon {
  position: relative;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-icon:hover { color: var(--primary); }
.header-icon svg { width: 22px; height: 22px; }

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Search Bar Row */
.search-bar-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  gap: 15px;
}

.categories-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: var(--text-dark);
  white-space: nowrap;
  padding: 8px 0;
}
.categories-btn:hover { color: var(--primary); }
.categories-btn svg { width: 20px; height: 20px; }

.search-form {
  flex: 1;
  display: flex;
  position: relative;
}
.search-form input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.search-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.search-form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-form button:hover { color: var(--primary); }

/* Hero Carousel */
.hero-carousel { position: relative; overflow: hidden; background: var(--bg-light); }
.hero-slides { display: flex; transition: transform 0.6s ease; }
.hero-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 450px;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  max-width: 500px;
  padding: 40px;
  color: var(--white);
  text-align: right;
}
.hero-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero-content p { font-size: 15px; margin-bottom: 25px; opacity: 0.9; }

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--white); transform: scale(1.2); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark { background: var(--promo-dark); color: var(--white); }
.btn-dark:hover { background: #444; color: var(--white); }
.btn-yellow { background: var(--yellow-bar); color: var(--text-dark); }
.btn-yellow:hover { background: var(--yellow-dark); }

/* Category Banners */
.category-banners { padding: 0; }
.category-banners .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.category-banner {
  position: relative;
  overflow: hidden;
  height: 220px;
  cursor: pointer;
}
.category-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-banner:hover img { transform: scale(1.08); }
.category-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.category-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--white);
}
.category-banner-content h3 {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* Section Headers */
.section-header { text-align: center; padding: 50px 0 30px; position: relative; }
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}
.section-header .watermark {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  font-weight: 800;
  color: rgba(0,0,0,0.04);
  text-transform: uppercase;
  letter-spacing: 5px;
  z-index: 1;
  white-space: nowrap;
}
.section-header p { color: var(--text-muted); margin-top: 10px; font-size: 14px; }

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 50px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

.product-image { position: relative; background: var(--bg-light); padding: 20px; }
.product-image img { width: 100%; height: 200px; object-fit: contain; margin: 0 auto; }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  border-radius: 3px;
  z-index: 2;
  text-transform: uppercase;
}
.badge-sale { background: var(--sale-red); }
.badge-new { background: var(--new-green); }
.badge-hot { background: var(--hot-purple); }

.product-actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; }

.action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.action-btn:hover { background: var(--primary-dark); transform: scale(1.1); }

.product-info { padding: 15px; text-align: center; }
.product-rating { margin-bottom: 8px; }
.star { color: #ddd; font-style: normal; font-size: 14px; }
.star.filled { color: var(--star-yellow); }
.product-name { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.product-name a { color: var(--text-dark); }
.product-name a:hover { color: var(--primary); }
.product-price { display: flex; align-items: center; justify-content: center; gap: 8px; }
.current-price { color: var(--primary); font-size: 16px; font-weight: 700; }
.original-price { color: var(--text-light); text-decoration: line-through; font-size: 14px; }

/* Promo Banner */
.promo-banner {
  background: var(--promo-dark);
  color: var(--white);
  padding: 60px 0;
  margin: 20px 0;
}
.promo-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.promo-content h2 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.promo-content p { opacity: 0.8; margin-bottom: 15px; font-size: 14px; }
.promo-price { font-size: 32px; font-weight: 800; color: var(--yellow-bar); margin-bottom: 20px; }
.promo-image img { max-height: 250px; object-fit: contain; }

/* Featured Carousel */
.featured-section { background: var(--bg-light); padding-bottom: 50px; }
.featured-carousel { position: relative; }
.featured-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Brand Logos */
.brands-section { padding: 40px 0; background: var(--bg-light); }
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(100%);
}
.brands-row img { height: 40px; width: auto; object-fit: contain; }

/* Blog Section */
.blog-section { padding-bottom: 60px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.blog-card { display: flex; gap: 20px; }
.blog-image { position: relative; flex-shrink: 0; width: 180px; height: 140px; overflow: hidden; border-radius: var(--radius); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-date-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--yellow-bar);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  border-radius: 3px;
}
.blog-content h4 { font-size: 16px; margin-bottom: 8px; }
.blog-content h4 a { color: var(--text-dark); }
.blog-content h4 a:hover { color: var(--primary); }
.blog-meta { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.blog-content p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* Footer */
.site-footer { background: var(--promo-dark); color: #ccc; padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col p { font-size: 13px; line-height: 1.8; margin-bottom: 15px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #aaa; font-size: 13px; }
.footer-links a:hover { color: var(--white); }

.social-icons { display: flex; gap: 12px; margin-top: 15px; }
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.social-icon:hover { background: var(--primary); color: var(--white); }
.social-icon svg { width: 16px; height: 16px; }

.footer-newsletter input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #444;
  background: #333;
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  margin-bottom: 10px;
}
.footer-newsletter input:focus { outline: none; border-color: var(--primary); }

.footer-bottom {
  border-top: 1px solid #444;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
}
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: #aaa; font-size: 12px; }
.footer-legal a:hover { color: var(--white); }

/* Page Header */
.page-header {
  background: var(--bg-light);
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-header h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.breadcrumb { font-size: 13px; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }

/* Content Pages */
.page-content { padding: 50px 0; }
.page-content h2 { font-size: 24px; margin: 30px 0 15px; color: var(--primary-dark); }
.page-content h3 { font-size: 18px; margin: 25px 0 12px; }
.page-content p { margin-bottom: 15px; color: var(--text-muted); line-height: 1.8; }
.page-content ul, .page-content ol { margin: 15px 0 15px 25px; color: var(--text-muted); }
.page-content li { margin-bottom: 8px; line-height: 1.7; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}
.value-card {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
}
.value-card h3 { color: var(--primary); margin-bottom: 10px; }

/* Products Page */
.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 15px;
}
.filter-group { display: flex; gap: 10px; align-items: center; }
.filter-group select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  outline: none;
}
.filter-group select:focus { border-color: var(--primary); }
.products-count { font-size: 13px; color: var(--text-muted); }

/* Product Detail */
.product-detail { padding: 40px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.product-gallery .main-image {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius);
  margin-bottom: 15px;
}
.product-gallery .main-image img { width: 100%; height: 350px; object-fit: contain; margin: 0 auto; }
.thumbnail-row { display: flex; gap: 10px; }
.thumbnail-row img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--bg-light);
  padding: 5px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.thumbnail-row img.active, .thumbnail-row img:hover { border-color: var(--primary); }

.detail-info h1 { font-size: 28px; margin-bottom: 10px; }
.detail-rating { margin-bottom: 15px; }
.detail-price { margin-bottom: 20px; }
.detail-price .current-price { font-size: 28px; }
.detail-desc { color: var(--text-muted); margin-bottom: 25px; line-height: 1.8; }
.detail-meta { margin-bottom: 25px; font-size: 14px; }
.detail-meta span { display: block; margin-bottom: 5px; }
.detail-meta strong { color: var(--text-dark); }

.qty-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.qty-selector label { font-weight: 600; }
.qty-selector input {
  width: 60px;
  padding: 8px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
}

.detail-tabs { margin-top: 50px; }
.tab-buttons { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 25px; }
.tab-btn {
  padding: 12px 25px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel p { color: var(--text-muted); line-height: 1.8; margin-bottom: 15px; }
.specs-list { list-style: none; margin: 0; }
.specs-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.review-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.review-item h4 { font-size: 14px; margin-bottom: 5px; }
.review-item .review-rating { margin-bottom: 8px; }
.review-item p { font-size: 13px; color: var(--text-muted); }

.related-products { margin-top: 60px; }
.related-products h2 { text-align: center; margin-bottom: 30px; font-size: 24px; }

/* Cart Page */
.cart-page { padding: 40px 0; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-image { width: 100px; height: 100px; background: var(--bg-light); border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; padding: 5px; }
.cart-item-details { flex: 1; }
.cart-item-details h3 { font-size: 16px; margin-bottom: 5px; }
.cart-item-price { color: var(--primary); font-weight: 600; }
.cart-item-qty { display: flex; align-items: center; gap: 5px; }
.qty-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.qty-input { width: 50px; text-align: center; padding: 6px; border: 1px solid var(--border); border-radius: var(--radius); }
.cart-item-total { font-weight: 700; font-size: 16px; min-width: 80px; text-align: right; }
.cart-remove-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  padding: 5px;
}
.cart-remove-btn:hover { color: var(--sale-red); }

.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty h2 { margin-bottom: 15px; }
.cart-empty p { color: var(--text-muted); margin-bottom: 25px; }

.cart-summary {
  max-width: 400px;
  margin-left: auto;
  margin-top: 30px;
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius);
}
.cart-summary h3 { margin-bottom: 20px; font-size: 18px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.summary-row.total { font-size: 18px; font-weight: 700; border-top: 2px solid var(--border); padding-top: 15px; margin-top: 15px; }
.cart-summary .btn { width: 100%; margin-top: 20px; }

/* Checkout */
.checkout-page { padding: 40px 0; }
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.checkout-form-section h2 { font-size: 20px; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: var(--sale-red); }
.field-error { display: block; color: var(--sale-red); font-size: 12px; margin-top: 4px; }
.form-group.checkbox { display: flex; align-items: flex-start; gap: 10px; }
.form-group.checkbox input { width: auto; margin-top: 3px; }
.form-group.checkbox label { font-weight: 400; font-size: 13px; }
.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 15px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 14px;
}

.checkout-success {
  display: none;
  text-align: center;
  padding: 80px 20px;
}
.checkout-success svg { width: 80px; height: 80px; color: var(--new-green); margin-bottom: 20px; }
.checkout-success h2 { font-size: 28px; margin-bottom: 15px; color: var(--new-green); }
.checkout-success p { color: var(--text-muted); font-size: 16px; max-width: 500px; margin: 0 auto 30px; }

.order-summary-box {
  background: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius);
  position: sticky;
  top: 20px;
}
.order-summary-box h3 { margin-bottom: 20px; }
.order-item { display: flex; gap: 12px; margin-bottom: 15px; font-size: 13px; }
.order-item img { width: 50px; height: 50px; object-fit: contain; background: var(--white); border-radius: 3px; padding: 3px; }
.order-item-info { flex: 1; }
.order-item-price { font-weight: 600; white-space: nowrap; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); margin-bottom: 15px; line-height: 1.8; }
.contact-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
}
.contact-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Form Pages */
.form-page { max-width: 600px; margin: 0 auto; padding: 50px 0; }
.form-page h1 { text-align: center; margin-bottom: 10px; }
.form-page .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 30px; }
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* Legal Pages */
.legal-content { max-width: 900px; margin: 0 auto; padding: 50px 0; }
.legal-content h1 { font-size: 32px; margin-bottom: 10px; }
.legal-content .last-updated { color: var(--text-light); font-size: 13px; margin-bottom: 30px; }
.legal-content h2 { font-size: 22px; margin: 35px 0 15px; color: var(--primary-dark); border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.legal-content h3 { font-size: 17px; margin: 25px 0 10px; }
.legal-content p { margin-bottom: 15px; line-height: 1.9; color: #444; }
.legal-content ul { margin: 10px 0 20px 25px; }
.legal-content li { margin-bottom: 8px; line-height: 1.8; color: #444; }

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-hover);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.mobile-menu-btn svg { width: 24px; height: 24px; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  background: var(--white);
  width: 280px;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
}
.mobile-nav-panel .main-nav { flex-direction: column; gap: 0; }
.mobile-nav-panel .main-nav a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 20px;
}
