/* ===== Global Styles ===== */
:root {
    --primary: #1a2332;
    --secondary: #e74c3c;
    --accent: #3498db;
    --light: #f4f6f8;
    --dark: #1a2332;
    --gray: #6b7c93;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section subtitle */
.section-desc {
    text-align: center;
    color: var(--gray);
    margin-bottom: 45px;
    font-size: 1.05rem;
}

.btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}
.btn.primary:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

.btn.secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
}
.btn.secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
    transform: translateY(-2px);
}

.btn.dark-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn.dark-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn:hover {
    transform: translateY(-2px);
}

/* ===== Scroll Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
.logo img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.logo-text p {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 500;
    
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1; 
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
}

nav ul li a:hover {
    color: var(--secondary);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Mobile menu - hidden by default */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 20px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
}
/* ===== Hero Section ===== */
/* ===== Hero Carousel ===== */
.hero-carousel {
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}
.carousel-slides {
    position: relative;
    height: 520px;
}
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}
.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}
.carousel-slide.active .carousel-content h1 {
    animation: slideUp 0.8s ease forwards;
}
.carousel-slide.active .carousel-content p {
    animation: slideUp 0.8s 0.15s ease forwards;
    opacity: 0;
}
.carousel-slide.active .carousel-content .cta-buttons {
    animation: slideUp 0.8s 0.3s ease forwards;
    opacity: 0;
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}
.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.4));
}
.carousel-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding-top: 140px;
}
.carousel-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.carousel-content p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-arrow:hover {
    background: rgba(255,255,255,0.3);
    border-color: white;
}
.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }
.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}
.carousel-dots .dot.active {
    background: white;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ===== Highlights Section ===== */
.highlights {
    padding: 90px 0;
    background: var(--light);
}

.highlights h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-bottom-color: var(--secondary);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.highlight-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* ===== Footer ===== */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-col i {
    margin-right: 10px;
    color: var(--secondary);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
}

.social-links a.whatsapp:hover { background: #25D366; }
.social-links a.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-links a.youtube:hover { background: #FF0000; }

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .carousel-slides {
        height: 600px;
    }
    .carousel-content {
        padding-top: 80px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .carousel-content h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}




/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5)), url('../images/about-hero-image.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 2rem;
}

.about-text h3 {
    color: var(--secondary);
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .label {
    font-size: 0.9rem;
}

.cta-section {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.values {
    background: var(--light);
    padding: 80px 0;
}

.values h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.team {
    padding: 80px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.team-member {
    text-align: center;
    max-width: 250px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light);
}

.team-member h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.team-member p {
    color: var(--gray);
    margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .experience-badge {
        right: 0;
    }
}



/* Products Page Styles */
.products-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.2)), url('../images/products-image.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 80px;
}
.products-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}




/* Product Grid Layout */
.product-showcase {
    padding: 40px 0;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }
  
  .product-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
  }
  
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: rgba(231,76,60,0.1);
  }
  
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 18px;
    transition: transform 0.4s ease;
  }
  
  .product-card:hover img {
    transform: scale(1.05);
  }
  
  .product-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px 0;
    line-height: 1.3;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .product-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .product-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 10px;
    }
    .product-card h3 {
      font-size: 0.85rem;
    }
  }










/* (Dead code removed) */


/* Catalog Page Styles */
.catalog-hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.85), rgba(44, 62, 80, 0.85)), url('../images/catalog-image-new.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 80px;
    position: relative;
}

.catalog-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.catalog-download {
    padding: 80px 0;
    background: #f9f9f9;
}

.catalog-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.catalog-info {
    flex: 1;
}

.catalog-info h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.catalog-info .intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature {
    background: white;
    padding: 28px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid transparent;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-top-color: var(--secondary);
}

.feature i {
    font-size: 1.8rem;
    color: white;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 700;
}

.download-options {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn.outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn.outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.catalog-preview {
    flex: 1;
    position: relative;
}

.preview-container {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.preview-container:hover {
    transform: translateY(-8px);
}

.preview-container img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.preview-container:hover img {
    transform: scale(1.03);
}

.floating-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 18px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(231,76,60,0.4);
}

.floating-badge span {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.floating-badge p {
    font-size: 0.95rem;
    margin-top: 5px;
    font-weight: 500;
}

.catalog-sections {
    padding: 80px 0;
    text-align: center;
}

.section-subtitle {
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.section-card {
    background: white;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}

.section-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-bottom-color: var(--secondary);
}

.section-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #fef5f5, #fff0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(231,76,60,0.1);
}

.section-icon i {
    font-size: 2.2rem;
    color: var(--secondary);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.35rem;
    font-weight: 700;
}

.section-card ul {
    list-style: none;
    text-align: left;
    padding-left: 20px;
}

.section-card ul li {
    margin-bottom: 10px;
    position: relative;
}

.section-card ul li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.physical-copy {
    background: var(--primary);
    color: white;
    padding: 80px 0;
}

.copy-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.copy-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.copy-image img {
    width: 100%;
    display: block;
}

.copy-info {
    flex: 1;
}

.copy-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.copy-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn.secondary:hover {
    background: white;
    color: var(--primary);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .catalog-container {
        flex-direction: column;
    }
    
    .copy-container {
        flex-direction: column;
    }
    
    .copy-info {
        text-align: center;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .catalog-hero h1 {
        font-size: 2.2rem;
    }
    
    .download-options {
        flex-direction: column;
    }
    
    .download-options a {
        width: 100%;
        text-align: center;
    }
}


/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.1)), url('../images/contactus-image.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-main {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 5px;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #1a2332;
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.social-icons a.whatsapp:hover {
    background: #25D366;
}

.social-icons a.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a.youtube:hover {
    background: #FF0000;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 0 0 80px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .info-card {
        flex-direction: column;
        gap: 10px;
    }
}

/* thankyou page */

.thank-you {
    text-align: center;
    padding: 100px 0;
}

.thank-you h1 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* error page */

.error-message {
    text-align: center;
    padding: 100px 0;
}

.error-message h1 {
    color: #e74c3c;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-message p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


/* Vertical Gallery */
.vertical-gallery {
    padding: 60px 0;
    text-align: center;
  }
  
  .gallery-item {
    margin: 0 auto 30px;
    max-width: 1200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .gallery-item:hover {
    transform: scale(1.02);
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #eee;
  }
  
  .image-caption {
    padding: 15px;
    background: white;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
  }
  
  /*Add spacing between sections */
  .container > h2 {
    margin-bottom: 40px;
  }

/* ===== Active Nav Link ===== */
nav ul li a.active {
    color: var(--secondary);
}
nav ul li a.active::after {
    width: 100%;
}

/* ===== Logo Text (semantic fix) ===== */
.logo-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

/* ===== Why Choose Us Section ===== */
.why-choose {
    padding: 80px 0;
    background: white;
}
.why-choose h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 2rem;
}
.why-choose .section-desc {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}
.stat-item {
    padding: 25px 20px;
    border-radius: 10px;
    background: var(--light);
    transition: transform 0.3s;
}
.stat-item:hover {
    transform: translateY(-4px);
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1.2;
}
.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.why-card {
    background: var(--light);
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.why-card i {
    font-size: 2.2rem;
    color: white;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.why-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.why-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 80px 0;
    background: white;
}
.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    font-size: 2rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--light);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}
.testimonial-card .quote-icon {
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 15px;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.7;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-author .author-avatar {
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-author .author-info h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 2px;
}
.testimonial-author .author-info span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== Product Card Enhancements ===== */
.product-card .product-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: left;
    flex-grow: 1;
}
.product-card .product-specs li {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}
.product-card .product-specs li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.product-card .product-specs li strong {
    color: var(--primary);
    font-weight: 600;
}
.product-card .card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: auto;
}
.product-card .btn-enquire {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex: 1;
}
.product-card .btn-enquire:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(231,76,60,0.3);
}
.product-card .btn-view-details {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex: 1;
}
.product-card .btn-view-details:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Stretched link to make whole card clickable */
.product-card .btn-view-details::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* Ensure Enquire button is clickable on top of the stretched link */
.product-card .btn-enquire {
    position: relative;
    z-index: 2;
}

/* ===== Product Modal ===== */
.product-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.product-modal.active { display: flex; }
.modal-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    background: none;
    border: none;
    z-index: 10;
}
.modal-close:hover { color: var(--secondary); }
.modal-body { padding: 30px; }
.modal-body .modal-product-img {
    width: 100%; height: 250px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--light);
}
.modal-body .modal-product-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.modal-body .modal-product-specs {
    list-style: none; padding: 0;
}
.modal-body .modal-product-specs li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}
.modal-body .modal-product-specs li strong { color: var(--primary); }
.modal-body .modal-cta { margin-top: 20px; text-align: center; }

/* ===== Dark Button Variant ===== */
.btn.dark-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn.dark-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px; right: 25px;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ===== Footer Registration Info ===== */
.footer-registration {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ===== Additional Mobile Fixes ===== */
@media (max-width: 768px) {
    .copyright { flex-direction: column; gap: 10px; text-align: center; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2rem; }
    .why-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .products-hero h1, .about-hero h1 { font-size: 2.2rem; }
}

/* ===== Thank You / Error page spacing ===== */
.thank-you, .error-message {
    margin-top: 80px;
}

/* ===== Founder Section ===== */
.founder-section {
    padding: 80px 0;
    background: var(--light);
}
.founder-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    font-size: 2rem;
}
.founder-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}
.founder-image {
    flex: 0 0 320px;
    position: relative;
}
.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.founder-info {
    flex: 1;
}
.founder-info h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 5px;
}
.founder-title {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.founder-bio {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}
.career-timeline h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
}
.career-timeline h4 i {
    color: var(--secondary);
    margin-right: 8px;
}
.timeline-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    position: relative;
    padding-top: 10px;
}
/* Horizontal connecting line */
.timeline-track::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: #ddd;
    z-index: 0;
}
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 5px;
}
.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gray);
    border: 3px solid white;
    box-shadow: 0 0 0 2px #ddd;
    z-index: 1;
    margin-bottom: 12px;
}
.timeline-item.current .timeline-dot {
    background: var(--secondary);
    box-shadow: 0 0 0 2px var(--secondary), 0 0 8px rgba(231,76,60,0.3);
}
.timeline-duration {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
    order: -1;
}
.timeline-item strong {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 3px;
}
.timeline-company {
    color: var(--gray);
    font-size: 0.78rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .founder-grid {
        flex-direction: column;
    }
    .founder-image {
        flex: none;
        max-width: 280px;
        margin: 0 auto;
    }
    .timeline-track {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 0;
    }
    .timeline-track::before {
        display: none;
    }
}

/* ===== Product Detail Page ===== */
.product-detail-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #1a2332 100%);
    color: white;
    padding: 130px 0 50px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.product-detail-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(231,76,60,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
}
.product-detail-hero .breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 12px;
    opacity: 0.7;
    letter-spacing: 0.3px;
}
.product-detail-hero .breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}
.product-detail-hero .breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}
.product-detail-hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.product-detail-hero > .container > p {
    font-size: 1.05rem;
    opacity: 0.8;
}
.product-detail {
    padding: 70px 0;
    background: white;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: start;
}
.product-image-main {
    background: white;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    position: sticky;
    top: 110px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.product-image-main img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-image-main:hover img {
    transform: scale(1.08);
}
.product-detail-info h2 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light);
}
.product-detail-info > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 0.97rem;
}
.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
}
.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}
.specs-table tr:last-child {
    border-bottom: none;
}
.specs-table td {
    padding: 15px 20px;
    font-size: 0.95rem;
}
.specs-table td:first-child {
    font-weight: 700;
    color: var(--primary);
    width: 40%;
    background: #f8f9fa;
    border-right: 1px solid rgba(0,0,0,0.05);
}
.specs-table td:last-child {
    color: #333;
    background: white;
}
.specs-table tr:nth-child(even) td:first-child {
    background: #f2f4f7;
}
.specs-table tr:nth-child(even) td:last-child {
    background: #fafbfc;
}
.product-applications {
    margin-bottom: 28px;
    padding: 22px;
    background: var(--light);
    border-radius: 10px;
}
.product-applications h3 {
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 1.05rem;
    font-weight: 700;
}
.product-applications ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}
.product-applications ul li {
    padding: 7px 0;
    color: #444;
    position: relative;
    padding-left: 26px;
    font-size: 0.93rem;
}
.product-applications ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    position: absolute;
    left: 0;
    font-size: 0.55rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 9px;
}
.product-cta-box {
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    margin-top: 25px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.product-cta-box p {
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
    font-size: 1.15rem;
    opacity: 1;
}
.product-cta-box .btn {
    margin: 8px;
    min-width: 180px;
}
.product-cta-box .btn.dark-outline {
    border-color: rgba(255,255,255,0.3);
    color: white;
}
.product-cta-box .btn.dark-outline:hover {
    background: white;
    color: var(--primary);
}
.product-features-section {
    padding: 70px 0;
    background: var(--light);
}
.product-features-section h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 45px;
    font-size: 1.8rem;
    font-weight: 700;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.feature-item {
    background: white;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
}
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(231,76,60,0.2);
}
.feature-item i {
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #1a2332, #2c3e50);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}
.feature-item:hover i {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}
.feature-item h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
}
.feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Secondary Back Navigation */
.back-navigation {
    padding: 25px 0 0;
}
.back-navigation.bottom {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.back-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.back-btn-secondary:hover {
    color: var(--secondary);
    transform: translateX(-5px);
}
.back-btn-secondary i {
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .product-image-main {
        position: static;
    }
    .product-detail-hero h1 {
        font-size: 1.8rem;
    }
    .product-applications ul {
        grid-template-columns: 1fr;
    }
}

/* ===== Product Search Bar ===== */
.product-search {
    position: relative;
    max-width: 500px;
    margin: 0 auto 30px;
}
.product-search i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 1rem;
    pointer-events: none;
}
.product-search input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
.product-search input:focus {
    border-color: var(--secondary);
}
.search-count {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--gray);
}
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}
.no-results i {
    font-size: 3rem;
    opacity: 0.2;
    margin-bottom: 15px;
}
.no-results p {
    font-size: 1.1rem;
}
.product-card.hidden {
    display: none;
}

/* ===== Featured Products (Homepage) ===== */
.featured-products {
    padding: 80px 0;
    background: white;
}
.featured-products h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 2rem;
}
.featured-product-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    padding: 30px;
    background: var(--light);
    border-radius: 12px;
}
.featured-product-item.reverse {
    flex-direction: row-reverse;
}
.featured-product-text {
    flex: 1;
}
.featured-product-text h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.featured-product-text > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}
.featured-product-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.featured-product-text ul li {
    padding: 4px 0;
    color: #555;
    font-size: 0.95rem;
}
.featured-product-cta .btn {
    margin-right: 10px;
    margin-bottom: 8px;
}
.featured-product-img {
    flex: 0 0 380px;
}
.featured-product-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .featured-product-item,
    .featured-product-item.reverse {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }
    .featured-product-img {
        flex: none;
        max-width: 100%;
    }
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background: var(--light);
}
.faq-section h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 2rem;
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.faq-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    border-left: 3px solid var(--secondary);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.92rem;
    font-family: inherit;
    color: var(--primary);
    font-weight: 600;
    text-align: left;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #f5f5f5;
}
.faq-question i {
    font-size: 0.75rem;
    color: var(--secondary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 10px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer p {
    padding: 0 18px 16px;
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ===== Save Time & Money Section ===== */
.save-time-section {
    padding: 70px 0;
    background: white;
}
.save-time-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}
.save-time-text {
    flex: 1;
}
.save-time-label {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.save-time-text h2 {
    color: var(--primary);
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
}
.highlight-underline {
    text-decoration: underline;
    text-decoration-color: #f39c12;
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}
.save-time-text > p {
    color: var(--gray);
    line-height: 1.7;
}
.save-time-stats {
    display: flex;
    gap: 40px;
    flex-shrink: 0;
}
.circle-stat {
    text-align: center;
    position: relative;
    width: 140px;
}
.circle-stat svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}
.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 6;
}
.circle-fill {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}
.circle-fill.orange {
    stroke: #f39c12;
}
.circle-text {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
}
.circle-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}
.circle-number small {
    font-size: 1rem;
}
.circle-stat p {
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .faq-list {
        grid-template-columns: 1fr;
    }
    .save-time-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .save-time-text h2 {
        font-size: 1.6rem;
    }
}