/* ===================================
   MOnB Devices - Modern Bright CSS
   Inspired by AMADERM Design
   =================================== */

:root {
  /* Updated to bright AMADERM-style blue */
  --primary-color: #00a8e1;
  --secondary-color: #f8f812;
  --dark-bg: #1a1a1a;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --text-muted: #666666;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --light-bg: #f8f9fa;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: #ffffff;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================================
   Header Styles - Bright & Clean
   ================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-top {
  /* Lighter background for modern look */
  background: #f8f9fa;
  color: var(--text-dark);
  padding: 12px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info a {
  /* Dark text for better contrast on light background */
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
  font-weight: 500;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.separator {
  opacity: 0.3;
}

.header-actions {
  display: flex;
  gap: 20px;
}

.header-link {
  /* Primary blue color for CTA links */
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.header-link:hover {
  opacity: 0.8;
}

.main-nav {
  /* More padding for spacious feel */
  padding: 20px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  padding: 8px 0;
  font-size: 15px;
}

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

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  list-style: none;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-weight: 500;
}

.dropdown a:hover {
  background: var(--light-bg);
  color: var(--primary-color);
}

.btn-nav {
  background: var(--primary-color);
  color: var(--text-light) !important;
  padding: 12px 28px !important;
  border-radius: 30px;
  font-weight: 600;
}

.btn-nav:hover {
  background: #0090c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 168, 225, 0.3);
}

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

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===================================
   Hero Section - Bright & Spacious
   =================================== */

.hero-section {
  /* Very light gradient background like AMADERM */
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 100px 20px;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-title {
  /* Larger, bolder typography like AMADERM */
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 22px;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.6;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.feature-badge {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border-color);
}

.badge-icon {
  font-size: 24px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ===================================
   Buttons - Clean & Modern
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background: #0090c7;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 168, 225, 0.3);
}

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

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* ===================================
   Wavelength Section
   =================================== */

.wavelength-section {
  /* More padding for spacious layout */
  padding: 100px 20px;
  background: #ffffff;
}

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

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 40px;
  height: 40px;
  color: var(--text-light);
}

.section-header h2 {
  /* Bolder, larger headings */
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 700;
}

.wavelengths {
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.section-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===================================
   Features Section
   =================================== */

.features-section {
  padding: 100px 20px;
  background: var(--light-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  text-align: center;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: var(--primary-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  color: var(--text-light);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 15px;
}

/* ===================================
   Quality Section
   =================================== */

.quality-section {
  padding: 100px 20px;
  background: #ffffff;
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.quality-text h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}

.quality-list {
  list-style: none;
  margin-bottom: 35px;
}

.quality-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--success-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.quality-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
  padding: 100px 20px;
  /* Bright blue gradient instead of dark */
  background: linear-gradient(135deg, var(--primary-color) 0%, #0090c7 100%);
  color: var(--text-light);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 25px;
  font-weight: 700;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 35px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* White button variant for CTA section */
.cta-section .btn-secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid #ffffff;
}

.cta-section .btn-secondary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* ===================================
   Footer
   =================================== */

.site-footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 80px 20px 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-col p {
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-content,
  .quality-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .header-top-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ===================================
   Product Pages Styles
   =================================== */

.hero-product {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-product-image {
  position: relative;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-product-content h1 {
  /* Larger, bolder product titles */
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.product-subtitle {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 25px;
}

.product-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.wavelengths {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.wavelength {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

.product-price {
  font-size: 52px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.product-features {
  list-style: none;
  margin-bottom: 35px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.product-features li:before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--success-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

.product-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.paypal-form {
  display: inline-block;
}

.paypal-form button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.paypal-form button:hover {
  background: #0090c7;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 168, 225, 0.3);
}

/* Product Tabs */
.product-tabs {
  padding: 100px 20px;
  background: #ffffff;
}

.tabs {
  max-width: 1280px;
  margin: 0 auto;
}

.tab-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
  border-bottom: 2px solid var(--border-color);
  flex-wrap: wrap;
}

.tab-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 30px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  margin-bottom: -2px;
}

.tab-button:hover {
  color: var(--primary-color);
}

.tab-button.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-button svg {
  width: 20px;
  height: 20px;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--text-dark);
  font-weight: 700;
}

.tab-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 35px;
  color: var(--text-dark);
  font-weight: 700;
}

.tab-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin: 20px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.feature-list li:before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--success-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.component-card {
  background: #f9fafb;
  padding: 25px;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.component-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.component-card h3 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.component-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.service-highlight {
  background: linear-gradient(135deg, var(--primary-color), #0ea5e9);
  color: var(--text-light);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
}

.service-highlight h3 {
  color: var(--text-light);
  margin-top: 0;
}

.service-highlight p {
  color: var(--text-light);
  opacity: 0.95;
  margin-bottom: 0;
}

.why-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.why-section:last-child {
  border-bottom: none;
}

.cta-box {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.cta-box h3 {
  margin-top: 0;
  color: var(--text-dark);
}

.cta-box p {
  color: var(--text-dark);
  margin-bottom: 0;
}

/* Product Gallery */
.product-gallery {
  padding: 100px 20px;
  background: var(--light-bg);
}

.product-gallery h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: var(--text-dark);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Product Details */
.product-details {
  padding: 100px 20px;
  background: #ffffff;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}

.detail-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.detail-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 700;
}

.detail-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Technical Specifications */
.technical-specs {
  padding: 100px 20px;
  background: var(--light-bg);
}

.technical-specs h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: var(--text-dark);
  font-weight: 700;
}

.specs-table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  /* Completing the incomplete background property */
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.specs-table th,
.specs-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.specs-table th {
  background: var(--primary-color);
  color: var(--text-light);
  font-weight: 600;
  width: 40%;
}

.specs-table td {
  color: var(--text-dark);
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: none;
}

/* ===================================
   Legal Pages Styles
   =================================== */

.legal-page {
  padding: 100px 20px;
  background: #ffffff;
}

.legal-page .container {
  max-width: 900px;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 40px;
  color: var(--text-dark);
  text-align: center;
  font-weight: 700;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  font-weight: 700;
}

.legal-content h3 {
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-weight: 600;
}

.legal-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 16px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 40px 0;
}

.legal-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.legal-content em {
  font-style: italic;
  color: var(--text-muted);
}

/* ===================================
   Contact Form Styles
   =================================== */

.contact-section {
  padding: 100px 20px;
  background: var(--light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-info-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 700;
}

.contact-info-section p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.contact-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--text-light);
}

.contact-item-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: none;
}

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

.contact-form-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

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

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

.form-submit {
  width: 100%;
}

.success-message,
.error-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.success-message {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.error-message {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}

/* ===================================
   Financing Calculator Styles
   =================================== */

.financing-section {
  padding: 100px 20px;
  background: var(--light-bg);
}

.financing-content {
  max-width: 800px;
  margin: 0 auto;
}

.financing-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-align: center;
  font-weight: 700;
}

.financing-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.calculator-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.calculator-card h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 700;
}

.calculator-result {
  background: linear-gradient(135deg, var(--primary-color), #0090c7);
  color: var(--text-light);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 30px;
}

.calculator-result h3 {
  font-size: 18px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.calculator-result .monthly-rate {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
}

.calculator-result .total-amount {
  font-size: 16px;
  opacity: 0.9;
}

.financing-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.benefit-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  color: var(--text-light);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 600;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================================
   Responsive Updates for New Pages
   =================================== */

@media (max-width: 968px) {
  .hero-product-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-product-content h1 {
    font-size: 32px;
  }

  .product-price {
    font-size: 36px;
  }

  .tab-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .components-grid,
  .details-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .specs-table th,
  .specs-table td {
    padding: 15px;
    font-size: 14px;
  }

  .legal-page h1 {
    font-size: 32px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .contact-form-section {
    padding: 30px 20px;
  }
}

@media (max-width: 640px) {
  .hero-product-content h1 {
    font-size: 28px;
  }

  .product-subtitle {
    font-size: 20px;
  }

  .product-price {
    font-size: 32px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn-primary,
  .product-actions .btn-secondary,
  .paypal-form button {
    width: 100%;
    justify-content: center;
  }

  .tab-button {
    font-size: 14px;
    padding: 12px 15px;
  }

  .tab-button svg {
    width: 16px;
    height: 16px;
  }

  .specs-table {
    font-size: 13px;
  }

  .specs-table th {
    width: 35%;
  }

  .legal-page h1 {
    font-size: 28px;
  }

  .legal-content h2 {
    font-size: 22px;
  }

  .legal-content h3 {
    font-size: 18px;
  }

  .calculator-result .monthly-rate {
    font-size: 36px;
  }

  .financing-benefits {
    grid-template-columns: 1fr;
  }
}
