:root {
    /* --primary-color: #D7DF22; */
    --primary-color: #ed441c;
    --primary-color-light: #fa5935;
    --primary-hover: #B00320;
    --secondary-color: #011627;
    --text-color: #2B2D42;
    --text-light: #8D99AE;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;

    --gi-export-yellow: var(--primary-color);
    --gi-export-dark: #131626;
    --gi-export-light-gray: #F7F7F7;
    --gi-export-text: #666;
    --gi-export-teal: var(--primary-color);

    --container-width: 1240px;
    --header-height: 80px;
    --top-bar-height: 44px;
    --transition: all 0.3s ease;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary-color);
    line-height: 1.2;
}

.overlay-home {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(66 229 122 / 76%) 0%, rgb(188 233 139 / 70%) 100%);
    /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%); */
}

.container {
    max-width: 1368px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Header & Nav Redesign */
.site-header {
    width: 100%;
    background-color: #121212;
    position: relative;
    z-index: 1000;
}

.nav-container-wide {
    display: flex;
    padding: 0px 40px;
    align-items: center;
}

.nav-inner-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 100px;
    display: block;
}

.menu-container-centered {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-menu-centered {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-menu-centered li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.primary-menu-centered li a {
    font-size: 16px;
    font-weight: 200;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 10px;
}

.primary-menu-centered li.current-menu-item a,
.primary-menu-centered li:first-child a {
    color: var(--primary-color);
    font-weight: 500;
}

.header-right-tools {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon-circle {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.phone-texts {
    display: flex;
    flex-direction: column;
}

.phone-texts .label {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 3px;
}

.phone-texts .number {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.btn-quote-round {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--white);
    font-size: 15px;
}

.arrow-circle {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-block {
    width: 80px;
    height: 90px;
    /* Adjust to match header height */
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
}

.search-trigger {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--white);
}

.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height) - var(--top-bar-height));
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(1, 22, 39, 0.8) 0%, rgba(1, 22, 39, 0.4) 50%, rgba(1, 22, 39, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 600px; */
}

.hero-content p {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 0;
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.sub-title {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.footer-social {
    gap: 10px;
}

.footer-social a {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    margin: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

/* About Section Refined */
.about-section {
    background-color: var(--white);
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-area {
    flex: 1;
    position: relative;
    padding-left: 40px;
}

.vertical-red-line {
    position: absolute;
    left: 0;
    top: 60px;
    bottom: 60px;
    width: 3px;
    background-color: var(--primary-color);
}

.about-image-frame {
    position: relative;
    width: 80%;
    /* "Little small" as requested */
}

.about-img {
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 2px;
}

.offset-frame-red {
    position: absolute;
    top: 25px;
    right: -25px;
    bottom: -25px;
    left: 25px;
    border: 2px solid var(--primary-color);
    z-index: 1;
    border-radius: 2px;
}

.about-text-area {
    flex: 1.2;
}

.about-text-area h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.about-text-area p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
}

.about-checklist {
    margin-bottom: 40px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.about-checklist i {
    color: var(--primary-color);
    font-size: 14px;
}

.btn-more-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 3px;
    transition: var(--transition);
}

.btn-more-info:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Management Section */
.management-section {
    background-color: var(--white);
}

.management-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: #4DBBB7;
    /* Teal from screenshot */
    margin: 0 auto 50px;
}

.management-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.management-row.reverse {
    flex-direction: row-reverse;
}

.management-content {
    flex: 1.2;
}

.management-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.management-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.management-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-frame-teal {
    position: relative;
    padding: 10px;
    background-color: var(--white);
}

.image-frame-teal::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    bottom: -15px;
    left: 20px;
    background-color: #4DBBB7;
    /* Teal frame from screenshot */
    z-index: -1;
    border-radius: 2px;
}

.image-frame-teal img {
    display: block;
    width: 100%;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {

    .management-row,
    .management-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

/* Services Grid Redesign */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card-new {
    background-color: #f5f5f7;
    /* Slight off-white as per ref */
    padding: 35px 30px;
    border-radius: 5px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    cursor: pointer;
}

.service-card-new:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.service-card-new:hover h3,
.service-card-new:hover p {
    color: var(--white);
}

.service-image {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 5px;
}

.service-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.service-card-new:hover .service-image img {
    transform: scale(1.1);
}

.read-more-alt {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
    color: var(--secondary-color);
    transition: color 0.3s ease;
    text-decoration: none;
}

.service-card-new .arrow-circle {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.3s ease;
}

.service-card-new:hover .read-more-alt {
    color: var(--white);
}

.service-card-new:hover .arrow-circle {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Countries Grid Modern */
.countries-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.country-card-modern {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow from ref */
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.country-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.country-flag-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.country-flag-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.country-info h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.country-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 992px) {
    .countries-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .countries-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* Contact/Map */
.contact-map-wrapper {
    display: flex;
}

.contact-form-box {
    flex: 1;
    background-color: var(--white);
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
    margin-right: -100px;
    margin-bottom: -50px;
}

.map-box {
    flex: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.callback-form input,
.callback-form select,
.callback-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-family: inherit;
}

.callback-form textarea {
    height: 150px;
    margin-bottom: 20px;
}

.w-full {
    width: 100%;
}

@media (max-width: 992px) {
    .welcome-wrapper {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-map-wrapper {
        flex-direction: column;
    }

    .contact-form-box {
        margin-right: 0;
        margin-bottom: 40px;
    }
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a:hover,
.contact-col p a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-col p {
    margin-bottom: 15px;
}

.contact-col p i {
    margin-right: 5px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 15px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}



/* Shop Layout Grid Refined */
.shop-layout-grid-refined {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

.bg-light {
    background-color: #f4f7f6;
}

/* Sidebar Refined */
.shop-sidebar-refined {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shop-sidebar-refined .widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.shop-sidebar-refined .widget-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--secondary-color);
    border-bottom: none;
    padding: 0;
}

/* Shop Top Bar */
.shop-top-bar-refined {
    background: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.shop-tools {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-toggles {
    display: flex;
    gap: 5px;
    background: #f0f0f0;
    padding: 5px;
    border-radius: 8px;
}

.btn-view {
    border: none;
    background: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view.active {
    background: var(--primary-color);
    color: #fff;
}

.gie-woocommerce-content .page-title,
.gie-woocommerce-content .woocommerce-result-count,
.gie-woocommerce-content .woocommerce-ordering {
    display: none;
}

/* Product Card Refined */
.woocommerce ul.products li.product {
    background: #fff;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-decoration: none;
}

.woocommerce ul.products li.product img {
    margin: 0 !important;
    border-radius: 0;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.product-card-meta {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 1px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 20px;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 800;
    text-align: left;
    /* Keep left or center? User said center */
    text-align: center;
}

/* Shop Top Bar Modern */
.shop-top-bar-modern {
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
}

.shop-actions-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-toggles-modern {
    display: flex;
    gap: 5px;
    background: #f1f3f5;
    padding: 4px;
    border-radius: 6px;
}

.btn-view-mode {
    border: none;
    background: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #888;
    cursor: pointer;
    font-size: 14px;
}

.btn-view-mode.active {
    background: #219398;
    color: #fff;
}

/* Product Cards */
.woocommerce ul.products li.product {
    padding: 20px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.btn-view-details {
    background-color: #219398;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-view-details:hover {
    background-color: #1a7a7e;
}

/* Remove sale and price styles */
.woocommerce span.onsale {
    display: none !important;
}

/* Single Product Page Refined */
.single-product-layout-refined {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.02);
}

.single-product-cat-label {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 10px;
    display: block;
}

.single-product-header-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.single-product-header-wrap .product_title {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: var(--secondary-color);
}

.stock-status-badge {
    background: #d4edda;
    color: #28a745;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: capitalize;
}

/* Custom Rating */
.custom-product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.custom-product-rating .star-rating {
    font-size: 14px;
    color: #ffb74d;
}

.rating-info {
    font-size: 13px;
    color: #888;
}

.single-product-layout-refined .price {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-product-layout-refined .price ins {
    text-decoration: none;
}

.single-product-layout-refined .price del {
    font-size: 16px;
    color: #bbb;
    font-weight: 400;
}

/* Variation Buttons Refined */
.woocommerce div.product form.cart {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce div.product form.cart .quantity {
    margin: 0 !important;
}

.woocommerce div.product form.cart .quantity input {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    width: 60px;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button,
.enquire-now-button {
    background-color: #2e4d3a !important;
    color: #fff !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    flex: 0 0 auto !important;
    min-width: unset !important;
    text-decoration: none;
    display: inline-block;
}

.enquire-now-button:hover {
    background-color: var(--primary-color) !important;
}

/* Gallery Thumbnails with Borders */
.woocommerce div.product div.images .flex-control-thumbs li {
    padding: 5px;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
    opacity: 1;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs li img:hover {
    border-color: #333;
}

/* Breadcrumb Styling */
.woocommerce-breadcrumb-refined {
    font-size: 14px;
    color: #999;
}

.woocommerce-breadcrumb-refined a {
    color: #666;
    text-decoration: none;
}

.woocommerce-breadcrumb-refined a:hover {
    color: var(--primary-color);
}

.wishlist-icon-btn {
    background: none;
    border: 1px solid #eee;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
}

/* Social Share */
.product-share-wrap {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.product-share-wrap span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.product-share-wrap a {
    color: #2e4d3a;
    font-size: 16px;
    transition: color 0.3s ease;
}

.product-share-wrap a:hover {
    color: var(--primary-color);
}

/* Tabs Table Redesign */
.woocommerce-Tabs-panel--additional_information th {
    background: #ffb74d !important;
}

/* Related Products Refined */
.related.products>h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
}

.related.products>h2:before {
    content: '- Related Products -';
    display: block;
    font-size: 12px;
    color: #ffb74d;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Tabs Redesign */
.woocommerce-tabs {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.woocommerce-tabs ul.tabs {
    border: none !important;
    padding: 0 !important;
    display: flex !important;
    justify-content: center !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
    background: none !important;
}

.woocommerce-tabs ul.tabs:before {
    display: none;
}

.woocommerce-tabs ul.tabs li {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.woocommerce-tabs ul.tabs li:after,
.woocommerce-tabs ul.tabs li:before {
    display: none !important;
}

.woocommerce-tabs ul.tabs li a {
    font-size: 18px;
    font-weight: 700;
    color: #aaa;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
}

.woocommerce-tabs ul.tabs li.active a {
    color: #004d3d;
}

.woocommerce-tabs ul.tabs li.active a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #004d3d;
}

.woocommerce-Tabs-panel--additional_information table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.woocommerce-Tabs-panel--additional_information th {
    background: #ffb74d;
    color: #fff;
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
}

.woocommerce-Tabs-panel--additional_information td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    background: #fff;
}

.woocommerce-Tabs-panel--additional_information tr:nth-child(even) td {
    background: #f9f9f9;
}

/* Trust Badges */
.product-trust-badges-container {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 50px;
    margin-bottom: 50px;
}

.product-trust-badges {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: #fff8e1;
    color: #ffb74d;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trust-info strong {
    display: block;
    font-size: 16px;
    color: var(--secondary-color);
}

.trust-info span {
    font-size: 13px;
    color: #888;
}

@media (max-width: 992px) {
    .product-trust-badges {
        flex-direction: column;
        gap: 20px;
    }
}

.woocommerce ul.products li.product .price {
    margin: 0;
    color: var(--secondary-color);
    font-weight: 800;
    font-size: 16px;
}

.woocommerce ul.products li.product .price del {
    color: #ccc !important;
}

.discount-tag {
    background: #ffecec;
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.product-card-footer-modern {
    padding: 0 20px 20px;
    margin-top: auto;
}

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: #fff !important;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-add-to-cart:hover {
    background-color: var(--secondary-color);
}

/* On-Sale Badge */
.woocommerce span.onsale {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    padding: 5px 12px;
    border-radius: 4px;
    top: 15px;
    left: 15px;
    right: auto;
    min-height: auto;
    min-width: auto;
    line-height: 1;
}

@media (max-width: 1200px) {
    .shop-layout-grid-refined {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */

/* Spacing - Padding & Margin (0-5 scale) */
.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.p-5 {
    padding: 3rem !important;
}

/* Margin Specifics */
.mt-1 {
    margin-top: 0.25rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

/* Padding Specifics */
.pt-1 {
    padding-top: 0.25rem !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* Typography */
.fs-1 {
    font-size: 2.5rem !important;
}

.fs-2 {
    font-size: 2rem !important;
}

.fs-3 {
    font-size: 1.75rem !important;
}

.fs-4 {
    font-size: 1.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.fs-small {
    font-size: 0.875rem !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-extrabold {
    font-weight: 800 !important;
}

.fw-black {
    font-weight: 900 !important;
}

/* Radius */
.rounded-sm {
    border-radius: var(--radius-sm) !important;
}

.rounded-md {
    border-radius: var(--radius-md) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

.rounded-2xl {
    border-radius: var(--radius-2xl) !important;
}

.rounded-full {
    border-radius: 9999px !important;
}

/* Borders */
.border {
    border: 1px solid #ddd !important;
}

.border-top {
    border-top: 1px solid #ddd !important;
}

.border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.border-left {
    border-left: 1px solid #ddd !important;
}

.border-right {
    border-right: 1px solid #ddd !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Flex */
.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}


/* gi-export Hero Section */
.hero-gi-export {
    background-image: url('../images/header-bg.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0 180px;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-gi-export::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 22, 38, 0.7);
    z-index: -1;
}

.hero-badge-f {
    display: inline-block;
    background: var(--primary-color-light);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-gi-export h1 {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-gi-export h1 span {
    color: var(--primary-color-light);
}

.hero-gi-export p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn-gi-export {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--gi-export-dark);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gi-export i {
    background: var(--gi-export-dark);
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-size: 12px;
}

/* Hero Bottom Ribbon */
.hero-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 2;
}

.ribbon-title {
    background: var(--gi-export-yellow);
    color: var(--gi-export-white);
    padding: 20px 40px;
    font-weight: 800;
    font-size: 16px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    width: 280px;
    display: flex;
    align-items: center;
}

.ribbon-features {
    flex: 1;
    background: var(--gi-export-dark);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2% 100%);
}

.r-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.r-feature i {
    color: var(--gi-export-yellow);
    font-size: 20px;
}

/* Smart Energy Section */
.smart-energy-sec {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.smart-energy-sec .icon-top {
    background: var(--gi-export-dark);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
}

.smart-energy-sec h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gi-export-dark);
    max-width: 900px;
    margin: 0 auto 40px;
    text-transform: uppercase;
}

.smart-energy-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.smart-energy-gallery img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.smart-text-block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin-left: auto;
    text-align: left;
}

.smart-text-block p {
    font-size: 14px;
    color: var(--gi-export-text);
}

.btn-dark-f {
    background: var(--gi-export-dark);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-dark-f i {
    color: var(--gi-export-yellow);
}

/* Solar Solutions Sec */
.solar-solutions-sec {
    background: var(--gi-export-dark);
    padding: 80px 0;
}

.solar-solutions-sec h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
}

.ss-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ss-card {
    background: #fff;
    text-align: center;
    border-radius: 5px;
    transition: all 0.3s;
}

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

.ss-icon {
    width: 60px;
    height: 60px;
    background: var(--gi-export-dark);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.ss-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gi-export-dark);
    margin-bottom: 15px;
}

.ss-card p {
    font-size: 14px;
    color: var(--gi-export-text);
    margin-bottom: 20px;
}

.btn-outline-f {
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 20px;
    color: var(--gi-export-dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
}

.btn-outline-f:hover {
    background: var(--gi-export-yellow);
    border-color: var(--gi-export-yellow);
}

/* Panels Inverters */
.panels-inverters-sec {
    padding: 80px 0;
    background: #fff;
}

.panels-inverters-sec h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--gi-export-dark);
    margin-bottom: 50px;
}

.pi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pi-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.pi-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pi-feature-box {
    display: flex;
    flex-direction: column;
}

.pi-f-icon {
    width: 40px;
    height: 40px;
    background: var(--gi-export-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.pi-feature-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gi-export-dark);
    margin-bottom: 10px;
}

.pi-feature-box p {
    font-size: 14px;
    color: var(--gi-export-text);
}

/* Clean Environment Sec */
.clean-env-sec {
    padding: 80px 0;
    background: var(--gi-export-light-gray);
}

.ce-header {
    text-align: right;
    margin-bottom: 30px;
}

.ce-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gi-export-dark);
}

.ce-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: center;
}

.ce-info {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ce-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gi-export-dark);
    margin-bottom: 15px;
}

.ce-info p {
    font-size: 14px;
    color: var(--gi-export-text);
    margin-bottom: 25px;
}

.ce-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Best Offer Sec */
.best-offer-sec {
    padding: 80px 0;
    background: #fff;
}

.bo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.bo-main-box {
    background: #4A6E99;
    color: #fff;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.bo-main-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 2;
    margin-bottom: 100px;
}

.bo-main-box img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
    z-index: 1;
}

.bo-card {
    border: 1px solid #eee;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bo-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gi-export-dark);
    margin-bottom: 15px;
}

.bo-card p {
    font-size: 14px;
    color: var(--gi-export-text);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-sec {
    background: var(--secondary-color);
    padding: 100px 0 80px;
    position: relative;
    /* margin-top: 60px; */
}

.cta-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--gi-export-yellow);
    /* Creates the angled yellow bar seen in the design */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 95% 100%, 90% 30%, 30% 30%, 25% 100%, 0 100%);
    z-index: 1;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.cta-wrapper h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.4;

    margin: 0;
    text-transform: uppercase;
}

.cta-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 8px;
    border-radius: 50px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-phone {
    padding-left: 25px;
    font-size: 20px;
    font-weight: 800;
    color: var(--gi-export-dark);
}

.cta-phone-btn {
    background: var(--gi-export-dark);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 18px;
}

.cta-phone-btn:hover {
    background: var(--gi-export-teal);
    color: #fff;
}

/* ----- UPDATED SOLAR SOLUTIONS SECTION ----- */
.solar-solutions-sec {
    background: #111424;
    /* very dark blue */
    padding: 80px 0;
    position: relative;
}

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

.ss-header h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
}

.ss-nav {
    display: flex;
}

.ss-nav-btn {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.ss-nav-btn.next {
    background: var(--gi-export-yellow);
    border-color: var(--gi-export-yellow);
    color: var(--gi-export-dark);
}

.ss-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.ss-cards::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.ss-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s;

    /* Flex styles for carousel */
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
    min-width: 250px;
}

@media (max-width: 991px) {
    .ss-card {
        flex: 0 0 calc(33.333% - 13.33px);
    }
}

@media (max-width: 767px) {
    .ss-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .ss-card {
        flex: 0 0 100%;
    }
}

.ss-card-content {
    padding: 20px;
}

.ss-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 25px; */
    position: relative;
}

.ss-icon {
    width: 50px;
    height: 50px;
    background: #111424;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
}

.ss-img-mask {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.ss-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ss-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111424;
    margin-bottom: 15px;
}

.ss-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.ss-card .btn-outline-f {
    border: 1px solid #ddd;
    padding: 8px 25px;
    border-radius: 30px;
    color: #111424;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
}

/* ----- UPDATED PANELS INVERTERS SECTION ----- */
.panels-inverters-sec {
    padding: 80px 0;
    background: #1d1d1d;
    /* light cream */
    position: relative;
    overflow: hidden;
}

.pi-yellow-corner-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 50px;
    background: var(--gi-export-yellow);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.pi-yellow-corner-bottom {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 300px;
    height: 100px;
    background: var(--gi-export-yellow);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(15deg);
}

.panels-inverters-sec h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.pi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.pi-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
}

.pi-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pi-feature-box {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.pi-feature-box.active-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.pi-f-icon {
    width: 40px;
    height: 40px;
    background: #111424;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.pi-feature-box.active-card .pi-f-icon {
    background: var(--gi-export-yellow);
    color: var(--white);
}

.pi-feature-box h4 {
    font-size: 16px;
    font-weight: 800;
    color: #111424;
    margin-bottom: 10px;
}

.pi-feature-box p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* ----- MANAGEMENT SECTION UPDATE ----- */

.about-section {
    background: #fff;
    padding: 80px 0;
}

.management-title-new {
    font-size: 28px;
    font-weight: 800;
    color: var(--gi-export-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.about-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-wrapper-new.reverse-layout {
    /* The layout is already defined by HTML source order, but just in case */
}

.about-image-area-new {
    position: relative;
    padding-left: 20px;
    /* space for the line */
    padding-bottom: 20px;
    /* space for the frame */
}

.vertical-theme-line {
    position: absolute;
    top: 20px;
    left: 0;
    width: 4px;
    height: 80%;
    background: var(--gi-export-teal);
    z-index: 2;
}

.about-image-frame-new {
    position: relative;
    z-index: 1;
}

.about-img-new {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

.offset-frame-theme {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--gi-export-teal);
    z-index: 1;
}

.about-text-area-new .sub-title-gray {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.about-text-area-new h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gi-export-dark);
    margin-bottom: 25px;
}

.about-text-area-new p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-footer-new {
    margin-top: 30px;
}

.btn-theme-solid {
    background: var(--gi-export-teal);
    color: var(--secondary-color);
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-theme-solid i {
    margin-left: 10px;
    font-size: 14px;
}

.btn-theme-solid:hover {
    background: var(--gi-export-dark);
    color: #fff;
}

/* ----- WHY CHOOSE US SECTION ----- */
.why-choose-us-sec {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url(../images/hero-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Inter', sans-serif;
}

.wcu-header {
    margin-bottom: 50px;
}

.wcu-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.wcu-header p {
    font-size: 26px;
    color: var(--white);
    line-height: 1.6;
}

.wcu-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
}

.wcu-left-grid {
    grid-column: span 6;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
}

.wcu-card {
    border-radius: 20px;
    background-color: #9d4d4d56;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 220px;
    border: 3px solid var(--gi-export-teal);
}

.wcu-icon {
    font-size: 24px;
    background-color: var(--gi-export-teal);
    padding: 12px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.wcu-card.span-3 {
    grid-column: span 3;
}

.wcu-card.span-2 {
    grid-column: span 2;
}

.wcu-card.span-6 {
    grid-column: span 6;
}

.wcu-card-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.wcu-stat {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -1px;
}

.wcu-card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
}

.bg-blue {
    background: #4255D4;
    color: #fff;
}

.bg-blue .wcu-card-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.bg-light {
    background: #F4F6FB;
    color: #111;
}

.bg-green {
    background: #C1FA8E;
    color: #111;
}

.text-blue {
    color: #4255D4;
}

.wcu-card.text-card .wcu-card-main h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.wcu-card.text-card .wcu-card-main p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
}

.fw-bold {
    font-weight: 700;
}

.wcu-right-img {
    grid-column: span 3;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 100%;
    border: 3px solid var(--gi-export-teal);
}

.wcu-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wcu-img-decor {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

.wcu-img-decor::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .wcu-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .wcu-left-grid {
        grid-column: span 1;
        grid-template-columns: repeat(2, 1fr);
    }

    .wcu-card.span-2 {
        grid-column: span 1;
    }

    .wcu-card.span-6 {
        grid-column: span 2;
    }

    .wcu-right-img {
        grid-column: span 1;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .wcu-left-grid {
        grid-template-columns: 1fr;
    }

    .wcu-card.span-3,
    .wcu-card.span-2,
    .wcu-card.span-6 {
        grid-column: span 1;
    }

    .wcu-header h2 {
        font-size: 32px;
    }
}

/* Custom Contact Form 7 Layout */
.custom-contact-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info-panel {
    background: var(--secondary-color, #011627);
    color: #fff;
    padding: 50px;
    width: 45%;
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.contact-info-panel .badge-solid {
    display: inline-block;
    background: var(--primary-color, #D7DF22);
    color: var(--secondary-color, #011627);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info-panel h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-info-panel p {
    color: #a1a1aa;
    font-size: 15px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: calc(50% - 10px);
}

.contact-item.w-100 {
    width: 100%;
}

.contact-icon {
    color: var(--primary-color, #D7DF22);
    font-size: 20px;
    margin-top: 3px;
}

.contact-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text span {
    color: #a1a1aa;
    font-size: 18px;
    line-height: 1.5;
    display: block;
}

.contact-form-panel {
    padding: 50px;
    width: 55%;
    background: #fff;
}

.contact-form-panel .badge-outline {
    display: inline-block;
    border: 1px solid #e4e4e7;
    color: #52525b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form-panel h2 {
    color: var(--secondary-color, #011627);
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-form-panel p {
    color: #71717a;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background: #fafafa;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color, #D7DF22);
    background: #fff;
}

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

.btn-submit {
    background: var(--primary-color, #D7DF22) !important;
    color: var(--secondary-color, #011627) !important;
    padding: 14px 30px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.btn-submit:hover {
    background: var(--primary-hover, #B00320) !important;
    color: #fff !important;
}

@media (max-width: 992px) {
    .custom-contact-wrapper {
        flex-direction: column;
    }

    .contact-info-panel,
    .contact-form-panel {
        width: 100%;
        border-radius: 0;
    }

    .contact-info-panel {
        border-radius: 16px 16px 0 0;
    }

    .contact-form-panel {
        border-radius: 0 0 16px 16px;
    }
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-item {
        width: 100%;
    }
}

/* --- Premium Animation System --- */

/* Scroll Reveal Base */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
}

/* Animation Directions */
.fade-up {
    transform: translateY(40px);
}

.fade-up.active {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-40px);
}

.fade-left.active {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(40px);
}

.fade-right.active {
    transform: translateX(0);
}

.zoom-in {
    transform: scale(0.95);
}

.zoom-in.active {
    transform: scale(1);
}

/* Staggered Delays (for grids) */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* --- Enhanced Hover Effects --- */

/* Image Hover Zoom */
.hover-zoom {
    overflow: hidden;
    display: block;
}

.hover-zoom img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hover-zoom:hover img {
    transform: scale(1.08);
}

/* Unified Card Hover Enhancement */
.wcu-card,
.service-card-new,
.ss-card,
.country-card-modern,
.pi-feature-box,
.custom-contact-wrapper {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wcu-card:hover,
.service-card-new:hover,
.ss-card:hover,
.country-card-modern:hover,
.pi-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1, 22, 39, 0.12);
}

/* Button & Icon Micro-interactions */
.btn-gi-export,
.btn-theme-solid,
.btn-outline-f,
.btn-submit {
    transition: all 0.3s ease;
}

.btn-gi-export:hover i,
.btn-theme-solid:hover i {
    transform: translateX(5px);
}

/* Pulse effect for badges */
@keyframes pulse-primary {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 45, 32, 0.9);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(233, 45, 32, 0.1);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(233, 45, 32, 0);
    }
}

.hero-badge-f,
.badge-solid {
    animation: pulse-primary 3s infinite;
}

/* Sticky Header on scroll effect (if header has id) */
.site-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: rgba(20, 20, 20, .8);
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ==========================================================================
   PREMIUM BUTTON COMPONENT OVERRIDES
   Pill-shaped solid buttons with a double offset border design (per mockup)
   ========================================================================== */

/* 1. Base Button UI Style */
.btn,
.btn-primary,
.btn-more-info,
.btn-gi-export,
.btn-theme-solid,
.btn-outline-f,
.btn-submit,
.btn-add-to-cart,
.btn-dark-f,
.btn-view-details,
.enquire-now-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce #content input.button,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page #content input.button,
.woocommerce div.product form.cart .button.single_add_to_cart_button,
.woocommerce .cart-collaterals .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #place_order,
.woocommerce-page #place_order {
    position: relative !important;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 100px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    padding: 14px 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    overflow: visible !important;
    /* Required to show the outer offset ring */
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: none !important;
    height: auto !important;
    cursor: pointer !important;
}

/* Clean up icons inside premium buttons */
.btn i,
.btn-primary i,
.btn-more-info i,
.btn-gi-export i,
.btn-theme-solid i,
.btn-outline-f i,
.btn-submit i,
.btn-add-to-cart i,
.btn-dark-f i,
.btn-view-details i,
.enquire-now-button i,
.woocommerce a.button i,
.woocommerce button.button i,
.woocommerce div.product form.cart .button.single_add_to_cart_button i {
    color: var(--white) !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    margin: 0 0 0 6px !important;
    font-size: inherit !important;
    display: inline-flex !important;
}

/* 2. Outer Offset Ring (Pseudo-element Double Border) */
.btn::after,
.btn-primary::after,
.btn-more-info::after,
.btn-gi-export::after,
.btn-theme-solid::after,
.btn-outline-f::after,
.btn-submit::after,
.btn-add-to-cart::after,
.btn-dark-f::after,
.btn-view-details::after,
.enquire-now-button::after,
.woocommerce a.button::after,
.woocommerce button.button::after,
.woocommerce input.button::after,
.woocommerce #respond input#submit::after,
.woocommerce #content input.button::after,
.woocommerce-page a.button::after,
.woocommerce-page button.button::after,
.woocommerce-page input.button::after,
.woocommerce-page #respond input#submit::after,
.woocommerce-page #content input.button::after,
.woocommerce div.product form.cart .button.single_add_to_cart_button::after,
.woocommerce .cart-collaterals .checkout-button::after,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after,
.woocommerce #place_order::after,
.woocommerce-page #place_order::after {
    content: '' !important;
    position: absolute !important;
    top: -5px !important;
    left: -5px !important;
    right: -5px !important;
    bottom: -5px !important;
    border: 1.5px solid var(--primary-color) !important;
    border-radius: 100px !important;
    opacity: 1 !important;
    pointer-events: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 2 !important;
}

/* 3. Hover Interactions */
.btn:hover,
.btn-primary:hover,
.btn-more-info:hover,
.btn-gi-export:hover,
.btn-theme-solid:hover,
.btn-outline-f:hover,
.btn-submit:hover,
.btn-add-to-cart:hover,
.btn-dark-f:hover,
.btn-view-details:hover,
.enquire-now-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce #content input.button:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page #content input.button:hover,
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce .cart-collaterals .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #place_order:hover,
.woocommerce-page #place_order:hover {
    background-color: var(--primary-hover) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
}

/* Outer offset ring expands slightly on hover and changes color */
.btn:hover::after,
.btn-primary:hover::after,
.btn-more-info:hover::after,
.btn-gi-export:hover::after,
.btn-theme-solid:hover::after,
.btn-outline-f:hover::after,
.btn-submit:hover::after,
.btn-add-to-cart:hover::after,
.btn-dark-f:hover::after,
.btn-view-details:hover::after,
.enquire-now-button:hover::after,
.woocommerce a.button:hover::after,
.woocommerce button.button:hover::after,
.woocommerce input.button:hover::after,
.woocommerce #respond input#submit:hover::after,
.woocommerce #content input.button:hover::after,
.woocommerce-page a.button:hover::after,
.woocommerce-page button.button:hover::after,
.woocommerce-page input.button:hover::after,
.woocommerce-page #respond input#submit:hover::after,
.woocommerce-page #content input.button:hover::after,
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover::after,
.woocommerce .cart-collaterals .checkout-button:hover::after,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover::after,
.woocommerce #place_order:hover::after,
.woocommerce-page #place_order:hover::after {
    border-color: var(--primary-hover) !important;
    top: -7px !important;
    left: -7px !important;
    right: -7px !important;
    bottom: -7px !important;
}

/* Responsiveness */
@media (max-width: 1300px) {

    .header-phone,
    .btn-quote-round {
        display: none;
    }

    .header-right-tools {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .menu-container-centered {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #121212;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }

    .menu-container-centered.active {
        display: block;
    }

    .primary-menu-centered {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }

    .primary-menu-centered li {
        width: 100%;
        display: flex;
    }

    .primary-menu-centered li a {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-toggle-btn {
        display: block;
    }

    .nav-container-wide {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-inner-wrapper {
        padding: 15px 0;
    }

    .header-search-block {
        height: 70px;
    }

    .wcu-grid-wrapper {
        grid-template-columns: 1fr;
    }

    .wcu-left-grid {
        grid-column: span 1;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .wcu-card.span-2 {
        grid-column: span 1;
    }

    .wcu-card.span-6 {
        grid-column: span 2;
    }

    .wcu-right-img {
        grid-column: span 1;
        height: 400px;
        min-height: auto;
    }
}

@media (max-width: 991px) {
    .hero-gi-export {
        padding: 120px 0 40px;
    }

    .hero-gi-export h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-gi-export p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-ribbon {
        position: relative;
        flex-direction: column;
        margin-top: 40px;
    }

    .ribbon-title {
        width: 100%;
        clip-path: none;
        justify-content: center;
        padding: 15px;
    }

    .ribbon-features {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        clip-path: none;
        align-items: center;
    }

    .about-wrapper-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-area-new {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-text-area-new {
        text-align: center;
    }

    .about-text-area-new h2 {
        font-size: 28px;
    }

    .ss-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pi-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pi-grid img {
        margin: 0 auto;
        display: block;
        max-width: 300px;
    }

    .pi-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 70px;
    }

    .hero-gi-export h1 {
        font-size: 32px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .wcu-left-grid {
        grid-template-columns: 1fr;
    }

    .wcu-card.span-6 {
        grid-column: span 1;
    }

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

    .cta-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .cta-contact-box {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .ss-cards {
        grid-template-columns: 1fr;
    }

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

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

    .cta-contact-box {
        width: 100%;
        max-width: 320px;
    }

    .cta-phone {
        font-size: 16px;
    }
}

/* ==========================================
   NEW PRODUCT CARD UI (CBD Reference Style)
   ========================================== */
.woocommerce ul.products li.product.gie-modern-product-card {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gie-modern-product-card .product-card-image-wrap {
    position: relative;
    background-color: #FDF0ED !important;
    /* light pinkish peach */
    border-radius: 20px !important;
    /* padding: 30px !important; */
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gie-modern-product-card:hover .product-card-image-wrap {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gie-modern-product-card .product-card-image-wrap img {
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

/* Wishlist Icon Button */
.gie-modern-product-card .product-card-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8D99AE !important;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 10;
}

.gie-modern-product-card .product-card-wishlist-btn:hover {
    transform: scale(1.1);
    color: #ed441c !important;
}

.gie-modern-product-card .product-card-wishlist-btn.active {
    color: #ed441c !important;
}

.gie-modern-product-card .product-card-wishlist-btn.active i {
    font-weight: 900;
    /* FontAwesome solid */
}

/* Quick View Button */
.gie-modern-product-card .product-card-quickview-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    background: #ffffff !important;
    color: #011627 !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
}

.gie-modern-product-card:hover .product-card-quickview-btn {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.gie-modern-product-card .product-card-quickview-btn:hover {
    background: #011627 !important;
    color: #ffffff !important;
}

/* Title & Detail/Price Row */
.gie-modern-product-card .product-card-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 0 5px;
}

.gie-modern-product-card .product-card-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #011627 !important;
    margin: 0 !important;
    text-align: left !important;
    text-decoration: none !important;
}

.gie-modern-product-card .product-card-price-detail {
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #8D99AE !important;
    white-space: nowrap;
}

/* Rating Stars Hiding */
.gie-modern-product-card .star-rating,
.gie-modern-product-card .woocommerce-product-rating {
    display: none !important;
}

/* Shop Now Pill Button */
.gie-modern-product-card .product-card-footer-modern {
    padding: 0 !important;
    margin-top: auto;
}

.gie-modern-product-card .btn-shop-now {
    background-color: var(--primary-color) !important;
    /* Primary theme color (#ed441c) */
    color: #ffffff !important;
    width: 100%;
    padding: 12px 20px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer;
}

.gie-modern-product-card .btn-shop-now:hover {
    background-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 68, 28, 0.2);
}

.gie-modern-product-card .btn-shop-now i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.gie-modern-product-card .btn-shop-now:hover i {
    transform: translate(2px, -2px);
}

/* Premium Quick View Modal */
.gie-quickview-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 22, 39, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gie-quickview-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gie-quickview-modal-container {
    background: #ffffff;
    width: 90%;
    max-width: 850px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.gie-quickview-modal-overlay.active .gie-quickview-modal-container {
    transform: scale(1);
}

.gie-quickview-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F3F5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #495057;
    z-index: 20;
    transition: all 0.2s ease;
}

.gie-quickview-close-btn:hover {
    background: #e9ecef;
    color: #000000;
    transform: rotate(90deg);
}

.gie-quickview-content-body {
    padding: 40px;
    overflow-y: auto;
}

.gie-quickview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.gie-quickview-left {
    background: #FDF0ED;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.gie-quickview-left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.gie-quickview-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gie-quickview-title {
    font-size: 28px;
    font-weight: 800;
    color: #011627;
    margin-bottom: 10px;
}

.gie-quickview-price {
    font-size: 20px;
    font-weight: 700;
    color: #094C49;
    margin-bottom: 20px;
}

.gie-quickview-desc {
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 30px;
}

.gie-quickview-action {
    display: flex;
    gap: 15px;
    align-items: center;
}

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

    .gie-quickview-content-body {
        padding: 25px;
    }
}

/* ==========================================
   SIDEBAR PRODUCT CATEGORIES WIDGET REDESIGN
   ========================================== */
.shop-sidebar-refined .widget_product_categories,
.shop-sidebar-refined .widget_block {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #f0f0f0 !important;
    margin-bottom: 30px !important;
}

.shop-sidebar-refined .widget_product_categories .widget-title,
.shop-sidebar-refined .widget_block .widget-title {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #011627 !important;
    margin-top: 0 !important;
    margin-bottom: 25px !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.shop-sidebar-refined .widget_product_categories .sidebar-reset-link,
.shop-sidebar-refined .widget_block .sidebar-reset-link {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #8D99AE !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.shop-sidebar-refined .widget_product_categories .sidebar-reset-link:hover,
.shop-sidebar-refined .widget_block .sidebar-reset-link:hover {
    color: #011627 !important;
}

.shop-sidebar-refined ul.product-categories,
.shop-sidebar-refined .wc-block-product-categories-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.shop-sidebar-refined ul.product-categories li.cat-item,
.shop-sidebar-refined .wc-block-product-categories-list-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

.shop-sidebar-refined ul.product-categories li.cat-item a,
.shop-sidebar-refined .wc-block-product-categories-list-item a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #495057 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

/* Mock Checkbox Styling */
.shop-sidebar-refined ul.product-categories li.cat-item a::before,
.shop-sidebar-refined .wc-block-product-categories-list-item a::before {
    content: '' !important;
    width: 20px !important;
    height: 20px !important;
    border: 1.5px solid #ced4da !important;
    border-radius: 6px !important;
    background-color: #ffffff !important;
    display: none !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

.shop-sidebar-refined ul.product-categories li.cat-item.current-cat a,
.shop-sidebar-refined .wc-block-product-categories-list-item.is-active a {
    color: #011627 !important;
}

.shop-sidebar-refined ul.product-categories li.cat-item.current-cat a::before,
.shop-sidebar-refined ul.product-categories li.cat-item a:hover::before,
.shop-sidebar-refined .wc-block-product-categories-list-item.is-active a::before,
.shop-sidebar-refined .wc-block-product-categories-list-item a:hover::before {
    border-color: #094C49 !important;
    background-color: #e6f2f2 !important;
}

/* Category Count Badges */
.shop-sidebar-refined ul.product-categories li.cat-item .count,
.shop-sidebar-refined .wc-block-product-categories-list-item-count {
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    padding: 4px 12px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #8D99AE !important;
    min-width: 36px !important;
    text-align: center !important;
    display: inline-block !important;
    line-height: 1 !important;
}

/* ==========================================================================
   About Us Page Refined (Premium Layout Styles)
   ========================================================================== */

/* Modern Hero Section */
.about-modern-hero {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0 160px;
    overflow: hidden;
}

.hero-layout-container {
    position: relative;
    z-index: 5;
}

/* Accent Decorative Shapes */
.decor-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.15;
}

.decor-shape.shape-1 {
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-color);
}

.decor-shape.shape-2 {
    bottom: 50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: var(--primary-color-light);
}

/* Top Hero Title */
.hero-top-title {
    text-align: center;
    margin-bottom: 60px;
}

.hero-top-title h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--secondary-color);
    letter-spacing: -1.5px;
}

.hero-top-title h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-top-title h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(237, 68, 28, 0.15);
    border-radius: 4px;
}

/* Hero Flex Layout */
.hero-flex-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.hero-left-info {
    flex: 1;
    max-width: 320px;
}

.hero-left-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-about-badge {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    background: transparent;
    transition: var(--transition);
}

.btn-about-badge:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Center Image Layout */
.hero-center-visual {
    flex: 1.2;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 380px;
}

.visual-circle-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 68, 28, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border: 1.5px dashed rgba(237, 68, 28, 0.32);
    top: 0;
    z-index: 1;
}

.visual-portrait {
    max-width: 320px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Action Buttons Pill Block overlay */
.visual-action-pills {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
}

.pill-btn-solid {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.pill-btn-solid:hover {
    background-color: var(--primary-hover);
}

.pill-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.pill-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Right Badge Layout */
.hero-right-badge {
    flex: 1;
    max-width: 250px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
}

.rating-stars {
    color: var(--primary-color);
    font-size: 13px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-right-badge h3 {
    font-size: 38px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.hero-right-badge p {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin: 0;
}

/* Curved Separator at bottom of hero */
.curved-bottom-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 4;
}

.curved-bottom-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}

.curved-bottom-separator .shape-fill {
    fill: #111215;
    /* Matching dark section background */
}

/* Dark Section: Stats & Story */
.about-dark-section {
    background-color: #111215;
    padding: 120px 0 100px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

/* Stats Row */
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 90px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(237, 68, 28, 0.3);
}

.stat-card h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Masterpieces Sub-Section */
.about-masterpieces-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.decor-sparkle {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.masterpieces-left h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
}

.masterpieces-right p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Dual Image Collage */
.about-collage-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.collage-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.collage-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.collage-item:hover img {
    transform: scale(1.03);
}

.collage-label {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Expertise Section */
.about-expertise-section {
    background-color: #fafbfc;
    padding: 120px 0;
}

.expertise-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.expertise-tag {
    background-color: rgba(237, 68, 28, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.expertise-title-row p {
    max-width: 500px;
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.expertise-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

/* Left interactive items */
.expertise-list-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expertise-item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    transition: all 0.35s ease;
}

.expertise-item:hover,
.expertise-item.active {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.item-num {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    align-self: flex-start;
    padding-top: 2px;
}

.item-title-desc {
    flex: 1;
}

.item-title-desc h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.item-title-desc p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.expertise-item:hover .item-title-desc p,
.expertise-item.active .item-title-desc p {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

.item-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f7f8f9;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.expertise-item:hover .item-arrow,
.expertise-item.active .item-arrow {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(-45deg);
}

/* Center Image Layout */
.expertise-center-image {
    display: flex;
    justify-content: center;
}

.expertise-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    width: 100%;
}

.expertise-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Rotating SVG text label */
.swirling-circle-decor {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateText 15s linear infinite;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.svg-text {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 800;
    fill: var(--secondary-color);
    letter-spacing: 1px;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Right Action Cards */
.expertise-action-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.action-card-dark,
.action-card-primary {
    border-radius: 16px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
    transition: var(--transition);
}

.action-card-dark {
    background-color: #111215;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.action-card-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.action-card-dark p,
.action-card-primary p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 25px;
}

.action-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.action-link-btn .arrow-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.action-link-btn:hover .arrow-wrap {
    background-color: var(--white);
    color: var(--secondary-color);
}

.action-link-btn.white-style:hover .arrow-wrap {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-top-title h1 {
        font-size: 46px;
    }

    .hero-flex-layout {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .hero-left-info,
    .hero-right-badge {
        max-width: 500px;
        text-align: center;
    }

    .hero-right-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .expertise-main-grid {
        grid-template-columns: 1fr;
    }

    .expertise-center-image {
        display: none;
        /* Hide center image on tablet/mobile to focus layout */
    }
}

@media (max-width: 992px) {
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-masterpieces-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-collage-row {
        grid-template-columns: 1fr;
    }

    .collage-item img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .hero-top-title h1 {
        font-size: 34px;
    }

    .about-stats-row {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 25px;
    }

    .visual-action-pills {
        padding: 8px 10px;
    }

    .pill-btn-solid,
    .pill-btn-outline {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Product Get Quote Popup Modal & Form Styles
   ========================================================================== */

.btn-get-quote {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-get-quote:hover {
    background-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 68, 28, 0.25);
}

.gie-quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(1, 22, 39, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    visibility: hidden;
}

.gie-quote-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.gie-quote-modal-container {
    background-color: #ffffff;
    width: 90%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding: 40px;
    animation: quoteModalFade 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes quoteModalFade {
    0% {
        transform: translateY(20px) scale(0.96);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.gie-quote-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f3f5;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.gie-quote-close-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.gie-quote-modal-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #f1f3f5;
    padding-bottom: 20px;
}

.gie-quote-modal-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.gie-quote-modal-header p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.gie-quote-form-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 35px;
    align-items: start;
}

.gie-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.gie-form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gie-form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gie-form-user-details input,
.gie-form-user-details textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #eaeaea;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.gie-form-user-details input:focus,
.gie-form-user-details textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(237, 68, 28, 0.08);
}

.gie-form-user-details textarea {
    height: 110px;
    resize: none;
}

/* Checklist Dropdown */
.gie-quote-products-checklist {
    border: 1.5px solid #eaeaea;
    border-radius: 12px;
    padding: 15px;
    max-height: 310px;
    overflow-y: auto;
    background-color: #fafbfc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Custom Scrollbar for checklist */
.gie-quote-products-checklist::-webkit-scrollbar {
    width: 6px;
}

.gie-quote-products-checklist::-webkit-scrollbar-track {
    background: #f1f3f5;
    border-radius: 4px;
}

.gie-quote-products-checklist::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 4px;
}

.gie-quote-products-checklist::-webkit-scrollbar-thumb:hover {
    background: #adb5bd;
}

.product-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
    padding: 4px 0;
}

.product-checkbox-label input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1.5px solid #ced4da;
    border-radius: 6px;
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s ease;
}

.product-checkbox-label input[type="checkbox"]:checked + .custom-checkbox {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.product-checkbox-label input[type="checkbox"]:checked + .custom-checkbox::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ffffff;
    font-size: 11px;
}

.product-title-text {
    line-height: 1.3;
}

/* Response Message */
.gie-quote-response-msg {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    display: none;
}

.gie-quote-response-msg.success {
    background-color: #e6f4ea;
    color: #137333;
    border: 1px solid #c2e7cd;
}

.gie-quote-response-msg.error {
    background-color: #fce8e6;
    color: #c5221f;
    border: 1px solid #fad2cf;
}

/* Submit Button */
.btn-submit-quote {
    padding: 14px 28px !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gie-quote-modal-container {
        padding: 30px 20px;
    }
    
    .gie-quote-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gie-quote-products-checklist {
        max-height: 200px;
    }
    
    .gie-form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}