/* ============================================================
   RL POWER SOLAR SYSTEM - Master Stylesheet
   ============================================================ */

/* --- CSS Variables (Theme Colors - edit here to restyle) --- */
:root {
  --primary: #f57c00;
  --primary-dark: #e65100;
  --primary-light: #ffe0b2;
  --secondary: #1565c0;
  --secondary-dark: #0d47a1;
  --dark: #1a1a2e;
  --dark-light: #16213e;
  --text: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-light: #f8f9fa;
  --bg-grey: #f0f0f0;
  --border: #e0e0e0;
  --success: #2e7d32;
  --danger: #c62828;
  --shadow: 0 2px 15px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; }
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.4rem; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(245,124,0,0.4);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-secondary:hover {
  background: #fff;
  color: var(--primary);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover {
  background: var(--dark-light);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 12px 0;
}
.header.scrolled {
  background: rgba(26, 26, 46, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  padding: 8px 0;
  backdrop-filter: blur(10px);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}
.logo-text h2 {
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.2;
}
.logo-text span {
  font-size: 0.7rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 5px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 50%, #0a1628 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(245,124,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21,101,192,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content .hero-badge {
  display: inline-block;
  background: rgba(245,124,0,0.15);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(245,124,0,0.3);
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 3.2rem;
}
.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary), #ffa726);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}
.hero-stat .label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ============================================================
   FEATURES / SERVICES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--bg);
  padding: 35px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
}
.feature-card h3 {
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--bg);
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.product-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.product-image {
  height: 220px;
  background: linear-gradient(135deg, #e8f5e9 0%, #fff3e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary);
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}
.product-info {
  padding: 25px;
}
.product-category {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.product-info h3 {
  margin-bottom: 10px;
  color: var(--dark);
}
.product-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.product-price .current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success);
}
.product-price .original {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
}
.product-features {
  margin-bottom: 20px;
}
.product-features li {
  padding: 4px 0;
  font-size: 0.88rem;
  color: var(--text-light);
}
.product-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--success);
  margin-right: 8px;
  font-size: 0.8rem;
}
.product-actions {
  display: flex;
  gap: 10px;
}
.product-actions .btn { flex: 1; text-align: center; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  background: linear-gradient(135deg, var(--primary-light), #e8f5e9);
  border-radius: var(--radius);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: var(--primary);
}
.about-text h2 {
  color: var(--dark);
  margin-bottom: 15px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.02rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.stat-card {
  text-align: center;
  padding: 30px 15px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-card .stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 5px;
}

/* Mission/Vision */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.mv-card {
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  background: var(--bg);
}
.mv-card h3 {
  color: var(--dark);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mv-card h3 i { color: var(--primary); }
.mv-card p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--bg);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.testimonial-stars {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-name h4 { font-size: 1rem; color: var(--dark); }
.testimonial-name span { font-size: 0.85rem; color: var(--text-light); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}
.contact-card h4 { color: var(--dark); margin-bottom: 5px; }
.contact-card p { color: var(--text-light); font-size: 0.95rem; }
.contact-card a { color: var(--secondary); }
.contact-card a:hover { color: var(--primary); }
.contact-form {
  background: var(--bg);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form h3 {
  color: var(--dark);
  margin-bottom: 25px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg);
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,124,0,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.map-container {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================================================
   BUY / ORDER PAGE
   ============================================================ */
.buy-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.buy-step {
  text-align: center;
  max-width: 200px;
}
.buy-step .step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}
.buy-step h4 { color: var(--dark); margin-bottom: 5px; }
.buy-step p { color: var(--text-light); font-size: 0.88rem; }

.order-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.order-form-container h3 {
  color: var(--dark);
  margin-bottom: 25px;
  text-align: center;
}

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,124,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.page-banner h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
}
.page-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  position: relative;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  position: relative;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 30px; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-col h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-about p {
  font-size: 0.93rem;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.93rem;
}
.footer-contact i {
  color: var(--primary);
  margin-top: 4px;
  min-width: 18px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.88rem;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ============================================================
   FORM SUCCESS MESSAGE
   ============================================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}
.form-success i {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: 15px;
}
.form-success h3 { color: var(--dark); margin-bottom: 10px; }
.form-success p { color: var(--text-light); }

/* ============================================================
   LEGAL PAGES (Terms & Conditions, Privacy Policy)
   ============================================================ */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}
.legal-updated {
  background: var(--bg-light);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 40px;
  border-left: 4px solid var(--primary);
}
.legal-section {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child {
  border-bottom: none;
}
.legal-section h2 {
  color: var(--dark);
  font-size: 1.35rem;
  margin-bottom: 15px;
  padding-bottom: 8px;
  position: relative;
}
.legal-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.legal-section h3 {
  color: var(--dark);
  font-size: 1.05rem;
  margin: 18px 0 10px;
}
.legal-section p {
  color: var(--text-light);
  font-size: 0.97rem;
  margin-bottom: 10px;
  line-height: 1.8;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.legal-section ul li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-section ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--primary);
  font-size: 0.8rem;
}
.legal-section ul li strong {
  color: var(--dark);
}
.legal-contact {
  background: var(--bg-light);
  padding: 25px;
  border-radius: var(--radius);
  margin-top: 15px;
  border: 1px solid var(--border);
}
.legal-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.95rem;
}
.legal-contact p:last-child { margin-bottom: 0; }
.legal-contact i {
  color: var(--primary);
  min-width: 20px;
  text-align: center;
}
.legal-contact a {
  color: var(--secondary);
}
.legal-contact a:hover {
  color: var(--primary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  .hero-content h1 { font-size: 2.5rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { gap: 30px; }
  .hero-stat .number { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .buy-steps { gap: 20px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .menu-toggle { display: flex; }
  .nav-links a { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .product-actions { flex-direction: column; }
  .order-form-container { padding: 25px; }
}
