/* ====== General Reset ====== */
        @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;700&display=swap');
        
        :root {
            --primary-black: #000000;
            --light-gray: #f5f5f5;
            --medium-gray: #666666;
            --background-orange:  #fe9103;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
        }
        .logo img{
            width: 60px;
        }
        .btn-call {
            background-color: var(--primary-black);
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.7rem 2rem;
            border: none;
            font-weight: 600;
        }
        
        .btn-call:hover {
            background-color: #333;
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(to right, white 50%, #5a5a5a 50%);
        }
        
        .hero-content {
            padding: 3rem 0;
        }
        
        .hero-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 5rem;
            line-height: 1;
            margin-bottom: 0;
        }
        
        .hero-title-repair {
            color: #a8a8a8;
        }
        
        .hero-subtitle {
            color: var(--medium-gray);
            margin-top: 1.5rem;
            margin-bottom: 2rem;
            font-size: 1rem;
        }
        
        .btn-outline-dark {
            border: 2px solid var(--primary-black);
            color: var(--primary-black);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
            margin-right: 1rem;
            background: var(--background-orange);
        }
        .btn-primary{
            background: var(--background-orange);
        }
        
        .btn-outline-dark:hover {
            background-color: var(--primary-black);
            color: white;
        }
        
        .btn-contact {
            border: 2px solid var(--primary-black);
            background-color: transparent;
            color: var(--primary-black);
            padding: 0.8rem 2rem;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
        }
        
        .hero-image {
            position: relative;
            height: 90vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-badge {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            background-color: white;
            color: var(--primary-black);
            padding: 1rem 2rem;
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            text-align: center;
        }
        
        /* Chair Types Section */
        .chair-types-section {
            padding: 5rem 0;
            background-color: var(--light-gray);
        }
        
        .section-label {
            color: var(--medium-gray);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .section-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 3.5rem;
            margin-bottom: 3rem;
        }
        
        .chair-card {
            background-color: white;
            padding: 2rem;
            margin-bottom: 1.5rem;
            border: 1px solid #e0e0e0;
            transition: all 0.3s;
        }
        
        .chair-card:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }
        
        .chair-card i {
            font-size: 2rem;
            color: var(--medium-gray);
            margin-bottom: 1rem;
        }
        
        .chair-card h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            margin: 0;
        }
        
        /* Service Types */
        .service-types {
            padding: 3rem 0;
        }
        
        .service-box {
            padding: 3rem;
            text-align: center;
            border: 2px solid var(--primary-black);
            margin-bottom: 2rem;
            transition: all 0.3s;
        }
        
        .service-box:hover {
            background-color: var(--primary-black);
            color: white;
        }
        
        .service-box.active {
            background-color: var(--primary-black);
            color: white;
        }
        
        .service-box h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        /* Repair Parts Section */
        .repair-parts-section {
            padding: 5rem 0;
            background-color: white;
        }
        
        .parts-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
        }
        
        .part-item {
            border: 1px solid #e0e0e0;
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }
        
        .part-item:hover {
            background-color: var(--light-gray);
        }
        
        .part-category {
            text-transform: uppercase;
            font-size: 0.75rem;
            color: var(--medium-gray);
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        
        .part-name {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.2rem;
            margin: 0;
        }
        
        .cant-find-section {
            border: 2px solid var(--primary-black);
            padding: 3rem;
            margin-top: 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .cant-find-section h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background-color: var(--light-gray);
        }
        
        .contact-form {
            background-color: white;
            padding: 3rem;
        }
        
        .contact-form input,
        .contact-form textarea,
        .contact-form select {
            border: none;
            border-bottom: 1px solid #ccc;
            border-radius: 0;
            padding: 1rem 0;
            font-size: 0.9rem;
        }
        
        .contact-form input:focus,
        .contact-form textarea:focus,
        .contact-form select:focus {
            box-shadow: none;
            border-bottom: 2px solid var(--primary-black);
        }
        
        .contact-form label {
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 1px;
            color: var(--medium-gray);
            margin-bottom: 0.5rem;
        }
        
        .btn-submit {
            background-color: var(--primary-black);
            color: white;
            text-transform: uppercase;
            padding: 1rem 3rem;
            letter-spacing: 1px;
            border: none;
            font-weight: 600;
        }
        
        .btn-whatsapp {
            border: 2px solid var(--primary-black);
            background-color: transparent;
            color: var(--primary-black);
            text-transform: uppercase;
            padding: 1rem 2rem;
            letter-spacing: 1px;
            font-weight: 600;
            margin-left: 1rem;
        }
        
        .contact-info-box {
            border: 2px solid var(--primary-black);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        
        .contact-info-box h4 {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .contact-info-box i {
            font-size: 1.5rem;
            margin-right: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-black);
            color: white;
            padding: 3rem 0 2rem;
        }
        
        footer .footer-description {
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .footer-buttons .btn {
            margin-right: 1rem;
            margin-bottom: 1rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            font-size: 0.85rem;
            color: #999;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                background: white;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .parts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .cant-find-section {
                flex-direction: column;
                text-align: center;
            }
        }
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #212529;
  background-color: #fff;
  line-height: 1.7;
}

/* ====== Navbar ====== */
.navbar {
  transition: all 0.3s ease;
}
.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: all 0.3s;
}
.nav-link:hover,
.nav-link.active {
  color: #0d6efd !important;
}
.navbar .btn-dark {
  border-radius: 8px;
  padding: 6px 16px;
}

/* ====== Hero Section ====== */
#home h1 {
  font-weight: 800;
  line-height: 1.2;
}
#home ul li {
  margin-bottom: 6px;
  font-size: 15px;
}
#home .btn {
  border-radius: 10px;
  transition: all 0.3s ease;
}
#home .btn:hover {
  transform: translateY(-3px);
}

/* ====== Product Cards ====== */
#products .card {
  border-radius: 15px;
  transition: all 0.4s ease;
}
#products .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
#products i {
  transition: transform 0.3s ease;
}
#products .card:hover i {
  transform: scale(1.2);
}

/* ====== Why Choose Us ====== */
#features .bg-white {
  border-radius: 15px;
  transition: all 0.3s ease;
}
#features .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
#features i {
  transition: transform 0.3s ease;
}
#features .bg-white:hover i {
  transform: rotate(10deg) scale(1.15);
}

/* ====== Testimonials ====== */
#testimonials .bg-white {
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
}
#testimonials .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}
#testimonials i.fa-quote-left {
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 20px;
}

/* ====== Contact Form ====== */
#contact input,
#contact select,
#contact textarea {
  border-radius: 10px;
  border: 1px solid #dee2e6;
}
#contact input:focus,
#contact select:focus,
#contact textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.25);
}
#contact button {
  border-radius: 10px;
  transition: all 0.3s ease;
}
#contact button:hover {
  transform: translateY(-2px);
}

/* ====== Footer ====== */
.footer {
  background-color: #0f0f11;
}
.footer h4 {
  font-weight: 700;
}
.footer-link {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #0d6efd;
  transform: translateX(4px);
}
.footer i {
  color: #0d6efd;
}

/* ====== Animation Fade-In ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section {
  animation: fadeInUp 0.8s ease both;
}

.map-section {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.map-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.map-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.map-section p {
  color: #6b7280;
  margin-bottom: 2rem;
}

/* ======= Map Card ======= */
.map-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.map-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

/* ======= Responsive Map Frame ======= */
.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 400px;
  overflow: hidden;
}

@supports not (aspect-ratio: 16/9) {
  .map-frame {
    padding-top: 56.25%; /* Fallback for older browsers */
  }
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(5%) contrast(1.05) saturate(1.1);
  transition: transform 0.3s ease;
}

.map-frame iframe:hover {
  transform: scale(1.01);
}

/* ======= Info & Buttons ======= */
.map-info {
  padding: 20px;
}

.map-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.map-info p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

.map-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 0 20px;
}

.map-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.map-actions .btn-dark {
  background-color: #111;
  color: #fff;
  border: 1px solid #111;
}

.map-actions .btn-dark:hover {
  background-color: #333;
}

.map-actions .btn-outline-dark {
  border: 1px solid #111;
  color: #111;
  background: var(--background-orange);
}

.map-actions .btn-outline-dark:hover {
  background: #111;
  color: #fff;
}

/* ======= Responsive Design ======= */
@media (max-width: 768px) {
  .map-section {
    padding: 40px 0;
  }

  .map-section h2 {
    font-size: 1.6rem;
  }

  .map-frame {
    aspect-ratio: 4 / 5; /* taller map for phones */
    min-height: 420px;
  }

  .map-actions {
    flex-direction: column;
    gap: 12px;
  }

  .map-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ====== Responsiveness ====== */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }
  #home h1 {
    font-size: 1.8rem;
  }
  #products .card {
    margin-bottom: 15px;
  }
  footer .col-md-6 {
    margin-bottom: 20px;
  }
}
