/* --- 🎨 CSS Variables (Color Palette) --- */
:root {
    --primary-blue: #0f2f52;
    --dark-blue: #0a1e33;
    --light-blue: #e8f1ff;
    --white: #ffffff;
    --grey: #f4f7f6;
    --text-dark: #243447;
    --text-light: #f1f1f1;
    --text-secondary: #4b5b6c;
    --accent-green: #1fa97a;
    --accent-orange: #f5a524;
    --accent-copper: #c35a1d;
}

/* --- 🌐 Global Styles --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    text-align: center;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-blue);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 60px 0;
}

.section-tag {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

/* --- 🔘 Button Styles --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-copper));
    color: var(--white);
    box-shadow: 0 10px 24px rgba(195, 90, 29, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-copper), #a54618);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 47, 82, 0.2);
    color: var(--white) !important;
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-blue) !important;
}

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

.btn-dark:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    color: var(--white) !important;
}

/* --- 🔝 Header & Navigation --- */
header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-mark {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    gap: 4px;
    text-decoration: none;
    color: var(--dark-blue);
}

.brand-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* --- 1️⃣ Hero Section --- */
.hero {
    background: linear-gradient(135deg, rgba(15, 47, 82, 0.9), rgba(12, 30, 50, 0.85)), url('../assets/factory-hero.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 100px 0 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(245, 165, 36, 0.12), transparent 35%), radial-gradient(circle at 80% 10%, rgba(31, 169, 122, 0.12), transparent 30%);
    z-index: 0;
}

.hero-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.hero-text .section-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.hero-text h1 {
    font-size: 3.3rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: var(--white);
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 520px;
}

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

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 3rem;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.hero-image {
    flex-basis: 40%;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 14px;
    border: 4px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand-ribbon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.brand-ribbon i {
    color: var(--accent-orange);
}

/* --- 📦 Product Hero Section --- */
.product-hero {
    background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../assets/factory-1.webp') no-repeat center center/cover;
    color: var(--white);
    padding: 80px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.product-hero.braided {
    background-image: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../assets/pvc-braided.webp');
}

.product-hero.garden {
    background-image: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../assets/pvc-garden.webp');
}

.product-hero.recycled {
    background-image: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../assets/pvc-recycled.webp');
}

.product-hero.location {
    background-image: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../assets/factory-2.webp');
}

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

.product-hero .section-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.product-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.product-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* --- 📦 Products Section --- */
#products {
    background-color: var(--grey);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.tag-best-seller {
    background-color: var(--accent-orange);
    color: var(--text-dark);
}

.tag-premium {
    background-color: var(--dark-blue);
}

.tag-eco {
    background-color: var(--accent-green);
}

.product-card-image {
    height: 250px;
    overflow: hidden;
}

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

.product-card-content {
    padding: 25px;
}

.product-card-content h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
}

.product-card-content p {
    font-size: 0.95rem;
    min-height: 60px;
}

.product-card-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.product-card-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.product-card-content li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-green);
}

.product-card-content .view-details {
    font-weight: 600;
    color: var(--primary-blue);
}

.product-card-content .view-details i {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.product-card-content .view-details:hover i {
    transform: translateX(5px);
}

/* --- 🔜 Coming Soon Section --- */
#coming-soon {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
}

#coming-soon h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

#coming-soon p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* --- 🏭 Infrastructure Section --- */
.infra-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.infra-image img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.infra-text {
    flex: 1;
}

.infra-text .section-tag {
    margin-bottom: 10px;
}

.infra-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.infra-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 2rem;
}

.infra-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.infra-feature-item i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-top: 5px;
}

.infra-feature-item h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.infra-feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.infra-text .btn-dark {
    margin-top: 2rem;
}

/* --- 🤝 Dealership Section --- */
#dealership {
    background-color: var(--light-blue);
}

.dealership-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.dealership-info {
    flex: 1.2;
}

.dealership-info h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.dealership-info .section-tag {
    background-color: var(--white);
}

.dealership-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--accent-green);
    background-color: var(--white);
    padding: 10px;
    border-radius: 50%;
}

.benefit-item h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.dealership-form-container {
    flex: 1;
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.dealership-form-container h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px var(--light-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* --- 🤔 Why Choose Us Section --- */
#why-choose-us {
    background: linear-gradient(135deg, #0a1e33, #0f2f52);
    color: var(--white);
}

#why-choose-us h2 {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: -1rem auto 3rem auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #193755;
    padding: 30px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.why-card:hover {
    background-color: #2a4a6b;
}

.why-card i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- 📊 Stats Bar --- */
#stats {
    background-color: var(--grey);
    padding: 50px 0;
}

.stats-bar-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stats-bar-item {
    flex: 1;
    min-width: 150px;
}

.stats-bar-item h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.stats-bar-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0;
    font-weight: 500;
}

/* --- 🦶 Footer --- */
footer {
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-subtext {
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-about p {
    color: var(--text-light);
    font-size: 0.95rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-orange);
    transform: scale(1.1);
}

.footer-col h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-light);
}

.footer-contact i {
    font-size: 1.1rem;
    margin-top: 5px;
    color: var(--accent-orange);
}

.footer-contact a {
    color: var(--text-light);
}

.footer-contact a:hover {
    color: var(--accent-orange);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a4a6b;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- 🟢 Floating WhatsApp Button --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* --- ✨ Animation --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 📱 Responsive Design --- */
@media (max-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        text-align: center;
    }

    .nav-links a:hover::after {
        width: 0;
    }

    .brand-mark {
        align-items: flex-start;
    }

    .navbar .btn-primary {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    #menu-toggle:checked~.nav-links {
        display: flex;
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .product-hero h1 {
        font-size: 2.4rem;
    }

    .product-hero p {
        max-width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .infra-wrapper {
        flex-direction: column-reverse;
    }

    .infra-text h2 {
        text-align: center;
    }

    .dealership-wrapper {
        flex-direction: column;
    }

    .dealership-info h2 {
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .hero-stats .stat-item {
        text-align: center;
    }

    .product-hero {
        padding: 60px 0;
        min-height: 40vh;
    }

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

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

    .product-grid {
        grid-template-columns: 1fr;
    }

    .infra-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
}

/* End of stylesheet */
/* ================================
   SEO PAGE & PRODUCT PAGE STYLING
   Matches Divsa Polymers visual theme
================================ */

/* Page Base */
main.container {
    max-width: 1200px;
    padding: 0 20px 60px 20px;
}

section {
    margin-bottom: 50px;
}

/* Headers */
main h1 {
    font-size: 2.6rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

main h2 {
    font-size: 2rem;
    margin-top: 35px;
    margin-bottom: 12px;
    color: var(--dark-blue);
}

/* Paragraphs */
main p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Lists */
main ul {
    margin: 15px 0 20px 20px;
}

main ul li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #444;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Divider */
main hr {
    margin: 40px 0;
    border: none;
    height: 1px;
    background: #ddd;
}

/* ===========================
   FAQ Accordion Styling
=========================== */
#faqs details {
    background: var(--grey);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    padding: 10px 14px;
}

#faqs summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    color: var(--dark-blue);
}

#faqs p {
    margin-top: 8px;
    color: #444;
    font-size: 0.95rem;
}

/* ===========================
   IMAGE SECTIONS
=========================== */
.image-section {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: var(--grey);
    border-radius: 12px;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===========================
   RESPONSIVE
=========================== */
main.container h1+p {
    font-size: 1.1rem;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    main.container {
        padding: 40px 18px;
    }

    main h1 {
        font-size: 2.1rem;
    }

    main h2 {
        font-size: 1.6rem;
    }
}

/* ===========================
   PRODUCTS PAGE - ECOMMERCE STYLE
=========================== */

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.product-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--grey);
}

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

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

.product-quality-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quality-premium {
    background: linear-gradient(135deg, var(--dark-blue), #1a3a5a);
    box-shadow: 0 2px 8px rgba(10, 30, 51, 0.3);
}

.quality-industrial {
    background: linear-gradient(135deg, #4b5b6c, #2c3e50);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}

.quality-eco-friendly {
    background: linear-gradient(135deg, var(--accent-green), #14805e);
    box-shadow: 0 2px 8px rgba(31, 169, 122, 0.3);
}

.quality-standard {
    background: linear-gradient(135deg, var(--primary-blue), #2a5298);
    box-shadow: 0 2px 8px rgba(15, 47, 82, 0.3);
}

.quality-agricultural {
    background: linear-gradient(135deg, #43a047, #2e7d32);
    /* Material Green */
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

.quality-economy {
    background: linear-gradient(135deg, var(--accent-orange), #f39c12);
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
}

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

.product-type {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
    flex: 1;
}

.product-features {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.product-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}

.product-features li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-green);
    font-size: 0.85rem;
}

.btn-quote {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--accent-orange);
    color: var(--dark-blue);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-quote:hover {
    background-color: #ffca2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-quote i {
    font-size: 1.1rem;
}

/* Quote Modal */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.quote-modal-content {
    background-color: var(--white);
    border-radius: 12px;
    padding: 35px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.quote-modal-close:hover {
    color: var(--dark-blue);
}

.quote-modal-content h2 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    text-align: left;
}

.quote-modal-content .form-group {
    margin-bottom: 20px;
}

.quote-modal-content .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.quote-modal-content .form-group input,
.quote-modal-content .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.quote-modal-content .form-group input:focus,
.quote-modal-content .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--light-blue);
}

.quote-modal-content .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsive for Products Page */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image-wrapper {
        height: 220px;
    }

    .quote-modal-content {
        padding: 25px;
        max-width: 100%;
    }

    .quote-modal-content h2 {
        font-size: 1.5rem;
        padding-right: 30px;
    }
}