:root {
    --primary-color: #D7DF22;
    --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: var(--container-width); */
    width: 1368px;
    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: var(--white);
    position: relative;
    z-index: 1000;
}

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

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

.logo img {
    height: 40px;
    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(--secondary-color);
    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);
}

.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(--secondary-color);
    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(--secondary-color);
    line-height: 1;
}

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

.arrow-circle {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    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;
}

.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* 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 {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 25px;
}

.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);
}

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

    .header-right-tools,
    .menu-container-centered {
        display: none;
    }

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

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

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 40px;
    }

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

/* 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: rgba(255, 204, 0, 0.2);
    color: var(--gi-export-yellow);
    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(--gi-export-yellow);
}

.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-dark);
    padding: 20px 40px;
    font-weight: 800;
    font-size: 18px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
    width: 250px;
    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;
}

.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(--gi-export-dark);
    padding: 100px 0 80px;
    position: relative;
    margin-top: 60px;
    /* Space for the overlapping shape */
}

.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: #F4F3EA;
    /* 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: #111424;
    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: #111424;
}

.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: #F4F3EA;
    font-family: 'Inter', sans-serif;
}

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

.wcu-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.wcu-header p {
    font-size: 26px;
    color: var(--gi-export-dark);
    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;
    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(--secondary-color);
    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: #111;
}

.wcu-card.text-card .wcu-card-main p {
    font-size: 14px;
    color: #555;
    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;
    }

    .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 {
        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(215, 223, 34, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(215, 223, 34, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(215, 223, 34, 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);
    animation: slideDown 0.35s ease;
}

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

    to {
        transform: translateY(0);
    }
}