/* Global Styles */
:root {
    /* Colors */
    --primary-green: #90c23a;
    --primary-dark: #7a9c31;
    --text-dark: #1a1a1a;
    --text-muted: #4a4a4a;
    --text-light: #ffffff;
    --card-label-bg: #9ea499;
    --section-bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --accent-red: #d32f2f;

    /* Typography */
    --font-family-sans: 'Open Sans', system-ui, -apple-system, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Font Sizes (Modular Scale) */
    --font-size-xs: 0.875rem;
    /* 14px */
    --font-size-sm: 1rem;
    /* 16px */
    --font-size-md: 1.125rem;
    /* 18px */
    --font-size-lg: 1.25rem;
    /* 20px */
    --font-size-xl: 1.5rem;
    /* 24px */
    --font-size-2xl: 2rem;
    /* 32px */
    --font-size-3xl: 2.5rem;
    /* 40px */
    --font-size-4xl: 3rem;
    /* 48px */

    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

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

body {
    font-family: var(--font-family-sans);
    color: var(--text-dark);
    line-height: var(--line-height-base);
    background-color: var(--bg-white);
    font-size: var(--font-size-sm);
}

/* Headings Base Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-sans);
    color: var(--text-dark);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: var(--spacing-xs);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-md);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.site-header {
    background-color: var(--primary-green);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.8;
}

/* Mobile Toggle Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Dropdown Menu Styles */
.main-nav ul li {
    position: relative;
}

.menu-item-has-children>a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.arrow {
    font-size: var(--font-size-xs);
    transition: transform 0.3s ease;
}

.sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: linear-gradient(135deg, rgba(110, 168, 36, 0.97) 0%, rgba(78, 130, 18, 0.98) 100%);
    min-width: 185px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 1001;
    border-radius: 10px;
    list-style: none;
    padding: 0.4rem 0;
    margin-top: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Arrow tip pointing up */
.sub-menu::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(110, 168, 36, 0.97);
}

/* Bridge for hover transition stability */
.sub-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
}

.sub-menu li {
    width: 100%;
}

.sub-menu li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sub-menu a {
    padding: 0.72rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: background-color 0.2s ease, letter-spacing 0.2s ease;
}

.sub-menu a::before {
    content: '›';
    font-size: var(--font-size-md);
    line-height: 1;
    opacity: 0.7;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sub-menu a:hover {
    background-color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.04em;
    opacity: 1;
}

.sub-menu a:hover::before {
    transform: translateX(3px);
    opacity: 1;
}

.sub-menu li:first-child a {
    border-radius: 10px 10px 0 0;
}

.sub-menu li:last-child a {
    border-radius: 0 0 10px 10px;
}

@media (min-width: 901px) {
    .main-nav ul li.menu-item-has-children:hover .sub-menu {
        display: block;
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .main-nav ul li.menu-item-has-children:hover .arrow {
        transform: rotate(180deg);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    /* background-image: url('../images/slide-home-1.jpg'); removed to allow dashboard upload */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.hero-overlay {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay for superior readability */
    padding: 2.5rem 0;
    text-align: center;
    margin-bottom: 8vh;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero-text h2 {
    color: var(--text-light);
    font-size: var(--font-size-3xl);
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
}

.hero-text p {
    color: var(--text-light);
    font-size: var(--font-size-lg);
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Connecting Section */
.connecting-section {
    padding: 5rem 5%;
    /* background-image: url('../images/parallax-1.jpg'); removed to allow dashboard upload */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.content-box {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-box h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-box p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
    /* Adjusted from justify for better look based on image */
    line-height: 1.8;
}

.content-box .bold-tag {
    font-weight: 700;
    font-size: var(--font-size-md);
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Commodities Section */
.commodities-section {
    padding: 5rem 5%;
    /* background-image: url('../images/parallax-2.jpg'); removed to allow dashboard upload */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.commodities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.82);
    /* Semi-transparent light overlay for dark text contrast */
    z-index: -1;
}

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

.section-heading {
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-heading p {
    font-size: var(--font-size-md);
    color: var(--text-muted);
}

.commodities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.commodity-card {
    background: var(--bg-white);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    border-radius: 4px;
}

.commodity-card:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
    transform: translateY(-4px);
}

.commodity-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

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

.card-label {
    background-color: var(--card-label-bg);
    color: var(--text-light);
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    font-size: var(--font-size-md);
    transition: background-color 0.3s ease;
}

.commodity-card:hover .card-label {
    background-color: var(--primary-green);
}

/* Logistics Section */
.logistics-section {
    padding: 6rem 5%;
    /* background-image: url('../images/parallax-3.jpg'); removed to allow dashboard upload */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logistics-box {
    background-color: rgba(10, 25, 47, 0.75);
    color: var(--text-light);
    padding: 4rem;
    max-width: 1200px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logistics-box h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.logistics-box p {
    font-size: var(--font-size-sm);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.logistics-box a {
    color: var(--text-light);
    text-decoration: underline;
    font-weight: 400;
}

.logistics-links {
    display: flex;
    justify-content: center;
    gap: 5rem;
    text-align: left;
}

.logistics-links ul {
    list-style: none;
}

.logistics-links li {
    margin-bottom: 1rem;
}

.logistics-links a {
    font-size: var(--font-size-sm);
    transition: color 0.3s;
}

.logistics-links a:hover {
    color: var(--primary-green);
}

/* Inner Pages */
.inner-banner {
    height: 350px;
    /* background-image: url('../images/parallax-1.jpg'); removed to allow dashboard upload */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wp-block-separator {
    margin-block-end: 1.5em;
    border-top: 1px solid var(--accent-red);
}

.about-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.about-section .page-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--accent-red);
    padding-bottom: 1rem;
}

.about-section .page-header h2 {
    font-size: var(--font-size-2xl);
    color: var(--text-dark);
    font-weight: 600;
}

.about-section .page-content p {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-section .page-content p:last-child {
    margin-bottom: 0;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-col-info {
    font-size: var(--font-size-md);
    color: var(--text-muted);
    line-height: 1.8;
    background: var(--section-bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-col-info p {
    margin-bottom: 1.2rem;
}

.contact-col-info p:last-child {
    margin-bottom: 0;
}

.contact-col-info strong {
    color: var(--text-dark);
}

.contact-col-info a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-col-info a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-dark);
    font-size: var(--font-size-xs);
    z-index: 1;
    line-height: 1.8;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.72);
    z-index: -1;
}

.site-footer strong {
    color: var(--primary-green);
}

.footer-col {
    margin-bottom: 1rem;
    z-index: 2;
    flex: 1;
}

.footer-col.has-icon {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-col .icon-wrap {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-col p {
    margin-bottom: 0.3rem;
}

@media (min-width: 901px) {
    .site-footer {
        align-items: flex-start;
    }

    .footer-col {
        padding: 0 1.5rem;
    }

    .footer-accordion-body .footer-col {
        border-right: 1px solid rgba(0, 0, 0, 0.409);
    }

    .site-footer>.footer-col {
        padding-left: 1.5rem;
    }
}

/* Footer Accordion (desktop: always visible, mobile: toggleable) */
.footer-accordion {
    display: contents;
    /* On desktop, accordion children flow into footer flex layout naturally */
}

.footer-accordion-toggle {
    display: none;
    /* Hidden on desktop */
}

.footer-accordion-body {
    display: contents;
    /* On desktop, children participate in footer flex layout */
}

.footer-arrow {
    font-size: var(--font-size-xs);
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Responsive */
@media (max-width: 900px) {

    /* Responsive Header adjustments */
    .site-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-green);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-in-out, opacity 0.3s ease;
        opacity: 0;
        pointer-events: none;
        z-index: 999;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    .main-nav.active {
        max-height: 400px;
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 5%;
        align-items: flex-start;
    }

    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;
        padding: 0.8rem 0;
        width: 100%;
    }

    /* Mobile Dropdown Menu styling */
    .sub-menu {
        display: none;
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        background-color: rgba(0, 0, 0, 0.15);
        box-shadow: none;
        margin-top: 0;
        margin-bottom: 0.5rem;
        border-radius: 4px;
        padding-left: 1rem;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .menu-item-has-children.active .sub-menu {
        display: block;
        max-height: 120px;
    }

    .menu-item-has-children.active .arrow {
        transform: rotate(180deg);
    }

    /* Disable parallax scroll effect on mobile to prevent performance issues */
    .hero,
    .connecting-section,
    .commodities-section,
    .logistics-section,
    .site-footer {
        background-attachment: scroll !important;
    }

    .hero-text h2 {
        font-size: var(--font-size-2xl);
    }

    .logistics-links {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .site-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 0;
    }

    /* Footer accordion mobile styles */
    .footer-accordion {
        display: block;
        width: 100%;
    }

    .footer-accordion-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background: rgba(255, 255, 255, 0.08);
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        color: var(--text-light);
        font-family: 'Open Sans', sans-serif;
        font-size: var(--font-size-sm);
        font-weight: 700;
        padding: 1.1rem 1.5rem;
        cursor: pointer;
        text-align: left;
        letter-spacing: 0.03em;
        transition: background 0.25s ease;
    }

    .footer-accordion-toggle:hover {
        background: rgba(255, 255, 255, 0.13);
    }

    .footer-accordion-toggle.active {
        background: rgba(144, 194, 58, 0.18);
        color: var(--primary-green);
        border-bottom-color: rgba(144, 194, 58, 0.4);
    }

    .footer-accordion-toggle.active .footer-arrow {
        transform: rotate(180deg);
    }

    .footer-accordion-body {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        background: rgba(0, 0, 0, 0.15);
    }

    .footer-accordion-toggle.active+.footer-accordion-body {
        max-height: 300px;
    }

    .footer-accordion-body .footer-col {
        padding: 0.9rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        text-align: left;
        margin-bottom: 0;
    }

    .footer-accordion-body .footer-col:last-child {
        border-bottom: none;
    }

    /* 4th col (Terms) sits below the accordion */
    .site-footer>.footer-col.right-align {
        padding: 1.1rem 1.5rem;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 0;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* 
 * -------------------------------------------------------------
 * Goods & Services Template Styles
 * -------------------------------------------------------------
 */

/* Services Section Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card {
    text-align: center;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:last-child {
    border-right: none;
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    transition: transform 0.3s ease;
}

.service-icon-wrapper svg,
.service-icon-wrapper i {
    width: 64px;
    height: 64px;
    font-size: 64px;
    line-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: none;
    stroke: var(--primary-dark);
    stroke-width: 1.25;
    color: var(--primary-dark);
    transition: stroke 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
}

.service-card:hover .service-icon-wrapper svg {
    stroke: var(--primary-green);
}

.service-card:hover .service-icon-wrapper i {
    color: var(--primary-green);
}

.service-card h3 {
    font-size: var(--font-size-md);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.service-card p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: 1.6;
}

.service-card:hover {
    background-color: rgba(144, 194, 58, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}


/* Goods Page Grid & Cards */
.goods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.goods-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goods-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.goods-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--bg-white);
}

.goods-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f0f7e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.goods-header-icon svg,
.goods-header-icon i {
    width: 24px;
    height: 24px;
    font-size: 20px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    stroke: var(--primary-dark);
    fill: none;
    stroke-width: 1.5;
    color: var(--primary-dark);
}

.goods-header-title {
    display: flex;
    flex-direction: column;
}

.goods-header-title h3 {
    font-size: var(--font-size-md);
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.goods-title-line {
    width: 24px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 2px;
}

.goods-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.goods-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    clip-path: ellipse(110% 100% at 50% 0%);
    transition: transform 0.5s ease;
}

.goods-card:hover .goods-card-image img {
    transform: scale(1.05);
}

.goods-item-list {
    list-style: none;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex-grow: 1;
}

.goods-item-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.goods-item-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.goods-item-list li:first-child {
    padding-top: 0;
}

.item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f7fafc;
    border: 1px solid rgba(144, 194, 58, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon svg,
.item-icon i {
    width: 14px;
    height: 14px;
    font-size: 11px;
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    stroke: var(--primary-dark);
    fill: none;
    stroke-width: 2;
    color: var(--primary-dark);
}

.item-text {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 1200px) {
    .goods-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Overrides */
@media (max-width: 900px) {

    /* Services page mobile overrides */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        border: none;
    }

    .service-card {
        border-right: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
        padding: 2.5rem 1.2rem;
    }

    .service-card:nth-child(2n) {
        border-right: none;
    }

    .service-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* Goods page mobile overrides */
    .goods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

    .service-card {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .service-card:last-child {
        border-bottom: none;
    }

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

/* Globe Animation on Banners */
.rotating-globe {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: var(--globe-translate, translate(-50%, -50%));
    animation: rotateGlobe 30s linear infinite;
    z-index: 10;
    max-width: 400px;
    /* Base size, adjust as needed */

    pointer-events: none;
    /* Allows clicking through */
}

@keyframes rotateGlobe {
    0% {
        transform: var(--globe-translate, translate(-50%, -50%)) rotate(0deg);
    }

    100% {
        transform: var(--globe-translate, translate(-50%, -50%)) rotate(360deg);
    }
}