/* styles.css */

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar */
nav {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 0 24px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    height: 80px;
    border-bottom: 1.5px solid #e5e7eb;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: auto;
    height: 50px;
    object-fit: contain;
    display: block;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
}

.logo-title {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0 auto;
    padding: 0;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    transition: 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
}

.nav-links li a:hover, .nav-links li a.active {
    background-color: #22c55e;
    color: #fff;
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #222;
    font-size: 28px;
    cursor: pointer;
    margin-right: 12px;
    z-index: 1200;
    order: -1;
}

/* Hero Section */
.hero-services {
    background: #fafbfa;
    padding: 24px 8px 48px;
    color: #111;
    text-align: center;
    margin-top: 80px;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.03);
}

.hero-services h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #111;
    letter-spacing: 1px;
}

.hero-services p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #22c55e;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid #22c55e;
    margin: 0 8px 0 0;
}

.cta-button.secondary {
    background: #fff;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.cta-button:hover {
    background-color: #16a34a;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 5px 15px rgba(34,197,94,0.12);
}

/* Sections Styling */
section, .sell-form-section, .why-sell, .faq, .trust-elements, .newsletter, .contact, .footer-section, .products, .blog-content {
    background: #f4f4f5;
    border-radius: 18px;
    margin: 8px auto;
    max-width: 1200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 12px 8px;
}

/* Service Boxes */
.service-container, .steps-container, .blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.service-box, .step-box, .blog-post {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.service-box:hover, .step-box:hover, .blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: auto;
    padding: 20px;
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.contact-form button {
    background-color: #007bff;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #1a1a2e;
        flex-direction: column;
        padding: 20px 0;
        gap: 10px;
        width: 100vw;
        align-items: stretch;
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        margin: 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li a {
        display: block;
        padding: 15px 0;
        text-align: center;
    }
    .mobile-menu-btn {
        display: block;
        margin-right: 12px;
        margin-left: 0;
    }
    .logo {
        margin-left: 8px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-box, .step-box, .blog-post {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Sell Page Styles */
.sell-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 40px 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.sell-container form {
  flex: 1 1 350px;
  max-width: 400px;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  padding: 0;
  text-align: left;
}

.sell-container h2 {
  text-align: center;
  margin-bottom: 18px;
}

.sell-container label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  text-align: left;
}

.sell-container input[type="text"],
.sell-container input[type="tel"],
.sell-container input[type="email"],
.sell-container select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  background: #f8f9fa;
  transition: border-color 0.2s;
}

.sell-container input[type="text"]:focus,
.sell-container input[type="tel"]:focus,
.sell-container input[type="email"]:focus,
.sell-container select:focus {
  border-color: #007bff;
  outline: none;
}

.sell-container button[type="submit"] {
  padding: 12px 28px;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.sell-container button[type="submit"]:hover {
  background: #007bff;
  color: #fff;
}

.sell-image {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.sell-image img {
  max-width: 260px;
  border-radius: 50%;
  background: #e0e7ff;
  padding: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

@media (max-width: 900px) {
  .sell-container {
    flex-direction: column;
    gap: 24px;
    padding: 30px 20px;
    text-align: center;
  }
  .sell-image img {
    max-width: 180px;
  }
  .sell-container form {
    max-width: 100%;
    text-align: center;
  }
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.benefit-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

.benefit-box i {
    color: #007bff;
    margin-bottom: 20px;
}

.benefit-box h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 20px;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-box {
    position: relative;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Service Categories */
.services {
    padding: 80px 20px;
    background: #f8f9fa;
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category h3 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.category ul {
    list-style: none;
    padding: 0;
}

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

.category ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category ul li a:hover {
    color: #007bff;
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: white;
}

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

.faq-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1a1a2e;
    margin-bottom: 10px;
}

/* Trust Elements */
.trust-elements {
    padding: 80px 20px;
    background: #f8f9fa;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.trust-item i {
    color: #007bff;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;

  /* Ensure footer columns sit on the footer background (not a white card) */
  footer .footer-section {
    background: transparent;
    box-shadow: none;
    padding: 0 0 24px 0;
  }

  /* Make footer card text readable (black) while keeping hover accent) */
  footer .footer-section,
  footer .footer-section p,
  footer .footer-section li,
  footer .footer-section ul li a,
  footer .footer-section .social-links a {
    color: #0b0b0b !important;
  }
  footer .footer-section h3 {
    color: #0b0b0b !important;
  }
  footer .footer-section ul li a:hover {
    color: #22c55e !important;
  }
    margin: 0 auto;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    color: #007bff;
    font-size: 24px;
}

/* Footer */
footer {
    background: #f4f4f5;
    color: #000;
    padding: 40px 0 0 0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 180px;
    margin-bottom: 24px;
}

.footer-section h3 {
    color: #1a1a2e;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #22c55e;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.social-links a {
    color: #333;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #22c55e;
}

.footer-bottom {
    text-align: center;
    padding: 18px 0 10px 0;
    color: #666;
    font-size: 0.98rem;
    border-top: 1px solid #e9ecef;
    margin-top: 18px;
}

.footer-bottom a {
    color: #22c55e;
    margin-left: 10px;
    text-decoration: underline;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 2000;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(34,197,94,0.15);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.whatsapp-widget a {
    color: #fff;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.whatsapp-widget:hover {
    background: #16a34a;
    transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .footer-container, .trust-container, .why-sell-container, .products-grid, .blog-grid, .benefit-container {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    .footer-section {
        min-width: 0;
    }
}
@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #1a1a2e;
        flex-direction: column;
        padding: 20px 0;
        gap: 10px;
        width: 100vw;
        align-items: stretch;
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
        margin: 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li a {
        display: block;
        padding: 15px 0;
        text-align: center;
    }
    .mobile-menu-btn {
        display: block;
        margin-right: 12px;
        margin-left: 0;
    }
    .logo {
        margin-left: 8px;
    }
    .footer-container, .trust-container, .why-sell-container, .products-grid, .blog-grid, .benefit-container {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    .footer-section {
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .hero-services {
        padding: 12px 0 16px 0;
        border-radius: 0 0 18px 18px;
    }
    .feature-bar {
        flex-direction: column;
        gap: 10px;
        padding: 10px 4px;
    }
    .sell-form-card, .contact-form, .newsletter-form, form {
        padding: 16px 2vw 16px 2vw;
    }
    .whatsapp-widget {
        bottom: 18px !important;
        right: 12px !important;
    }
    .logo-img {
        height: 40px;
        width: auto;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x600') no-repeat center center;
    background-size: cover;
    padding: 120px 20px 60px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.blog-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.blog-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.post-meta .category {
    color: #007bff;
    font-weight: 500;
}

.blog-post h2, .blog-post h3 {
    margin-bottom: 15px;
    color: #1a1a2e;
}

.blog-post p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.pagination a.active {
    background: #007bff;
    color: white;
}

.pagination a:hover:not(.active) {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.pagination a.next {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
}

/* Newsletter Section */
.newsletter {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.newsletter p {
    color: #666;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Responsive Blog Design */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Buy Page Styles */
.buy-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x600') no-repeat center center;
    background-size: cover;
    padding: 120px 20px 60px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.buy-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Filters Section */
.filters {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: 500;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: #f8f9fa;
    cursor: pointer;
}

/* Products Grid */
.products {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: #1a1a2e;
}

.product-specs {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1rem;
}

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

.buy-now {
    flex: 1;
    padding: 12px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-now:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.add-to-cart {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

/* Why Buy Section */
.why-buy {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.why-buy h2 {
    margin-bottom: 40px;
    color: #1a1a2e;
}

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

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .buy-header h1 {
        font-size: 2rem;
    }
    
    .filter-container {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Sell Mobile Page Header */
.sell-header {
  text-align: center;
  margin-top: 110px;
  margin-bottom: 24px;
  padding: 0 10px;
}
.sell-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.sell-header p {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 0;
}

/* Progress Indicator */
.progress-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  margin-top: 0;
}
.progress-indicator .step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e7ff;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 36px;
  position: relative;
  box-sizing: border-box;
  border: 2.5px solid #bfcfff;
  transition: background 0.2s, color 0.2s;
  padding: 0;
  margin: 0;
}
.progress-indicator .step.active,
.progress-indicator .step.completed {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}
.progress-indicator .step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 3px;
  background: #bfcfff;
  border-radius: 2px;
  z-index: -1;
}

/* Helper Text */
.helper-text {
  display: block;
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 8px;
  margin-top: -6px;
}

/* Why Sell With Us Section */
.why-sell {
  background: #f8f9fa;
  padding: 50px 10px 30px 10px;
  margin: 40px auto 0 auto;
  border-radius: 18px;
  max-width: 900px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
}
.why-sell h2 {
  color: #1a1a2e;
  font-size: 2rem;
  margin-bottom: 28px;
}
.why-sell-container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.why-sell-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 28px 20px;
  min-width: 180px;
  max-width: 220px;
  flex: 1 1 180px;
  text-align: center;
  transition: transform 0.2s;
}
.why-sell-box i {
  color: #007bff;
  font-size: 2rem;
  margin-bottom: 10px;
}
.why-sell-box h3 {
  font-size: 1.1rem;
  color: #1a1a2e;
  margin: 10px 0 8px 0;
}
.why-sell-box p {
  color: #555;
  font-size: 0.98rem;
  margin: 0;
}
.why-sell-box:hover {
  transform: translateY(-4px) scale(1.03);
}

/* Privacy Note */
.privacy-note {
  max-width: 900px;
  margin: 24px auto 0 auto;
  background: #e0e7ff;
  color: #1a1a2e;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.privacy-note i {
  color: #007bff;
  font-size: 1.2rem;
}

/* FAQ Section (reuse existing .faq styles, but add margin for sell page) */
#faq-sell.faq {
  margin: 40px auto 0 auto;
  max-width: 900px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 40px 20px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .why-sell, #faq-sell.faq, .privacy-note {
    max-width: 98vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .why-sell-container {
    flex-direction: column;
    gap: 18px;
  }
  .why-sell-box {
    max-width: 100%;
    min-width: 0;
  }
  .sell-header {
    margin-top: 90px;
  }
  .progress-indicator {
    gap: 10px;
  }
}

/* Make sure the WhatsApp widget does not overlap the form on mobile */
@media (max-width: 600px) {
  .whatsapp-widget {
    bottom: 18px !important;
    right: 12px !important;
  }
}

/* Sell Mobile Hero Banner */
.sell-hero {
  background: linear-gradient(90deg, #e0f2fe 0%, #c7d2fe 100%);
  padding: 120px 0 40px 0;
  margin-top: 80px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.sell-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 24px auto;
  flex-wrap: wrap;
}
.sell-hero-text {
  flex: 1 1 340px;
  min-width: 260px;
  text-align: left;
}
.sell-hero-text h1 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.sell-hero-text p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 24px;
}
.hero-cta {
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 30px;
  background: #22c55e;
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(34,197,94,0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  font-weight: 600;
}
.hero-cta:hover {
  background: #16a34a;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.sell-hero-img {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sell-hero-img img {
  max-width: 260px;
  border-radius: 30px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  background: #fff;
  padding: 18px;
}

/* Feature Bar */
.feature-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 18px 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  font-size: 1.08rem;
  font-weight: 500;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a1a2e;
  min-width: 0;
  flex-shrink: 1;
}
.feature-item i {
  color: #007bff;
  font-size: 1.3rem;
}

/* Repair Home Highlight Section */
.repair-home-highlight {
    padding: 80px 20px;
    background: white;
}

.repair-home-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 40px;
}

.repair-home-text h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
}

.repair-home-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.repair-process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-step i {
    color: #007bff;
    margin-bottom: 20px;
}

.process-step h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
}

/* Sell Form Card */
.sell-form-section {
  background: none;
  padding: 0 0 40px 0;
}
.sell-form-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 480px;
  margin: 16px auto 0 auto;
  padding: 38px 30px 32px 30px;
  position: relative;
  z-index: 2;
}
.sell-form-card h2 {
  text-align: center;
  margin-bottom: 18px;
  color: #1a1a2e;
}
.sell-form-card label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  text-align: left;
}
.sell-form-card input[type="text"],
.sell-form-card input[type="tel"],
.sell-form-card input[type="email"],
.sell-form-card select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1rem;
  background: #f1f5f9;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.sell-form-card input:focus,
.sell-form-card select:focus {
  border-color: #007bff;
  outline: none;
}
.sell-form-card .cta-button {
  width: 100%;
  margin-top: 10px;
  background: #007bff;
  color: #fff;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 0;
  border: none;
  box-shadow: 0 2px 10px rgba(0,123,255,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.sell-form-card .cta-button:hover {
  background: #0056b3;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* Progress Indicator (reuse previous styles, but center and space) */
.progress-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  margin-top: 0;
}
.progress-indicator .step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e7ff;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 36px;
  position: relative;
  box-sizing: border-box;
  border: 2.5px solid #bfcfff;
  transition: background 0.2s, color 0.2s;
  padding: 0;
  margin: 0;
}
.progress-indicator .step.active,
.progress-indicator .step.completed {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}
.progress-indicator .step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 3px;
  background: #bfcfff;
  border-radius: 2px;
  z-index: -1;
}

/* Helper Text */
.helper-text {
  display: block;
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 8px;
  margin-top: -6px;
}

/* Why Sell With Us Section */
.why-sell {
  background: #f8f9fa;
  padding: 50px 10px 30px 10px;
  margin: 40px auto 0 auto;
  border-radius: 18px;
  max-width: 900px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
}
.why-sell h2 {
  color: #1a1a2e;
  font-size: 2rem;
  margin-bottom: 28px;
}
.why-sell-container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.why-sell-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 28px 20px;
  min-width: 180px;
  max-width: 220px;
  flex: 1 1 180px;
  text-align: center;
  transition: transform 0.2s;
}
.why-sell-box i {
  color: #007bff;
  font-size: 2rem;
  margin-bottom: 10px;
}
.why-sell-box h3 {
  font-size: 1.1rem;
  color: #1a1a2e;
  margin: 10px 0 8px 0;
}
.why-sell-box p {
  color: #555;
  font-size: 0.98rem;
  margin: 0;
}
.why-sell-box:hover {
  transform: translateY(-4px) scale(1.03);
}

/* Privacy Note */
.privacy-note {
  max-width: 900px;
  margin: 24px auto 0 auto;
  background: #e0e7ff;
  color: #1a1a2e;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.privacy-note i {
  color: #007bff;
  font-size: 1.2rem;
}

/* FAQ Section (reuse existing .faq styles, but add margin for sell page) */
#faq-sell.faq {
  margin: 40px auto 0 auto;
  max-width: 900px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 40px 20px;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .sell-hero-content {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .sell-hero-text {
    text-align: center;
  }
  .sell-hero-img {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .feature-bar, .why-sell, #faq-sell.faq, .privacy-note {
    max-width: 98vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .why-sell-container {
    flex-direction: column;
    gap: 18px;
  }
  .why-sell-box {
    max-width: 100%;
    min-width: 0;
  }
  .sell-form-card {
    margin: 8px auto 0 auto;
    padding: 28px 10px 24px 10px;
  }
  .sell-hero {
    padding: 90px 0 24px 0;
  }
}
@media (max-width: 600px) {
  .sell-hero-img img {
    max-width: 160px;
    padding: 8px;
  }
  .feature-bar {
    flex-direction: column;
    gap: 10px;
    padding: 10px 4px;
  }
  .sell-form-card {
    padding: 16px 2vw 16px 2vw;
  }
  .whatsapp-widget {
    bottom: 18px !important;
    right: 12px !important;
  }
}

/* HERO SERVICES GRID */
.hero-services {
  background: #fafbfa;
  padding: 24px 8px 48px;
  color: #111;
  text-align: center;
  margin-top: 80px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
}
.hero-services h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
  color: #111;
  letter-spacing: 1px;
}
.hero-services p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.07);
  padding: 18px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 0;
  height: 100%;
}
.service-card i {
  color: #22c55e;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1a1a2e;
  text-align: center;
  flex-shrink: 0;
}
.service-card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  text-align: center;
  flex-grow: 1;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .cta-button {
  width: 100%;
  padding: 10px 0;
  font-size: 1rem;
  border-radius: 30px;
  margin: 0;
  margin-top: auto;
  flex-shrink: 0;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 25px rgba(34,197,94,0.13);
}
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 700px) {
  .hero-services {
    padding: 12px 0 16px 0;
    border-radius: 0 0 18px 18px;
  }
  .services-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .service-card {
    min-width: 220px;
    max-width: 240px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}
@media (max-width: 500px) {
  .hero-services h1 {
    font-size: 1.2rem;
  }
  .service-card {
    min-width: 170px;
    max-width: 200px;
    padding: 18px 6px 14px 6px;
  }
}
@media (max-width: 600px) {
  .hero-services {
    padding: 2px 0 2px 0;
    margin-top: 60px;
  }
  .hero-services h1 {
    font-size: 1.02rem;
    margin-bottom: 2px;
  }
  .hero-services p {
    font-size: 0.82rem;
    margin-bottom: 2px;
    max-width: 95vw;
  }
  .services-grid {
    gap: 2px;
  }
  .service-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 2px 1px 2px 1px;
    border-radius: 8px;
    font-size: 0.82rem;
    align-items: center;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    margin-bottom: 1px;
  }
  .service-card i {
    font-size: 1.08rem !important;
    margin-bottom: 1px;
  }
  .service-card h3 {
    margin-bottom: 1px;
    font-size: 0.85rem;
  }
  .service-card p {
    margin-bottom: 1px;
    font-size: 0.78rem;
  }
  .service-card .cta-button {
    width: 98%;
    font-size: 0.82rem;
    padding: 5px 0;
    border-radius: 24px;
    margin: 0 auto 0 auto;
    display: block;
  }
}

/* Modal Popup Styles */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  max-width: 350px;
  width: 90vw;
  position: relative;
  text-align: left;
}
.close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.6rem;
  color: #888;
  cursor: pointer;
  font-weight: bold;
}
#landing-modal-form label {
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
  font-weight: 500;
}
#landing-modal-form input {
  width: 100%;
  padding: 8px 10px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 8px;
  background: #f8f9fa;
  transition: border-color 0.2s;
}
#landing-modal-form input:focus {
  border-color: #007bff;
  outline: none;
}
#landing-modal-form button {
  width: 100%;
  padding: 10px 0;
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s;
}
#landing-modal-form button:hover {
  background: #16a34a;
}

@media (max-width: 600px) {
  nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 8px;
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1.5px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
    flex: 1 1 0;
    justify-content: center;
  }
  .logo-img {
    height: 40px;
    width: auto;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }
  .logo-title {
    display: none;
  }
}

@media (max-width: 400px) {
  .logo-img {
    height: 35px;
  }
  .mobile-menu-btn {
    color: #111 !important;
    font-size: 2rem;
    margin-right: 0;
    margin-left: 0;
    order: 2;
    position: absolute;
    right: 12px;
    top: 10px;
  }
  .nav-links {
    top: 60px;
  }
}

@media (max-width: 600px) {
  .repair-form-section {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin: 12px auto !important;
    max-width: 100vw !important;
    padding: 0 0 0 0 !important;
  }
  .repair-form-card {
    max-width: 100vw !important;
    margin: 0 auto 0 auto !important;
    border-radius: 12px !important;
    padding: 10px 2vw 10px 2vw !important;
  }
  .popular-repairs {
    max-width: 100vw !important;
    margin: 0 auto !important;
    border-radius: 12px !important;
    padding: 10px 2vw 10px 2vw !important;
    box-shadow: 0 1.5px 6px rgba(0,0,0,0.06) !important;
  }
  .popular-repairs h3 {
    text-align: center !important;
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }
  .repairs-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .repair-type-card {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 10px !important;
    padding: 10px 0 !important;
    font-size: 1rem !important;
    margin: 0 !important;
  }
}

/* Repair Page Styles */
.repair-hero {
  background: linear-gradient(135deg, #fafbfa 0%, #e0f2fe 50%, #f0f9ff 100%);
  margin-top: 80px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
  padding: 40px 20px 48px;
  text-align: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.repair-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23007bff" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%2322c55e" opacity="0.1"/><circle cx="60" cy="80" r="1" fill="%23007bff" opacity="0.1"/></svg>') repeat;
  pointer-events: none;
}
.repair-hero-text {
  flex: 1 1 350px;
  min-width: 280px;
  text-align: left;
  z-index: 1;
}
.repair-hero-text h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111;
  line-height: 1.2;
}
.repair-hero-text p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}
.repair-hero-img {
  flex: 1 1 350px;
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.repair-hero-img img {
  max-width: 350px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}
.repair-hero-img img:hover {
  transform: scale(1.05);
}
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 24px 0 12px 0;
}
.brand-logos img {
  width: 48px; height: 48px; object-fit: contain; border-radius: 12px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.06); cursor: pointer; transition: box-shadow 0.2s, transform 0.2s;
}
.brand-logos img:hover { box-shadow: 0 4px 16px #22c55e33; transform: scale(1.08); }
.feature-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 20px 16px;
  max-width: 1200px;
  margin: 20px auto;
  font-size: 1.1rem;
  font-weight: 500;
  border: 1px solid #e9ecef;
}
.feature-item {
  background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #1a1a2e;
  min-width: 0;
  flex-shrink: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0f2fe;
}
.feature-item:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.feature-item i {
  color: #22c55e;
  font-size: 1.3em;
}
.repair-process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
}
.process-step {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 50px 20px 25px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e9ecef;
}
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}
.process-step i {
  color: #007bff;
  font-size: 2.5em;
  margin-bottom: 15px;
}
.process-step h3 {
  font-size: 1.2em;
  margin: 10px 0 10px 0;
  color: #1a1a2e;
  font-weight: 600;
}
.process-step p {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
}
.repair-form-section { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; align-items: flex-start; margin: 60px auto; max-width: 1200px; padding: 0 20px; }
.repair-form-card { background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%); border-radius: 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); padding: 40px 32px; max-width: 420px; width: 100%; flex: 1 1 380px; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #e9ecef; }
.repair-form-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.repair-form-card h2 { margin-bottom: 24px; color: #1a1a2e; font-size: 1.8em; text-align: center; }
.repair-form-card label { font-weight: 600; margin-bottom: 8px; display: block; text-align: left; color: #333; }
.repair-form-card input, .repair-form-card textarea, .repair-form-card select { width: 100%; padding: 10px 12px; margin-bottom: 12px; border: 2px solid #e0e7ff; border-radius: 12px; font-size: 1rem; background: #fff; transition: border-color 0.3s, box-shadow 0.3s; }
.repair-form-card input:focus, .repair-form-card textarea:focus, .repair-form-card select:focus { border-color: #22c55e; outline: none; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1); }
.repair-form-card .cta-button { width: 100%; padding: 12px 0; font-size: 1.1rem; border-radius: 30px; margin: 10px 0 0 0; transition: transform 0.2s ease; }
.repair-form-card .cta-button:hover { transform: translateY(-2px); }
.repair-form-card .photo-upload { margin-bottom: 18px; }
.popular-repairs { flex: 1 1 350px; max-width: 550px; background: linear-gradient(135deg, #f8f9fa 0%, #e0f2fe 100%); border-radius: 24px; box-shadow: 0 6px 24px rgba(0,0,0,0.08); padding: 32px 24px; border: 1px solid #d1e7ff; }
.popular-repairs h3 { margin-bottom: 20px; color: #1a1a2e; font-size: 1.5em; text-align: center; }
.repairs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 20px; }
.repair-type-card { background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%); border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); padding: 20px 12px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #e0f2fe; cursor: pointer; }
.repair-type-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.repair-type-card i { color: #007bff; font-size: 1.8em; margin-bottom: 10px; }
.repair-type-card p { font-size: 1em; color: #555; margin: 0; font-weight: 500; }
.testimonials { background: linear-gradient(135deg, #f8f9fa 0%, #e0f2fe 100%); border-radius: 24px; box-shadow: 0 6px 24px rgba(0,0,0,0.08); padding: 50px 20px; margin: 60px auto; max-width: 1200px; border: 1px solid #d1e7ff; }
.testimonials h2 { text-align: center; margin-bottom: 40px; color: #1a1a2e; font-size: 2em; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; justify-content: center; }
.testimonial-item { position: relative; background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%); border-radius: 20px; box-shadow: 0 6px 20px rgba(0,0,0,0.08); padding: 35px 20px 20px 20px; max-width: 300px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #e0f2fe; }
.testimonial-item::before { content: '"'; font-size: 3em; color: #22c55e; position: absolute; top: 10px; left: 15px; opacity: 0.3; }
.testimonial-item:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
.testimonial-item img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; border: 3px solid #e0f2fe; }
.testimonial-item .stars { color: #ffc107; margin-bottom: 10px; font-size: 1.2em; }
.testimonial-item p { font-size: 1em; color: #555; margin-bottom: 15px; line-height: 1.6; font-style: italic; }
.testimonial-item span { font-weight: 600; color: #1a1a2e; }
.choose-brand {
  text-align: center;
  margin: 40px 0 20px 0;
}
.choose-brand h3 {
  color: #1a1a2e;
  font-size: 1.5em;
  margin-bottom: 10px;
}
.brand-logos {
  max-width: 700px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  gap: 20px;
}
.brand-logos img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, #f0f9ff 100%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
  border: 2px solid transparent;
}
.brand-logos img:hover {
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
  transform: scale(1.1);
  border-color: #22c55e;
}
@media (max-width: 900px) { 
  .repair-hero { 
    flex-direction: column; 
    gap: 30px; 
    padding: 30px 15px 40px; 
  } 
  .repair-hero-text h1 { 
    font-size: 2rem; 
  } 
  .repair-form-section { 
    flex-direction: column; 
    gap: 30px; 
    padding: 0 15px; 
  } 
  .testimonials { 
    padding: 30px 15px; 
  } 
  .testimonial-grid { 
    grid-template-columns: 1fr; 
  } 
  .repair-process-flow { 
    grid-template-columns: 1fr; 
    gap: 20px; 
  } 
}
@media (max-width: 600px) {
  .repair-hero-text h1 {
    font-size: 1.8rem;
  }
  .repair-hero-img img {
    max-width: 280px;
  }
  .feature-bar {
    padding: 15px 10px;
    gap: 15px;
  }
  .feature-item {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  .process-step {
    padding: 40px 15px 20px 15px;
  }
  .repair-form-card {
    padding: 30px 20px;
  }
  .popular-repairs {
    padding: 24px 16px;
  }
  .repairs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}