/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #2e7d32;
    --secondary-color: #ffc107;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --dark-green: #1b5e20;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Global scroll animations */
.animate-left-to-right,
.animate-right-to-left,
.animate-bottom-up {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.animate-left-to-right {
    transform: translateX(-28px);
}

.animate-right-to-left {
    transform: translateX(28px);
}

.animate-bottom-up {
    transform: translateY(18px);
}
/* Footer Company Logo */
.social-icon {
    display: flex;
    gap: 12px;
}

.social-icon a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #2e7d32;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon a:hover {
    background: #2e7d32;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}
/* =========================
   Desktop (Large screens)
   ========================= */
@media (min-width: 1200px) {
    .social-icon {
        gap: 14px;
    }

    .social-icon a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* =========================
   Laptop / Small Desktop
   ========================= */
@media (max-width: 1199px) {
    .social-icon a {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }
}

/* =========================
   Tablet (iPad, etc.)
   ========================= */
@media (max-width: 991px) {
    .social-icon {
        gap: 10px;
    }

    .social-icon a {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }
}

/* =========================
   Mobile (Large phones)
   ========================= */
@media (max-width: 767px) {
    .social-icon {
        gap: 8px;
    }

    .social-icon a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* =========================
   Small Mobile (Very small screens)
   ========================= */
@media (max-width: 480px) {
    .social-icon {
        gap: 6px;
    }

    .social-icon a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}




/* Global Product Image Standardization */
[class$="product-image"],
.product-intro-image,
.product-intro-wrapper,
[class$="product-description"],
.product-intro-text {
    flex: 1;
}

[class$="product-image"] [class$="image-wrapper"],
.product-intro-image,
.product-intro-wrapper {
    background-color: #ffffff;
    padding: 1px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

[class$="product-image"] [class$="image-wrapper"] img,
.product-intro-image img,
.product-intro-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    [class$="product-container"] {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 100px;
        /* Standardize clearance for header */
       
    }

     [class$="product-description"],
    .product-intro-text {
        order: 2;
        width: 100%;
        text-align: left;
        /* Keep text left-aligned for readability */
    }

    [class$="product-image"],
    .product-intro-image,
    .product-intro-wrapper {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    [class$="product-image"] [class$="image-wrapper"],
    .product-intro-image,
    .product-intro-wrapper {
        width: 100%;
        max-width: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto !important;
    }

    [class$="product-image"] img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    body [class$="contact-green-layout"] {
        align-items: stretch;
    }
}

.in-view {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

@media (prefers-reduced-motion: reduce) {

    .animate-left-to-right,
    .animate-right-to-left,
    .animate-bottom-up {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0rem;
    line-height: 1.2;
    color: var(--primary-color);
}

/* p {
    margin-bottom: 1rem;
} */

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.enquiry-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    width: 100%;
}



.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}

/* Header Styles */

.topbar {
    width: 100%;
    background: #114232;
    border-bottom: 1px solid #0e362b;
    font-size: 0.97rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    height: 40px;
    display: flex;
    align-items: center;
}

.topbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0 30px;
}

.topbar-contact {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #fff;
}

.topbar-phone,
.topbar-email {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 1rem;
}

.topbar-phone i {
    font-size: 1.1em;
    color: #fff;
    vertical-align: middle;
    margin-right: 4px;
    transition: color 0.2s;
}


.topbar-email i {
    font-size: 1.05em;
    color: #fff;
    vertical-align: middle;
    margin-right: 4px;
    transition: color 0.2s;
}


.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-social a {
    color: #fff;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.topbar-social a:hover {
    color: #fff;
}


.quote-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.97rem;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quote-btn i {
    margin-left: 10px;
    font-size: 0.95rem;
}

.quote-btn:hover,
.quote-btn:focus {
    background: var(--dark-green);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 40px;
    left: 0;
    z-index: 1000;
    padding: 0 0 0 0;
    margin-top: 0;
    border-bottom: 1px solid #eee;
}

/* Mega Menu Adjustments */
.mega-menu-parent {
    position: static !important;
}

.mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #008000;
    /* Green background */
    padding: 5px 0 5px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 2000;
    /* Ensure scrolling on smaller screens if content is tall */
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    width: 100%;
    margin: 0;
    padding: 0 1px;
}

.mega-menu-grid {
    display: grid;
    /* User request: 12 cards in one row, 3 rows total */
    grid-template-columns: repeat(12, 1fr);
    gap: 2px 1px;
    /* Reduced gap */
    align-items: start;
    justify-items: center;
}

.mega-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    text-align: center;
    color: #fff;
    padding: 5px;
    width: 100%;
}

.mega-menu-item img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    margin-bottom: 5px;
    border-radius: 6px;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mega-menu-item h3 {
    font-size: 0.75rem;
    /* Reduced font size */
    margin-bottom: 2px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    height: 30px;
    /* Fixed height for alignment */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.mega-menu-item p {
    font-size: 0.7rem;
    color: #ffd700;
    text-align: center;
    /* Yellow for View Now */
    margin: 0;
}

.mega-menu-item:hover,
.mega-menu-item:focus,
.mega-menu-item:focus-visible,
.mega-menu-item:active {
    transform: none;
    box-shadow: none;
}

.mega-menu-item:hover img,
.mega-menu-item:focus img,
.mega-menu-item:focus-visible img,
.mega-menu-item:active img {
    transform: none;
    filter: none;
    opacity: 1;
}

.mega-menu-item:hover h3,
.mega-menu-item:focus h3,
.mega-menu-item:focus-visible h3,
.mega-menu-item:active h3 {
    color: #fff;
    opacity: 1;
}

.mega-menu-item:hover p,
.mega-menu-item:focus p,
.mega-menu-item:focus-visible p,
.mega-menu-item:active p {
    color: #ffd700;
    opacity: 1;
}

.mega-menu-item:focus,
.mega-menu-item:focus-visible {
    outline: none;
}

.mega-menu-grid a.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    text-align: center;
    color: #fff;
    padding: 5px;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    font-weight: inherit;
}

.mega-menu-grid a.active::after {
    display: none;
}

.mega-menu-grid a.active img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    margin-bottom: 5px;
    border-radius: 6px;
    padding: 0px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: none;
    filter: none;
    opacity: 1;
}

.mega-menu-grid a.active h3 {
    font-size: 0.75rem;
    margin-bottom: 2px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
}

.mega-menu-grid a.active p {
    font-size: 0.7rem;
    color: #ffd700;
    text-align: center;
    margin: 0;
    opacity: 1;
}

.mega-menu-grid a.active:hover,
.mega-menu-grid a.active:focus,
.mega-menu-grid a.active:focus-visible,
.mega-menu-grid a.active:active {
    transform: none;
    box-shadow: none;
    outline: none;
}

/* Mega Menu Responsive */
@media (max-width: 1400px) {
    .mega-menu-grid {
        grid-template-columns: repeat(10, 1fr);
    }
}

@media (max-width: 992px) {
    .mega-menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mega-menu-item img {
        max-width: 80px;
        height: 80px;
    }

    .mega-menu-item h3 {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

body {
    padding-top: 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    /* Let content define height */
    min-height: 70px;
    /* Ensure minimum height */
    padding: 0 30px;
    width: 100%;
}

.branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-stack {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-title {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    color: var(--primary-color);
}

.brand-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-nav {
    display: flex;
    align-items: center;
    height: 80px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 80px;
}

.logo img {
    max-height: 65px;
    /* Adjust logo height */
}

.main-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav ul li {
    margin: 0 18px;
}

.main-nav ul li a {
    color: #1f1f1f;
    font-weight: 500;
    font-size: 0.96rem;
    letter-spacing: 0.02em;
    padding: 4px 0;
    position: relative;
}

.main-nav ul li.dropdown {
    position: relative;
}

.main-nav ul li.dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Dropdown Icon Styles (Desktop & Mobile) */
.main-nav ul li.dropdown .dropdown-toggle::after,
.main-nav ul li.mega-menu-parent>a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
    /* Reset underline styles that might conflict */
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    margin-left: 6px;
    /* Spacing for desktop */
}

.main-nav ul li.dropdown.open .dropdown-toggle::after,
.main-nav ul li.mega-menu-parent.active>a::after,
.main-nav ul li.mega-menu-parent:hover>a::after {
    /* Add hover for desktop if JS doesn't toggle active */
    transform: rotate(180deg);
}

.main-nav ul li.dropdown .dropdown-toggle .chevron-icon {
    font-size: 0.8rem;
}

.custom-dropdown-menu {
    display: flex;
    flex-direction: column;
    width: clamp(220px, 28vw, 320px);
    padding: 0;
    gap: 0;
    background: #007a2b;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -10px);
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
    position: absolute;
    top: 100%;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1200;
}

.main-nav ul li.dropdown.open .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    z-index: 1200;
}

@media (min-width: 993px) {

    .main-nav ul li.dropdown:hover .custom-dropdown-menu,
    .main-nav ul li.dropdown:focus-within .custom-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(-50%, 0);
        max-height: 1000px;
        overflow: visible;
    }
}

@media (max-width: 768px) {
    .main-nav ul li.dropdown.open .custom-dropdown-menu {
        overflow-y: auto;
    }
}

@media (max-width: 768px) {

    /* Avoid horizontal overflow on smaller screens caused by full-bleed carousel math (100vw + negative margins) */
    .hero-carousel {
        left: 0 !important;
        right: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 60px;
        margin-top: 10px !important;
    }

    /* Topbar mobile improvements */
    .topbar {
        display: block !important;
        height: 60px !important;
        padding: 8px 0 !important;
        background: #114232;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .topbar-container {
        flex-direction: column;
        gap: 6px;
        padding: 0 12px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .topbar-contact {
        gap: 6px;
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .topbar-phone,
    .topbar-email {
        font-size: 0.8rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .topbar-phone {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .topbar-email {
        display: flex !important;
        /* Ensure visible */
        align-items: center;
        gap: 5px;
        margin-top: 1.5%;
        /* Professional percentage spacing */
    }

    .topbar-right {
        gap: 10px;
        display: none;
    }

    .quote-btn {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    .topbar-social {
        gap: 10px;
        display: none;
    }

    /* Header adjustments */
    .header {
        position: fixed !important;
        top: 60px !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .logo img {
        max-height: 42px;
    }

    .header .container {
        min-height: 55px;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .topbar {
        display: block !important;
        height: 60px !important;
        padding: 10px 0 !important;
        background: #114232;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
    }

    .topbar-container {
        display: block !important;
        width: 100%;
        padding: 0 10px;
    }

    .topbar-contact {
        display: block !important;
        text-align: center;
        width: 100%;
    }

    .topbar-phone,
    .topbar-email {
        display: block !important;
        width: 100% !important;
        font-size: 0.8rem !important;
        color: #fff !important;
        margin-bottom: 2px !important;
        line-height: 1.1;
    }

    .topbar-phone i,
    .topbar-email i {
        margin-right: 6px !important;
        font-size: 0.75rem;
    }

    .topbar-email {
        margin-top: 1.5% !important;
        margin-bottom: 0 !important;
    }

    .header {
        position: fixed !important;
        top: 60px !important;
        height: 50px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        background: #fff !important;
        display: flex !important;
        align-items: center !important;
    }

    .logo img {
        max-height: 46px;
        width: auto;
    }

    .header .container {
        height: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 10px !important;
        width: 100%;
    }

    /* Content push adjustment */
    .hero-carousel,
    main>section:first-of-type,
    .highlight-grid,
    .hero,
    .solutions {
        margin-top: 110px !important;
    }

    .menu-toggle {
        display: flex !important;
        width: 30px;
        height: 30px;
        align-items: center;
        justify-content: center;
        color: #114232;
        font-size: 1.1rem;
        margin-left: auto;
    }
}

/* Mobile Quote Link - Hidden on desktop, shown in mobile nav */
.mobile-quote-link {
    display: none;
}

@media (max-width: 992px) {
    .mobile-quote-link {
        display: block !important;
        width: 100%;
        margin-top: 10px;
        padding: 0 15px;
    }

    .btn-quote-mobile {
        display: block !important;
        background: #fcd116 !important;
        color: #0c5d1a !important;
        padding: 14px 20px !important;
        border-radius: 10px !important;
        font-weight: 700 !important;
        text-align: center !important;
        font-size: 1rem !important;
        text-decoration: none !important;
    }

    .btn-quote-mobile:hover {
        background: #fff !important;
        color: #0c5d1a !important;
    }

    .btn-quote-mobile i {
        margin-left: 8px;
    }
}

.custom-dropdown-menu li {
    margin: 0;
}

.custom-dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: background-color 0.2s ease;
}

.bullet-icon {
    font-size: 8px;
    /* small bullet */
    color: #ffffff;
    margin-right: 5px;
    /* green (change if needed) */
}

/* Yellow hover on all items */
.custom-dropdown-menu li a:hover {
    background-color: #f7d15b;
    color: #1d5a00;
}

.custom-dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Neutralize the highlighted first item to match others */
.custom-dropdown-menu .dropdown-highlight {
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    width: 100%;
}

.custom-dropdown-menu .dropdown-highlight a {
    font-weight: 500;
    letter-spacing: normal;
    color: #fff;
    writing-mode: horizontal-tb;
    justify-content: flex-start;
    padding: 10px 18px;
}

/* Hover state for the highlight item should match the rest */
.custom-dropdown-menu .dropdown-highlight a:hover {
    background-color: #f7d15b;
    color: #1d5a00;
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 240px;
    /* width of the small dropdown */
    background: #007a2b;
    border-radius: 0 0 10px 10px;
    /* only bottom corners rounded */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: visibility 0s linear 0.3s, opacity 0.25s ease 0.3s, transform 0.25s ease 0.3s;
    /* no grid here – simple vertical list */
}

.main-nav .custom-dropdown-menu li,
.main-nav .dropdown-menu li {
    margin: 0 !important;
    width: 100%;
}

.main-nav .custom-dropdown-menu li a,
.main-nav .dropdown-menu li a {
    text-align: left !important;
    width: 100%;
    display: block;
    margin: 0;
    padding: 10px 18px;
    /* Ensure padding is consistent */
}

.main-nav ul li.dropdown:hover .dropdown-menu,
.main-nav ul li.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: left;
    transition: background 0.2s ease;
}

.dropdown-menu li a:hover {
    background: #f7d15b;
    color: #1d5a00;
    text-align: left;
}

.dropdown-highlight {
    background: #f7d15b;
    grid-row: span 2;
    border-radius: 8px;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.dropdown-highlight a {
    color: #1d5a00;
    font-weight: 700;
    writing-mode: vertical-rl;
    letter-spacing: 0.06em;
    padding: 12px 8px;
    justify-content: flex-start;
}

@media (max-width: 992px) {
    .main-nav ul li.dropdown {
        width: 100%;
    }

    .main-nav ul li.dropdown .dropdown-menu {
        width: min(360px, 80vw);
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 4px;
    }

    .main-nav ul li.dropdown .custom-dropdown-menu {
        width: min(320px, 80vw);
        transform: translate(-50%, 6px);
        background: var(--primary-color, #007a2b);
        border-radius: 12px;
        padding: 0;
    }

    .main-nav ul li.dropdown .custom-dropdown-menu li a {
        color: #fff !important;
        padding: 10px 18px;
        font-size: 1rem;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .main-nav ul li.dropdown .dropdown-menu {
        width: min(320px, 90vw);
        padding: 10px 12px;
        left: 50%;
        transform: translate(-50%, 10px);
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .main-nav ul li.dropdown:hover .dropdown-menu,
    .main-nav ul li.dropdown:focus-within .dropdown-menu {
        transform: translate(-50%, 0);
    }

    .dropdown-highlight {
        grid-row: auto;
        width: 100%;
    }

    .dropdown-highlight a {
        writing-mode: horizontal-tb;
        padding: 12px 16px;
        text-align: center;
    }

    .main-nav ul li.dropdown .custom-dropdown-menu {
        width: min(320px, 90vw);
        left: 50%;
        transform: translate(-100%, 6px);
        border-radius: 12px;
    }

    .main-nav ul li.dropdown.open .custom-dropdown-menu {
        transform: translate(0%, 0);
    }
}

@media (max-width: 480px) {
    .main-nav ul li.dropdown .dropdown-menu {
        width: calc(100vw - 40px);
        max-width: 360px;
    }

    .main-nav ul li.dropdown .custom-dropdown-menu {
        width: calc(100vw - 36px);
        max-width: 340px;
    }
}

.main-nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.main-nav ul li a.active {
    font-weight: bold;
    color: var(--primary-color);
    /* background: #f5f5f5; */
    border-radius: 6px 6px 0 0;
    padding: 8px 16px 12px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}


.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-color);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1300;
    pointer-events: auto;
}

.menu-toggle i {
    font-size: 1.4rem;
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
}

.menu-toggle.active {
    background: #fff;
    color: var(--primary-color);
}

.mobile-nav-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    margin: 0;
    background: #fcd116;
    color: #0c5d1a;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

.mobile-nav-header span {
    letter-spacing: 0.1em;
    font-size: 0.95rem;
}

.mobile-menu-close {
    display: none;
    border: none;
    background: transparent;
    color: #0c5d1a;
    cursor: pointer;
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close i {
    font-size: 1.2rem;
}

.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    cursor: pointer;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .header .container {
        justify-content: space-between;
        position: relative;
    }

    .menu-toggle {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        margin: 0;
        flex: 0 0 auto;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #158f4d;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        z-index: 1200;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        backdrop-filter: blur(5px);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-nav-header {
        display: none;
    }

    .mobile-menu-close {
        display: none;
    }

    .main-nav ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        padding: 0;
        margin: 0;
        margin-top: 0;
    }

    .main-nav ul li {
        width: 100%;
        margin: 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav ul li a {
        color: #fff;
        background: transparent;
        padding: 15px 20px;
        font-size: 1.1rem;
        font-weight: 600;
        display: block;
        border-bottom: none;
        text-align: left;
    }

    .main-nav ul li a:hover,
    .main-nav ul li a.active {
        color: #fff;
        background: transparent;
    }

    .main-nav ul li a:after {
        display: none;
    }

    /* Ensure Dropdown/MegaMenu Toggle is full width and left aligned */
    .main-nav ul li.dropdown .dropdown-toggle,
    .main-nav ul li.mega-menu-parent>a {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    /* Force Icon Visibility on Mobile (Override display: none from underline) */
    .main-nav ul li.dropdown .dropdown-toggle::after,
    .main-nav ul li.mega-menu-parent>a::after {
        display: block !important;
        margin-left: 0;
    }

    .main-nav ul li.dropdown .dropdown-toggle .chevron-icon {
        display: inline-block;
        transition: transform 0.2s ease;
    }

    .main-nav ul li.dropdown.open>.dropdown-toggle .chevron-icon {
        transform: rotate(180deg);
    }

    .main-nav ul li.dropdown .dropdown-menu {
        position: static;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav ul li.dropdown .custom-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 12px;
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #158f4d;
    }

    .main-nav ul li.dropdown.open>.dropdown-menu {
        max-height: 500px;
    }

    .main-nav ul li.dropdown.open>.custom-dropdown-menu {
        max-height: 340px !important;
        overflow-y: auto !important;
        padding: 8px 0 !important;
    }

    .mega-menu {
        position: static;
        width: 100%;
        background: transparent;
        padding: 0;
        box-shadow: none;
        transform: none;
        overflow: hidden;
        max-height: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: max-height 0.25s ease;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu.active {
        max-height: calc(100vh - 220px);
        overflow-y: auto;

    }

    .mega-menu-container {
        padding: 0;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px 0 6px;
    }

    .mega-menu-item {
        padding: 8px;
    }

    .main-nav ul li.dropdown .dropdown-menu li a {
        padding-left: 0;
        background: transparent;
        border: none;
        font-size: 1rem;
        color: #555;
    }

    .main-nav ul li.dropdown .dropdown-menu li a:hover {
        color: var(--primary-color);
    }

    .main-nav ul li.dropdown .custom-dropdown-menu {
        width: 100%;
        max-width: 100%;
    }

    .main-nav ul li.dropdown .custom-dropdown-menu li a {
        display: block;
        width: 100%;
        padding: 12px 18px 12px 30px;
        /* Increased left padding for hierarchy */
        text-align: left;
        color: #fff !important;
        background: transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 1rem;
        font-weight: 600;
    }

    .main-nav ul li.dropdown .custom-dropdown-menu li:last-child a {
        border-bottom: none;
    }

    .main-nav ul li.dropdown .custom-dropdown-menu li a:hover {
        background: #f7d15b;
        color: #1d5a00 !important;
    }

    body.menu-open .mobile-menu-backdrop {
        display: none;
    }
}

body.menu-open .floating-actions {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
}

.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #43b54a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #43b54a;
    font-size: 0.9rem;
}

.contact-icon i {
    transform: none !important;
}

.phone {
    margin-bottom: 2px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info .phone {
    font-weight: 600;
    color: #2f8f3a;
    font-size: 0.98rem;
}

.contact-info .email {
    font-size: 0.82rem;
    color: #999;
}

.gp-footer {
    background: #f5f8ec;
    padding: 25px 0 0;
    font-family: 'Poppins', sans-serif;
    color: #0b3d0b;
}

.gp-footer-container {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 0.8fr 0.8fr 0.8fr;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

@media (max-width: 1200px) {
    .gp-footer-container {
        grid-template-columns: 1.1fr 1.1fr 1fr;
        gap: 20px;
        width: 94%;
    }
}

@media (max-width: 992px) {
    .gp-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 94%;
    }

    .gp-footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gp-footer-list li {
        justify-content: center;
    }

    .gp-footer-quote-side {
        text-align: center;
        width: 100%;

    }
}

@media (max-width: 600px) {
    .gp-footer-container {
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
        text-align: left;
    }

    .gp-footer-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .gp-footer-list li {
        justify-content: flex-start;
    }

    .gp-footer-title-spacer {
        display: none;
    }

    /* Products in 2-column grid on mobile */
    .gp-footer-col.gp-products-col .gp-footer-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px 15px;
        width: 100%;
    }

    .gp-footer-bottom-index {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .gp-copyright,
    .gp-designer {
        text-align: center;
        width: 100%;
    }
}


.gp-footer-col {
    text-align: left;
}

.gp-footer-col p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.gp-title {
    font-weight: 700;
    padding-bottom: 4px;
    border-bottom: 2px solid #1c7d1c;
    width: fit-content;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #0b3d0b;
}

.gp-footer-title-spacer {
    height: calc(1.05rem * 1.2 + 4px + 2px + 12px);
    width: 100%;
}

.gp-footer-logo {
    width: 140px;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

.gp-footer-logo:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0px 4px 8px rgba(28, 125, 28, 0.2));
}

.gp-footer-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.gp-footer-list li {
    margin-bottom: 5px;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    color: #0b3d0b;
}

.gp-footer-list li a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.gp-footer-list li a:hover {
    padding-left: 5px;
    color: #1c7d1c;
}

/* Icons */
.gp-icon,
.gp-tick,
.gp-link-icon {
    color: #1c7d1c;
    margin-right: 12px;
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.gp-footer-link {
    color: #0b3d0b;
    text-decoration: none;
}

.gp-footer-link:hover {
    color: #1c7d1c;
    text-decoration: underline;
}

.gp-social a {
    font-size: 1.4rem;
    margin-right: 15px;
    color: #0b3d0b;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.gp-social a:hover {
    color: #1c7d1c;
    transform: scale(1.2) translateY(-2px);
}

.gp-footer-bottom {
    text-align: center;
    border-top: 1px solid #d3dec6;
    margin-top: 5px;
    padding: 15px 0;
    font-size: 14px;
    color: #0b3d0b;
}

.gp-footer-bottom-index {
    padding: 15px 4%;
    border-top: 1px solid #d3dec6;
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.gp-footer-center-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-to-top-inline {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    top: -5px;
}

.scroll-to-top-inline:hover {
    background-color: var(--dark-green);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .gp-footer-bottom-index {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.gp-footer-quote-side {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(28, 125, 28, 0.1);
}

.gp-footer-quote-side .gp-title {
    margin-bottom: 8px;
    font-size: 1rem;
}

.gp-footer-quote-side p {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

/* Removing old classes that are replaced */

.gp-footer-social {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.gp-footer-social a {
    color: #444;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.gp-footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.gp-designer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.gp-designer a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 80px;
    right: 30px;

    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-whatsapp {
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

.scroll-to-top {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--dark-green);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


.g-faq-section {
    padding: 20px 20px;
    background: #eef6ff;
}

.g-faq-title {
    text-align: center;
    margin-bottom: 12px;
    font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
    color: #2e7d32;
}

.g-faq-subtitle {
    text-align: center;
    color: #0f4b00;
    max-width: 640px;
    margin: 0 auto 40px;
    font-size: 1rem;
}

.g-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.g-faq-item {
    background: #fff;
    border: 2px solid #d8f0d5;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: border-color 0.3s ease;
}

.g-faq-item.active {
    border-color: #0f8c36;
}

.g-faq-question {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #0f4b00;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.g-faq-question:hover {
    color: #0f8c36;
}

.g-faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid #0f8c36;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.g-faq-item.active .g-faq-toggle {
    background: #0f8c36;
    color: #fff;
    transform: rotate(45deg);
}

.g-faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.g-faq-item.active .g-faq-answer {
    padding: 16px 24px 24px;
    max-height: 500px;
}

.g-faq-answer p {
    margin: 0;
    color: #182c13;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .g-faq-section .g-faq-item {
        border-radius: 12px;
        border: 1px solid rgba(46, 125, 50, 0.18);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    }

    .g-faq-section .g-faq-question {
        padding: 16px 14px;
        align-items: flex-start;
        gap: 12px;
    }

    .g-faq-section .g-faq-question span:first-child {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .g-faq-section .g-faq-question .g-faq-toggle {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--primary-color, #2e7d32);
        color: #fff;
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1;
        box-shadow: 0 10px 22px rgba(46, 125, 50, 0.22);
        transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
        margin-top: 2px;
        border: none;
    }

    .g-faq-section .g-faq-question:focus-visible {
        outline: none;
        box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.18);
    }

    .g-faq-section .g-faq-answer {
        padding: 0 14px;
    }

    .g-faq-section .g-faq-item.active .g-faq-answer {
        padding: 0 14px 14px;
    }

    .g-faq-section .g-faq-item.active .g-faq-toggle {
        background: #0f4b00;
        box-shadow: 0 10px 22px rgba(15, 75, 0, 0.22);
    }
}

/* PP Cup & PET Cup banner */
.PP_Cup_banner {
    background: url("https://greenpackssg.com/wp-content/uploads/2024/12/Banner-1.jpg") center/cover no-repeat;
    height: 135px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 112px;
}

.PP_Cup_banner h1 {
    color: #2e7d32 !important;
    font-size: clamp(1.5rem, 2vw + 1rem, 2.2rem);
    margin: 0;
    padding: 0 10px;
}

/* Responsive */
@media (max-width: 960px) {
    .PP_Cup_banner {
        height: auto;
        padding: 80px 20px;
        margin-top: 60px;
    }

    .PP_Cup_banner h1 {
        font-size: clamp(1.5rem, 3vw + 0.8rem, 2rem);
    }
}

@media (max-width: 1200px) {
    .container {
        width: 94%;
        padding: 0 15px;
    }

    .product-intro-section .container,
    .customization-layout,
    .leading-grid,
    .solutions-layout {
        gap: 30px;
    }
}

@media (max-width: 992px) {

    .header .container,
    .topbar-container {
        width: 100%;
        padding: 0 16px;
    }

    .product-intro-section .container,
    .two-column-section,
    .highlight-grid,
    .contact-hero-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .content-left,
    .content-right,
    .product-intro-text,
    .product-intro-image,
    .contact-details,
    .contact-form-panel {
        width: 100%;
        text-align: left;
    }

    .doing-grid {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {

    h1,
    h2 {
        font-size: clamp(1.6rem, 2.5vw + 1rem, 2.1rem);
    }

    .highlight {
        padding: 60px 0;
    }

    .product-intro-section .container,
    .leading-grid,
    .solutions-layout,
    .two-column-section {
        padding: 1px 1px;
    }

    .feature-icon,
    .button-icon {
        margin-right: 8px;
    }

    .contact-form-panel .row.two-cols {
        grid-template-columns: 1fr;
    }
}

.contact-form-panel {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    color: #333;
    margin-top: 0;
}

.contact-form-panel h2 {
    color: #2e7d32;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: normal;
    text-shadow: none;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
}

.contact-form-panel form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-panel .row.two-cols {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    border-radius: 6px;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #333;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.contact-form-panel input:focus,
.contact-form-panel textarea:focus {
    outline: none;
    border-color: #2e7d32;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.contact-form-panel textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form-panel .cta-button {
    width: 100%;
    padding: 14px 22px;
    border-radius: 8px;
    border: none;
    background: #2e7d32;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form-panel .cta-button:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 125, 50, 0.2);
}

@media (max-width: 768px) {
    .contact-form-panel .row.two-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .container {
        width: 94%;
        padding: 0 15px;
    }

    .product-intro-section .container,
    .contact-hero-grid {
        padding: 24px 18px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }

    .product-intro-section .container,
    .contact-hero-grid {
        padding: 24px 18px;
    }

    .highlight-grid,
    .customization-layout,
    .solutions-layout {
        gap: 24px;
    }

    .customization-list li,
    .leading-bullets li,
    .highlight-points li {
        font-size: 0.95rem;
    }

    .enquiry-button-container {
        padding: 0 20px;
        margin: 25px auto;
    }

    .enquiry-button-container .btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 18px;
        font-size: 0.95rem;
        border-radius: 8px;
    }
}

/* Desktop / default */
.custom-dropdown-menu {
    width: clamp(220px, 28vw, 320px);
    max-height: 0;
    overflow: hidden;
}

.main-nav ul li.dropdown.open .custom-dropdown-menu {
    max-height: 520px;
    overflow: visible;
}

/* Tablet / Mobile menu layout */
@media (max-width: 992px) {
    .main-nav ul li.dropdown .custom-dropdown-menu {
        width: min(320px, 80vw);
        padding: 0;
        /* closed: no green strip */
    }

    .main-nav ul li.dropdown.open>.custom-dropdown-menu {
        max-height: 340px;
        overflow-y: auto;
        padding: 8px 0;
        /* open padding */
    }
}

@media (max-width: 768px) {
    .main-nav ul li.dropdown .custom-dropdown-menu {
        width: min(320px, 90vw);
    }
}

@media (max-width: 480px) {
    .main-nav ul li.dropdown .custom-dropdown-menu {
        width: calc(100vw - 36px);
        max-width: 340px;
    }
}

/* FINAL RESPONSIVE OVERRIDES */
@media (max-width: 992px) {
    .gp-footer-bottom-index {
        flex-direction: column !important;
        gap: 25px !important;
        text-align: center !important;
        padding: 30px 20px !important;
    }

    .gp-footer-bottom-center {
        order: 2 !important;
        flex: none !important;
    }

    .gp-footer-bottom-right {
        order: 3 !important;
        justify-content: center !important;
        flex: none !important;
    }

    .gp-footer-col-bottom-left {
        order: 1 !important;
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

@media (max-width: 600px) {
    .topbar-email {
        display: flex !important;
    }

    .topbar-social {
        display: none !important;
    }

    .topbar-right {
        justify-content: center !important;
        width: 100% !important;
    }
}