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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.logo-text h2 {
  color: #084cd5;
  font-size: 1.8rem;
  margin-bottom: 0;
  line-height: 1.2;
}

.logo-text span {
  color: #04091a;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #2563eb;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
}

.btn-call,
.btn-whatsapp {
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-call {
  background: #2563eb;
  color: white;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-call:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-primary {
  background: #ea580c;
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.search-bar {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-bar input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  font-size: 1rem;
}

.search-bar button {
  background: #ea580c;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.search-bar button:hover {
  background: #dc2626;
}

/* Featured Products */
.featured-products {
  padding: 80px 0;
  background: #f8fafc;
}

.featured-products h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

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

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: #1e293b;
  font-size: 1.3rem;
}

.product-card p {
  padding: 0 1.5rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.btn-view {
  display: block;
  margin: 0 1.5rem 1.5rem;
  padding: 0.8rem;
  background: #2563eb;
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-view:hover {
  background: #1d4ed8;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
}

.why-choose-us h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem;
}

.feature i {
  font-size: 3rem;
  color: #ea580c;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.feature p {
  color: #64748b;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #f8fafc;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

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

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #475569;
}

.customer strong {
  color: #1e293b;
  display: block;
}

.customer span {
  color: #64748b;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-section h3 {
  color: #ea580c;
  margin-bottom: 1rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ea580c;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #ea580c;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #dc2626;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info i {
  width: 20px;
  color: #ea580c;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2rem;
  text-align: center;
  color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .contact-buttons {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 200px;
  }
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 150px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* About Page Styles */
.about-content {
  padding: 80px 0;
}

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

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: #475569;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision {
  padding: 80px 0;
  background: #f8fafc;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission,
.vision {
  text-align: center;
  padding: 2rem;
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: #ea580c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.mv-icon i {
  font-size: 2rem;
  color: white;
}

.our-values {
  padding: 80px 0;
}

.our-values h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value {
  text-align: center;
  padding: 2rem;
}

.value i {
  font-size: 2.5rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.why-choose-about {
  padding: 80px 0;
  background: #f8fafc;
}

.why-choose-about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.choose-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.choose-number {
  width: 50px;
  height: 50px;
  background: #ea580c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

/* Products Page Styles */
.product-categories {
  padding: 80px 0;
}

.product-categories h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

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

.category-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.category-icon i {
  font-size: 2rem;
  color: white;
}

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

.category-card li {
  padding: 0.3rem 0;
  color: #64748b;
}

.featured-products-page {
  padding: 80px 0;
  background: #f8fafc;
}

.featured-products-page h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.products-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.product-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-item:hover {
  transform: translateY(-5px);
}

.product-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.product-features span {
  background: #f1f5f9;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #475569;
}

.product-features i {
  color: #22c55e;
  margin-right: 0.3rem;
}

.btn-inquiry {
  width: 100%;
  padding: 0.8rem;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-inquiry:hover {
  background: #22c55e;
}

.brands-section {
  padding: 80px 0;
}

.brands-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.brand-item {
  background: white;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #475569;
  transition: all 0.3s;
}

.brand-item:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-3px);
}

/* Services Page Styles */
.services-overview {
  padding: 80px 0;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.service-features li {
  padding: 0.3rem 0;
  color: #64748b;
}

.service-features i {
  color: #22c55e;
  margin-right: 0.5rem;
}

.btn-service {
  width: 100%;
  padding: 0.8rem;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-service:hover {
  background: #22c55e;
}

.repair-process {
  padding: 80px 0;
  background: #f8fafc;
}

.repair-process h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #ea580c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.service-areas {
  padding: 80px 0;
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.areas-list {
  list-style: none;
  margin: 1.5rem 0;
}

.areas-list li {
  padding: 0.5rem 0;
  color: #475569;
}

.areas-list i {
  color: #ea580c;
  margin-right: 0.5rem;
  width: 20px;
}

.map-placeholder {
  background: #f1f5f9;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  border: 2px dashed #cbd5e1;
}

.map-placeholder i {
  font-size: 3rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.service-pricing {
  padding: 80px 0;
  background: #f8fafc;
}

.service-pricing h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

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

.pricing-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.pricing-card.featured {
  border: 2px solid #ea580c;
  transform: scale(1.05);
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #ea580c;
  margin: 1rem 0;
}

.pricing-card ul {
  list-style: none;
  margin: 1rem 0;
}

.pricing-card li {
  padding: 0.3rem 0;
  color: #64748b;
}

.pricing-note {
  text-align: center;
  color: #64748b;
  font-style: italic;
}

/* Contact Page Styles */
.contact-info-section {
  padding: 80px 0;
}

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

.contact-details h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #ea580c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-text h4 {
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.contact-text a {
  color: #2563eb;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
  color: #1e293b;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #1d4ed8;
}

.quick-contact {
  padding: 80px 0;
  background: #f8fafc;
}

.quick-contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.quick-option {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.quick-option i {
  font-size: 2.5rem;
  color: #ea580c;
  margin-bottom: 1rem;
}

.btn-quick {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-quick:hover {
  background: #1d4ed8;
}

.btn-quick.whatsapp {
  background: #25d366;
}

.btn-quick.whatsapp:hover {
  background: #22c55e;
}

.map-section {
  padding: 80px 0;
}

.map-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.btn-map {
  background: #2563eb;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s;
}

.btn-map:hover {
  background: #1d4ed8;
}

.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  margin-bottom: 1rem;
  color: #1e293b;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

@media (max-width: 768px) {
  .about-grid,
  .mv-grid,
  .contact-grid,
  .areas-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .featured-products h2,
  .why-choose-us h2,
  .testimonials h2 {
    font-size: 2rem;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

.btn-view-category {
    width: 100%;
    padding: 0.8rem;
    background: #ea580c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-view-category:hover {
    background: #dc2626;
}

/* Power Tools Section */
.power-tools-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-back {
    background: #64748b;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-back:hover {
    background: #475569;
}

.power-tools-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tool-category {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.tool-category h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.tools-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-item {
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.tool-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tool-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: white;
    padding: 10px;
}

.tool-info {
    padding: 1.5rem;
}

.tool-info h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #64748b;
    font-size: 0.9rem;
}

.sale-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ea580c;
}

.discount {
    background: #22c55e;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    padding: 0.3rem 0;
    color: #475569;
    font-size: 0.9rem;
}

.features li:before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    margin-right: 0.5rem;
}

.btn-order {
    width: 100%;
    padding: 0.8rem;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-order:hover {
    background: #22c55e;
    transform: translateY(-2px);
}
.cordless-subsection {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f1f5f9;
    border-radius: 8px;
    border-left: 4px solid #ea580c;
}

.cordless-subsection h4 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #cbd5e1;
}

.cordless-subsection:last-child {
    margin-bottom: 0;
}
/* Owner Section */
.owner-section {
    padding: 80px 0;
    background: white;
}

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

.owners-photos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.owner-photo {
    text-align: center;
}

.owner-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ea580c;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.owner-photo img:hover {
    transform: scale(1.05);
}

.photo-label {
    margin-top: 0.8rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
}

.owner-info h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.owner-info h3 {
    font-size: 1.5rem;
    color: #ea580c;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.owner-info p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .owner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .owners-photos {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .owner-photo img {
        width: 150px;
        height: 150px;
    }
}
.owner-details {
    margin-bottom: 1rem;
}

.owner-details h3 {
    font-size: 1.4rem;
    color: #ea580c;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.owner-title {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem !important;
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: white;
    padding: 10px;
}
/* Product Slideshow */
.product-slideshow {
    padding: 80px 0;
    background: #f8fafc;
}

.product-slideshow h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.slideshow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.slide {
    display: none;
    position: relative;
    text-align: center;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: white;
    padding: 20px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slide-caption p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ea580c;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 0 5px 5px 0;
}

.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}

.dots-container {
    text-align: center;
    padding: 1.5rem;
    background: white;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: #ea580c;
}

@media (max-width: 768px) {
    .slideshow-container {
        max-width: 90%;
    }
    
    .slide img {
        height: 300px;
    }
    
    .slide-caption {
        padding: 1rem;
    }
    
    .slide-caption h3 {
        font-size: 1.2rem;
    }
}