/* CSS RESET & VARIABLES */

/* Home Page */
        *, * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI",Tahoma,Geneva,Verdana,sans-serif;
}
        
        :root {
            --dark-green: #082b1c; 
            --primary-green: #145e3f;
            --light-green: #298f65;
            --accent-green: #00d289; 
            --text-dark: #111;
            --text-grey: #666;
            --text-grey-light: #a0a0a5;
            --white: #fff;
            --card-bg: #fafafa;
            --icon-bg: #e6f5ef;
            --section-bg-dark: #0a0a0c;
            --card-bg-dark: #1c1c1e;
            
            --contact-form-bg: #112d21;
            --contact-input-bg: #1c3b2b;
            --contact-btn-bg: #5f9e7c;
            --brand-green: #b8e06b;
            --brand-blue: #2092d1;

            --bg-light: #f9fbfb;
            --border-color: #eaeaea;
            --section-bg-dark: #0a0a0c;


        }

        /* --- HEADER SECTION --- */
        .top-bar {
            background-color: var(--brand-green);
            color: var(--text-dark);
            font-size: 0.8rem;
            display: flex;
            justify-content: space-between;
            padding: 10px 5%;
        }

        .top-bar div span, .top-bar div span {
  margin-right: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

        .top-bar .social-icons a, .top-bar .social-icons a {
  color: #a3b8af;
  margin-left: 10px;
  text-decoration: none;
}

        /* STICKY NAVBAR */
        .navbar, .navbar {
  background-color: var(--white);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

        .brand-logo, .brand-logo {
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

        .nav-links, .nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a.active, .nav-links a:hover {
            color: var(--primary-green);
        }

        .btn-contact {
            background-color: var(--brand-blue);
            color: var(--white) !important;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
        }

        /* Mobile Menu Toggle Button (Hidden on Desktop) */
        .menu-toggle, .menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--primary-green);
  cursor: pointer;
  transition: 0.3s;
}

        /* --- HERO CAROUSEL SECTION --- */
        .hero {
            position: relative;
            height: 73vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            z-index: 1;
        }

        .carousel-slide::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            /* background: rgba(0, 0, 0, 0.4); */
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: var(--white);
        }

        .pill-text {
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            letter-spacing: 2px;
            margin-bottom: 20px;
            display: inline-block;
        }

        .hero-content h2 {
            font-size: 4rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

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

        .btn-outline {
            border: 1px solid var(--white);
            color: var(--white);
        }

        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            z-index: 10;
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
        }

        .dot.active {
            background: var(--white);
            width: 30px;
            border-radius: 10px;
        }

        .slide-counter {
            position: absolute;
            bottom: 30px;
            right: 5%;
            z-index: 10;
            color: var(--white);
            font-size: 0.9rem;
            letter-spacing: 2px;
        }

        /* --- STATS / COUNTER SECTION --- */
        .stats-section {
            background-color: var(--brand-blue);
            color: var(--white);
            display: flex;
            justify-content: space-around;
            padding: 20px 5%;
            text-align: center;
        }

        .stat-box h3 {
            font-size: 2rem;
            margin-bottom: 5px;
        }

        .stat-box p {
            color: var(--white);
            font-size: 1rem;
            font-weight: 400;
        }

        /* --- WHO WE ARE (ABOUT) SECTION --- */
        .about-section {
            padding: 80px 5%;
            background-color: var(--white);
        }

        .about-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 50px;
        }

        .about-header .subtitle {
            color: var(--light-green);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .about-header h2 {
            font-size: 2.8rem;
            color: var(--text-dark);
            margin: 10px 0 20px;
            font-weight: 700;
        }

        .about-header p {
            color: var(--text-grey);
            font-size: 1rem;
            line-height: 1.6;
        }

        .about-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
        }

        .card {
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 40px 30px;
            transition: transform 0.3s;
        }

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

        .icon-box {
            background-color: var(--icon-bg);
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .icon-box i {
            color: var(--primary-green);
            font-size: 1.2rem;
        }

        .icon-box i.fa-bullseye { color: #e55a5a; }

        .card h4 {
            color: var(--primary-green);
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .card p {
            color: var(--text-grey);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* --- PRODUCTS SECTION --- */
        .products-section {
            background-color: var(--card-bg);
            padding: 80px 5%;
            color: var(--section-bg-dark);
        }

        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
        }

        .products-title-area .subtitle {
            color: var(--accent-green);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 5px;
        }

        .products-title-area h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin: 0;
        }

        .view-all-link {
            color: var(--accent-green);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: opacity 0.3s;
        }

        .view-all-link:hover {
            opacity: 0.8;
        }

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

        .product-card {
            background-color: var(--card-bg-dark);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

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

        .product-image-container {
            position: relative;
            height: 250px;
            background: linear-gradient(
294deg, #a8c0d6 0%, #40a1f6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .product-image-container img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
        }

        .category-pill {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgb(32 146 209);
            color: var(--white);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            letter-spacing: 1px;
            backdrop-filter: blur(4px);
            z-index: 1;
        }

        .product-details {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-details h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--white);
        }

        .product-price {
            color: var(--accent-green);
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .product-price .per-piece {
            color: var(--text-grey-light);
            font-size: 0.85rem;
            font-weight: 400;
        }

        .product-desc {
            color: var(--text-grey-light);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .view-details-btn {
            color: var(--accent-green);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- TESTIMONIALS SECTION --- */
        .testimonials-section {
            background-color: var(--white);
            padding: 80px 5%;
            color: var(--text-dark);
            overflow: hidden;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .testimonials-header .subtitle {
            color: var(--light-green);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 10px;
        }

        .testimonials-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .testimonial-carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-track-wrapper {
            overflow: hidden;
            padding: 15px 5px 30px;
        }

        .testimonial-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-card {
            flex: 0 0 calc((100% - 60px) / 3); 
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.04);
            box-sizing: border-box;
        }

        .stars {
            color: #ffc107;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .review-text {
            color: var(--text-grey);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            font-style: italic;
        }

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

        .client-avatar {
            width: 50px;
            height: 50px;
            background-color: var(--primary-green);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .client-details h4 {
            color: var(--text-dark);
            font-size: 1.05rem;
            margin-bottom: 3px;
        }

        .client-details p {
            color: var(--text-grey-light);
            font-size: 0.85rem;
        }

        .testi-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 10px;
        }

        .testi-btn {
            background-color: transparent;
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: 0.3s;
            font-size: 1.2rem;
        }

        .testi-btn:hover {
            background-color: var(--primary-green);
            color: var(--white);
        }

        /* --- CONTACT (GET IN TOUCH) SECTION --- */
        .contact-section {
            background-color: var(--dark-green);
            padding: 100px 5%;
            color: var(--white);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .contact-text .subtitle {
            color: var(--light-green);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 15px;
        }

        .contact-text h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--white);
        }

        .contact-text > p {
            color: #b8ccbe; 
            font-size: 1.05rem;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 90%;
        }

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

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

        .info-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e55a5a; 
            font-size: 1.2rem;
        }

        .info-item:nth-child(2) .info-icon { color: var(--light-green); }
        .info-item:nth-child(3) .info-icon { color: var(--white); }

        .info-details h4 {
            color: var(--light-green);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 5px;
        }

        .info-details p {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .contact-form-card {
            background-color: var(--contact-form-bg);
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .contact-form-card h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: var(--white);
        }

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

        .contact-form-card input,
        .contact-form-card textarea {
            width: 100%;
            background-color: var(--contact-input-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 18px 20px;
            border-radius: 15px;
            color: var(--white);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }

        .contact-form-card input::placeholder,
        .contact-form-card textarea::placeholder {
            color: #6b8c7b; 
        }

        .contact-form-card input:focus,
        .contact-form-card textarea:focus {
            border-color: var(--contact-btn-bg);
        }

        .contact-form-card textarea {
            resize: vertical;
            min-height: 150px;
        }

        .btn-submit {
            background-color: var(--contact-btn-bg);
            color: var(--white);
            border: none;
            padding: 20px;
            border-radius: 15px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background-color: #4f8567;
            transform: translateY(-2px);
        }

        /* --- FOOTER SECTION --- */
        .footer, .footer {
  background-color: var(--section-bg-dark);
  color: var(--text-grey-light);
  padding: 80px 5% 30px;
}

        .footer-container, .footer-container {
  max-width: 1200px;
  /* margin: 0 auto 60px; */
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
}

        .footer-logo-wrap, .footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

        .footer-logo-box, .footer-logo-box {
  background-color: var(--accent-green);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

        .footer-logo-text h2, .footer-logo-text h2 {
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 1px;
  margin: 0;
}

        .footer-logo-text p, .footer-logo-text p {
  font-size: 0.65rem;
  color: var(--text-grey-light);
  letter-spacing: 1.5px;
  margin: 0;
}

        .brand-col>p, .brand-col>p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
  max-width: 90%;
}

        .footer-socials, .footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

        .footer-socials a, .footer-socials a {
  width: 45px;
  height: 45px;
  background-color: #222;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

        .footer-socials a:hover {
            background-color: var(--accent-green);
        }

        .footer-col h4, .footer-col h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

        .links-col ul,.contact-col ul, .links-col ul,.contact-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

        .links-col a, .links-col a {
  color: var(--text-grey-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

        .links-col a:hover {
            color: var(--accent-green);
        }

        .contact-col li, .contact-col li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 0.95rem;
}

        .contact-col i, .contact-col i {
  color: var(--accent-green);
  font-size: 1.2rem;
  margin-top: 2px;
}

        .footer-bottom, .footer-bottom {
  max-width: 1200px;
  /* margin: 0 auto; */
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

        .bottom-links a, .bottom-links a {
  color: var(--text-grey-light);
  text-decoration: none;
  margin-left: 30px;
  transition: color 0.3s;
}

        .bottom-links a:hover {
            color: var(--white);
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 1024px) {
            .testimonial-card { flex: 0 0 calc((100% - 30px) / 2); }
            .contact-container { grid-template-columns: 1fr; gap: 50px; }
            .contact-text h2 { font-size: 2.8rem; }
            .footer-container, .footer-container {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
            .brand-col { grid-column: span 2; }
        }

        @media (max-width: 768px) {
            /* Mobile Top Bar Update */
            .top-bar { flex-direction: column; text-align: center; gap: 10px; }
            
            /* Mobile Nav Update */
            .menu-toggle { display: block; }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                gap: 20px;
                padding: 30px 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                /* Hide initially */
                opacity: 0;
                visibility: hidden;
                transform: translateY(-15px);
                transition: all 0.3s ease-in-out;
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            
            .nav-links li { width: 100%; text-align: center; }
            
            .hero-content h2 { font-size: 2.5rem; }
            .stats-section { flex-direction: column; gap: 30px; }
            .about-header h2 { font-size: 2rem; }
            .products-header { flex-direction: column; align-items: flex-start; gap: 15px; }
            .products-title-area h2 { font-size: 2.2rem; }
            .testimonial-card { flex: 0 0 100%; }
            .contact-form-card { padding: 30px 20px; }
            
            .footer-container { grid-template-columns: 1fr; }
            .brand-col { grid-column: span 1; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .bottom-links a { margin: 0 15px; }
        }



       /* Product Page*/

       .page-header {
            background-color: var(--bg-light);
            padding: 80px 5% 40px;
            color: var(--text-dark);
        }

        .page-header .subtitle {
            color: var(--accent-green);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 10px;
        }

        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .page-header p {
            color: var(--text-grey);
            font-size: 1.1rem;
            /* line-height: 1.6; */
            /* max-width: 650px; */
        }

        /* --- PRODUCTS GRID SECTION --- */
        .products-page-section {
            background-color: var(--card-bg);
            padding: 20px 5% 100px;
        }

        .detailed-products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
        }

        .detailed-card {
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
            box-shadow: 0 10px 20px rgb(213 209 209 / 20%);
        }

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

        .img-wrapper {
            position: relative;
            height: 320px;
            background: linear-gradient(
294deg, #a8c0d6 0%, #40a1f6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .img-wrapper img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
        }

        .cat-pill {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--accent-green);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(0, 210, 137, 0.3);
        }

        .price-pill {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background-color: var(--white);
            color: var(--text-dark);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.95rem;
            font-weight: 700;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .price-pill .per-piece {
            font-size: 0.8rem;
            color: var(--text-grey);
            font-weight: 400;
        }

        .card-body {
            padding: 35px 30px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-body h3 {
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .card-body .sub-title {
            color: var(--text-grey);
            font-size: 0.9rem;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .card-body .desc {
            color: var(--text-grey);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .feat-pill {
            background-color: #f0f4f2;
            color: var(--text-grey);
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid #e1e9e6;
        }

        .view-link {
            color: var(--brand-blue);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: gap 0.3s;
        }

        .view-link:hover {
            gap: 12px;
        }

        /* --- CTA SECTION --- */
        .cta-section {
            background-color: var(--dark-green);
            padding: 80px 5%;
            text-align: center;
            color: var(--white);
        }

        .cta-section h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: #b8ccbe;
            margin-bottom: 35px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .cta-btn {
            background-color: var(--white);
            color: var(--dark-green);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }


        /* SIngle Product Page*/


        /* --- BREADCRUMB --- */
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 20px 5%;
            font-size: 0.9rem;
            color: var(--text-grey);
            border-bottom: 1px solid var(--border-color);
        }

        .breadcrumb a {
            color: var(--text-grey);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--primary-green);
        }
        
        .breadcrumb span {
            color: var(--text-dark);
            font-weight: 600;
        }

        /* --- SINGLE PRODUCT HERO --- */
        .product-hero-section {
            padding: 60px 5%;
            background-color: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            /* max-width: 1300px; */
            /* margin: 0 auto; */
        }

        .product-gallery {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .main-image-container {
            position: relative;
            background: linear-gradient(294deg, #a8c0d6 0%, #40a1f6 100%);
            border-radius: 20px;
            padding: 40px;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-image-container img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
            transition: opacity 0.3s;
        }

        .cat-pill {
            position: absolute;
            top: 20px;
            left: 20px;
            background-color: var(--primary-green);
            color: var(--white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            z-index: 1;
        }

        .thumbnail-row {
            display: flex;
            gap: 15px;
        }

        .thumb-box {
            width: 100px;
            height: 100px;
            background: #f0f5f3;
            border-radius: 12px;
            padding: 10px;
            cursor: pointer;
            border: 2px solid transparent;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .thumb-box.active, .thumb-box:hover {
            border-color: var(--primary-green);
        }

        .thumb-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .product-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .product-info .sub-cat {
            color: var(--light-green);
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .product-info h1 {
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 5px;
            font-weight: 500;
        }

        .product-info .highlight-text {
            color: var(--light-green);
            font-weight: 300;
            font-size: 1.1rem;
            margin-bottom: 25px;
        }

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

        .product-info .price {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-green);
        }

        .product-info .per-piece {
            color: var(--text-grey);
            font-size: 1rem;
        }

        .btn-buy {
            background-color: var(--dark-green);
            color: var(--white);
            border: none;
            padding: 18px 30px;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            width: 100%;
            transition: 0.3s;
            margin-bottom: 30px;
        }

        .btn-buy:hover {
            background-color: var(--primary-green);
        }

        .product-info .desc {
            color: var(--text-grey);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 35px;
        }

        .quick-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .stat-card {
            background-color: var(--bg-light);
            border: 1px solid var(--border-color);
            padding: 20px;
            border-radius: 12px;
        }

        .stat-card span {
            display: block;
            color: var(--text-grey-light);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .stat-card strong {
            color: var(--text-dark);
            font-size: 1.1rem;
        }

        /* --- DETAILS SECTION (Specs & Features) --- */
        .details-section {
            padding: 80px 5%;
            background-color: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            /* max-width: 1300px; */
            /* margin: 0 auto; */
            border-top: 1px solid var(--border-color);
        }

        .section-title {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 30px;
            font-weight: 700;
        }

        .tech-specs ul {
            list-style: none;
        }

        .tech-specs li {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 0.95rem;
        }

        .tech-specs li:last-child {
            border-bottom: none;
        }

        .tech-specs .spec-label {
            color: var(--text-grey-light);
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .tech-specs .spec-value {
            color: var(--text-dark);
            font-weight: 600;
        }

        .key-features ul {
            list-style: none;
            margin-bottom: 40px;
        }

        .key-features li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            color: var(--text-dark);
            font-size: 1rem;
            font-weight: 500;
        }

        .check-icon {
            background-color: #e6f5ef;
            color: var(--light-green);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .interest-card {
            background-color: var(--dark-green);
            border-radius: 15px;
            padding: 35px;
            color: var(--white);
        }

        .interest-card h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .interest-card p {
            color: #a3b8af;
            font-size: 0.9rem;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .btn-quote {
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            padding: 15px 25px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: 0.3s;
            width: 100%;
        }

        .btn-quote:hover {
            background-color: var(--light-green);
        }

        /* --- RELATED PRODUCTS SECTION --- */
        .related-products {
            padding: 80px 5%;
            background-color: var(--bg-light);
        }

        .related-container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .related-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 40px;
        }

        .related-header .subtitle {
            color: var(--accent-green);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 5px;
        }

        .related-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .view-all-link {
            color: var(--primary-green);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: opacity 0.3s;
        }

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

        .related-card {
            background-color: var(--white);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border: 1px solid var(--border-color);
        }

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

        .rel-img-wrapper {
            position: relative;
            height: 220px;
            background: linear-gradient(294deg, #a8c0d6 0%, #40a1f6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .rel-img-wrapper img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .rel-cat-pill {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--white);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.7rem;
            backdrop-filter: blur(4px);
        }

        .rel-card-body {
            padding: 25px;
        }

        .rel-card-body h3 {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .rel-card-body .price {
            color: var(--primary-green);
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .view-link-rel {
            color: var(--primary-green);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
        }

       
        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 1024px) {
            .product-hero-section, .details-section { gap: 40px; }
            .product-info h1 { font-size: 2.5rem; }
            /* .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
            .brand-col { grid-column: span 2; } */
        }

        @media (max-width: 768px) {
            /* .top-bar { flex-direction: column; text-align: center; gap: 10px; }
            .menu-toggle { display: block; }
            
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                gap: 20px;
                padding: 30px 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-15px);
                transition: all 0.3s ease-in-out;
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            .nav-links li { width: 100%; text-align: center; } */
            
            /* Stacking Columns */
            .product-hero-section { grid-template-columns: 1fr; padding: 40px 5%; }
            .main-image-container { height: 350px; }
            
            .details-section { grid-template-columns: 1fr; padding: 40px 5%; gap: 50px; }
            .related-header { flex-direction: column; align-items: flex-start; gap: 10px; }
            
            /* .footer-container { grid-template-columns: 1fr; }
            .brand-col { grid-column: span 1; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .bottom-links a { margin: 0 15px; } */
        }