/* ==========================================================================

   CSS VARIABLES & DESIGN SYSTEM

   ========================================================================== */

:root {

    /* Colors */

    --ceylon-gold: #E59F23;

    --heritage-green: #186c38;

    /* Green */

    --leaf-green: #3F8434;

    --clean-white: #FFFFFF;

    --natural-cream: #F6F7F2;

    --charcoal: #000000;

    /* Black */

    --olive-grey: #6C7165;



    /* Typography */

    --font-heading: "Montserrat", sans-serif;

    --font-body: "Montserrat", sans-serif;

    --font-subtopic: "Yellowtail", cursive;



    /* Spacing */

    --section-pad: 5rem 0;

    --container-max: 1200px;



    /* Wheel Variables */

    --wheel-size: 600px;

    --wheel-center: 180px;

    --wheel-item: 140px;



    /* Transitions */

    --transition-fast: 0.2s ease;

    --transition-smooth: 0.4s ease-in-out;

}



/* ==========================================================================

   RESET & BASE STYLES

   ========================================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {



    max-width: 100vw;



    scroll-behavior: smooth;

    font-size: 16px;

}



body {

    max-width: 100vw;





    font-family: var(--font-body);

    color: var(--charcoal);

    background-color: var(--clean-white);

    line-height: 1.6;



}



h1,

h2 {

    font-family: var(--font-heading);

    color: var(--heritage-green);

    margin-bottom: 1rem;

    font-weight: 700;

}



h2:not(.door-text) {

    font-size: 2.5rem !important;

}



h3,

h4,

h5,

h6 {

    font-family: var(--font-heading);

    color: var(--heritage-green);

    margin-bottom: 1rem;

    font-weight: 600;

}



.subtopic {

    font-family: var(--font-subtopic);

    color: var(--heritage-green);

    margin-bottom: 1rem;

    font-weight: normal;

}



p {

    margin-bottom: 1rem;

    color: var(--olive-grey);

}



a {

    text-decoration: none;

    color: #ffffff;

    transition: color var(--transition-fast);

}



a:hover {

    color: var(--leaf-green);

}



ul {

    list-style-position: inside;

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



.container {

    width: 90%;

    max-width: var(--container-max);

    margin: 0 auto;

}



section {

    padding: var(--section-pad);

}



.text-center {

    text-align: center;

}



/* Standardized Section Headers */

.section-header h2 {

    font-size: 2.5rem;

    margin-bottom: 0.5rem;

}



.section-header p {

    font-size: 1.1rem;

    color: var(--olive-grey);

}



.text-light {

    color: var(--clean-white);

}



.text-light p {

    color: rgba(255, 255, 255, 0.8);

}



.text-light h1,

.text-light h2,

.text-light h3 {

    color: var(--clean-white);

}



.bg-cream {

    background-color: var(--natural-cream);

    background-image: radial-gradient(circle at 10% 20%, rgba(31, 122, 58, 0.02) 0%, transparent 40%), radial-gradient(circle at 90% 80%, rgba(245, 181, 46, 0.02) 0%, transparent 40%);

}



.bg-green {

    background-color: var(--heritage-green);

}



.bg-charcoal {

    background-color: var(--charcoal);

}



.mt-4 {

    margin-top: 2rem;

}



.mb-2 {

    margin-bottom: 1rem;

}



/* ==========================================================================

   BUTTONS

   ========================================================================== */

.btn {

    display: inline-block;

    padding: 0.75rem 1.5rem;

    font-family: var(--font-body);

    font-weight: 600;

    border-radius: 4px;

    cursor: pointer;

    border: none;

    transition: all var(--transition-fast);

    text-align: center;

}



.btn-primary {

    background-color: var(--ceylon-gold);

    color: var(--charcoal);

}



.btn-primary:hover {

    background-color: #dfa120;

    color: var(--charcoal);

}



.btn-secondary {

    background-color: transparent;

    border: 2px solid var(--heritage-green);

    color: var(--heritage-green);

}



.btn-secondary:hover {

    background-color: var(--heritage-green);

    color: var(--clean-white);

}



.btn-sm {

    padding: 0.5rem 1rem;

    font-size: 0.875rem;

}



.btn-lg {

    padding: 1rem 2rem;

    font-size: 1.125rem;

}



.w-100 {

    width: 100%;

}



/* ==========================================================================

   NAVIGATION

   ========================================================================== */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    background-color: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(10px);

    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    padding: 0.5rem 0;

    transition: all var(--transition-fast);

}



.nav-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.logo img {

    height: 60px;

    /* Render the header logo in solid black for the light navigation bar. */
    filter: brightness(0);

    transition: height var(--transition-fast);

}

@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }
}



.nav-links {

    display: flex;

    list-style: none;

    gap: 1.5rem;

}



.nav-links a {

    font-size: 0.9rem;

    font-weight: 600;

    color: var(--charcoal);

    position: relative;

}



.nav-links a::after {

    content: '';

    position: absolute;

    width: 0;

    height: 2px;

    bottom: -4px;

    left: 0;

    background-color: var(--heritage-green);

    transition: width var(--transition-fast);

}



.nav-links a:hover::after,

.nav-links a.active::after {

    width: 100%;

}



.nav-cta {

    display: flex;

    align-items: center;

    gap: 1rem;

}



.mobile-menu-btn {

    display: none;

    background: none;

    border: none;

    cursor: pointer;

    flex-direction: column;

    gap: 5px;

}



.mobile-menu-btn span {

    display: block;

    width: 25px;

    height: 3px;

    background-color: var(--charcoal);

    transition: var(--transition-fast);

}



/* ==========================================================================

   HERO SECTION

   ========================================================================== */

.hero {

    position: relative;

    height: 100vh;

    min-height: 600px;

    display: flex;

    align-items: center;

    padding-top: 80px;

    /* Offset for navbar */

    overflow: hidden;

}



.hero-bg {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center;

    z-index: -2;

    animation: slowZoom 20s infinite alternate;

}



@keyframes slowZoom {

    from {

        transform: scale(1);

    }



    to {

        transform: scale(1.05);

    }

}







.hero-content {

    max-width: 800px;

}



.hero-title {

    font-size: 3.5rem;

    color: var(--clean-white);

    line-height: 1.1;

    margin-bottom: 1.5rem;

    border-left: 4px solid var(--ceylon-gold);

    padding-left: 1rem;

}



.creative-title {

    border-left: none;

    padding-left: 0;

    line-height: 1.2;

}



.creative-title .title-light {

    font-weight: 300;

    font-size: 2.5rem;

    color: rgba(255, 255, 255, 0.9);

}



.creative-title .title-bold {

    font-weight: 700;

    font-size: 4rem;

    color: var(--clean-white);

    display: inline-block;

    margin-bottom: 0.5rem;

}



.creative-title .title-small {

    font-size: 1.5rem;

    font-family: var(--font-body);

    font-weight: 300;

    font-style: italic;

    color: var(--ceylon-gold);

    margin-right: 0.5rem;

}



.creative-title .title-accent {

    font-weight: 600;

    font-size: 3rem;

    color: var(--ceylon-gold);

}



.hero-subtitle {

    font-size: 1.25rem;

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 2rem;

    max-width: 600px;

}



.hero-buttons {

    display: flex;

    gap: 1rem;

    margin-bottom: 3rem;

}



.hero-buttons .btn-secondary {

    border-color: var(--clean-white);

    color: var(--clean-white);

}



.hero-buttons .btn-secondary:hover {

    background-color: var(--clean-white);

    color: var(--charcoal);

}



.trust-strip {

    display: flex;

    flex-wrap: wrap;

    gap: 1rem;

    align-items: center;

    color: rgba(255, 255, 255, 0.8);

    font-size: 0.9rem;

    font-weight: 500;

}



.trust-strip .dot {

    width: 6px;

    height: 6px;

    background-color: var(--leaf-green);

    border-radius: 50%;

}



/* ==========================================================================

   INTERACTIVE GROUP WHEEL

   ========================================================================== */

.group-wheel-section {

    position: relative;

    overflow: hidden;

    background-color: #a19985;

}



.instruction-text {

    font-size: 0.9rem;

    color: var(--heritage-green);

    font-weight: 600;

    margin-bottom: 5rem;

    text-transform: uppercase;

    letter-spacing: 1px;

}



.wheel-container {

    position: relative;

    width: var(--wheel-size);

    height: var(--wheel-size);

    margin: 0 auto;

    display: flex;

    justify-content: center;

    align-items: center;

}



.wheel-center {

    position: absolute;

    width: var(--wheel-center);

    height: var(--wheel-center);

    background: var(--clean-white);



    border-radius: 50%;

    z-index: 10;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    border: 3px solid var(--ceylon-gold);

}



.wheel-center img {

    width: 75%;

    height: auto;

}



.wheel {

    position: absolute;

    width: 100%;

    height: 100%;

    border-radius: 50%;

    border: 1px dashed rgba(31, 122, 58, 0.3);

    /* Animation handled in JS to easily pause */

    transition: transform 0.1s linear;

}



.wheel-item {

    position: absolute;

    width: var(--wheel-item);

    height: var(--wheel-item);

    background: var(--clean-white);



    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

    cursor: pointer;

    transition: transform var(--transition-fast), box-shadow var(--transition-fast);

    /* Transform to counter-rotate will be handled in JS */

    transform: rotate(var(--item-rot, 0deg)) scale(var(--item-scale, 1));

}



.wheel-item:hover {

    --item-scale: 1.15;

    box-shadow: 0 8px 25px rgba(31, 122, 58, 0.2);

    border: 2px solid var(--heritage-green);

    z-index: 20;

}



.wheel-item img {

    width: 75%;

    height: auto;

    object-fit: contain;

}



/* Hover Popup */

.wheel-popup {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%) scale(0.9);
    transform-origin: center center;

    width: 320px;

    background: var(--clean-white);



    border-radius: 12px;

    padding: 1.5rem;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    z-index: 30;

    opacity: 0;

    visibility: hidden;

    transition: all var(--transition-smooth);

    pointer-events: none;

    border-top: 4px solid var(--ceylon-gold);

}



.wheel-popup.active {

    opacity: 1;

    visibility: visible;

    transform: translate(-50%, -50%) scale(1);

    pointer-events: auto;

}

.wheel-popup.is-center {
    transform: translate(-50%, -50%) scale(0.9);
    transform-origin: center center;
}

.wheel-popup.is-center.active {
    transform: translate(-50%, -50%) scale(1);
}



.popup-logo {

    height: 45px;

    margin-bottom: 1rem;

    object-fit: contain;

}



.wheel-popup h3 {

    font-size: 1.25rem;

    margin-bottom: 0.5rem;

    font-family: var(--font-heading);

}



.wheel-popup p {

    font-size: 0.9rem;

    margin-bottom: 1.5rem;

}



.popup-actions {

    display: flex;

    gap: 0.5rem;

}



/* X close button   hidden on desktop, shown on mobile via media query */
.popup-close-btn {
    display: none;
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #888;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    z-index: 10;
}

.popup-close-btn:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.07);
}

.mobile-wheel-stack {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.mobile-card {
    background: var(--clean-white);

    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 4px solid var(--heritage-green);
}

.mobile-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-card-header img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* ==========================================================================
   AWARDS SHOWCASE (PODIUM)
   ========================================================================== */
.showcase-dark {
    background-color: var(--charcoal);
    color: var(--clean-white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.showcase-dark .section-header h2 {
    color: #FFDF00 !important;
}

.showcase-dark .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.award-podium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 6rem;
}

.podium-item {
    position: relative;
    text-align: center;
    transition: transform var(--transition-smooth);
    padding: 3rem 2rem;
    width: 320px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.podium-center {
    transform: translateY(-40px);
    width: 380px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 181, 46, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.podium-item:hover {
    transform: translateY(-10px);
}

.podium-center:hover {
    transform: translateY(-50px);
}

.podium-item img {
    height: 180px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.5));
    transition: transform var(--transition-fast);
}

.podium-item:hover img {
    transform: scale(1.05);
}

.podium-center img {
    height: 250px;
}

.podium-item h3 {
    margin-top: 2.5rem;
    margin-bottom: 0;
    color: #FFDF00 !important;
    font-size: 1.3rem;
    line-height: 1.4;
}

.podium-center h3 {
    font-size: 1.6rem;
    color: #FFDF00 !important;
}

.glow-bg {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.gold-glow {
    background: radial-gradient(circle, rgba(245, 181, 46, 0.2) 0%, transparent 70%);
    width: 300px;
    height: 300px;
}

@media (max-width: 992px) {
    .award-podium {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        margin-top: 3rem;
    }

    .podium-center {
        transform: translateY(0);
        order: -1;
        /* Center award first on mobile */
    }

    .podium-center:hover {
        transform: translateY(-10px);
    }
}

.placeholder-text {
    font-size: 0.85rem;
    color: var(--olive-grey);
    font-style: italic;
}

/* ==========================================================================
   CERTIFICATIONS (HOVER ACCORDION)
   ========================================================================== */
.certifications-section {
    padding: 6rem 0;
    background: var(--natural-cream);
}

.cert-accordion {
    display: flex;
    gap: 1rem;
    height: 280px;
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.cert-panel {
    position: relative;
    flex: 1;
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease, border-color 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(31, 122, 58, 0.1);
}

.cert-panel.active,
.cert-panel:hover {
    flex: 4;
    box-shadow: 0 20px 40px rgba(31, 122, 58, 0.15);
    border-color: var(--leaf-green);
}

.cert-logo {
    width: 160px;
    height: 160px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.cert-panel img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.6s ease, opacity 0.6s ease;
}

.cert-panel.active img,
.cert-panel:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.cert-panel.active .cert-logo,
.cert-panel:hover .cert-logo {
    transform: translateY(-20px) scale(1.15);
}

.cert-content {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    padding: 0 2rem;
    pointer-events: none;
}

.cert-panel.active .cert-content,
.cert-panel:hover .cert-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
    pointer-events: auto;
}

.cert-content h4 {
    color: var(--heritage-green);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cert-content p {
    color: var(--olive-grey);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile: Convert to vertical accordion */
@media (max-width: 992px) {
    .cert-accordion {
        flex-direction: column;
        height: 600px;
    }

    .cert-panel.active .cert-logo,
    .cert-panel:hover .cert-logo {
        transform: translateY(-20px) scale(1.1);
    }

    .cert-content {
        bottom: 1.5rem;
    }
}

/* ==========================================================================
   BUSINESS PROFILES (STICKY STACKED CARDS)
   ========================================================================== */
.businesses-section {
    padding: 6rem 0;
    position: relative;
    background: #fdfdfd;
    /* Neutral background to frame the cards */
}

.stack-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.business-profile {
    position: sticky;
    top: 100px;
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-smooth);
    overflow: hidden;
}

/* Staggered sticky tops for a layered deck effect */
.business-profile:nth-child(1) {
    top: 90px;
}

.business-profile:nth-child(2) {
    top: 110px;
}

.business-profile:nth-child(3) {
    top: 130px;
}

.business-profile:nth-child(4) {
    top: 150px;
}

.business-profile:nth-child(5) {
    top: 170px;
}

.business-profile:nth-child(6) {
    top: 190px;
}

.business-profile:nth-child(7) {
    top: 210px;
}

/* Color Themes */
.theme-cream {
    background-color: var(--natural-cream);
    color: var(--charcoal);
}

.theme-green {
    background-color: var(--heritage-green);
    color: var(--clean-white);
}

.theme-green .profile-intro {
    color: rgba(255, 255, 255, 0.9);
}

.theme-green .key-services li {
    color: rgba(255, 255, 255, 0.8);
}

.theme-green .key-services li::before {
    color: var(--ceylon-gold);
}

.theme-green .btn-outline {
    border-color: var(--clean-white);
    color: var(--clean-white);
}

.theme-green .btn-outline:hover {
    background-color: var(--clean-white);
    color: var(--heritage-green);
}

.theme-white {
    background-color: var(--clean-white);
    color: var(--charcoal);
}

.theme-charcoal {
    background-color: var(--charcoal);
    color: var(--clean-white);
}

.theme-charcoal .profile-intro {
    color: rgba(255, 255, 255, 0.9);
}

.theme-charcoal .key-services li {
    color: rgba(255, 255, 255, 0.8);
}

.theme-charcoal .key-services li::before {
    color: var(--leaf-green);
}

.theme-charcoal .btn-outline {
    border-color: var(--clean-white);
    color: var(--clean-white);
}

.theme-charcoal .btn-outline:hover {
    background-color: var(--clean-white);
    color: var(--charcoal);
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

/* Alternate flex direction for visual variety */
.business-profile:nth-child(even) .profile-container {
    flex-direction: row-reverse;
}

.profile-content {
    flex: 1;
}

.profile-media {
    flex: 1;
    width: 100%;
}

.profile-logo {
    height: 70px;
    margin-bottom: 2rem;
    object-fit: contain;
}

.profile-intro {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.key-services {
    margin-bottom: 2rem;
    padding-left: 1rem;
}

.key-services li {
    margin-bottom: 0.5rem;
    color: var(--olive-grey);
}

.profile-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.website-link {
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Video Thumbnail Placeholder */
.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #e0e0e0;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background var(--transition-fast);
}

.video-thumbnail:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: var(--ceylon-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--charcoal);
    font-size: 1.5rem;
    padding-left: 5px;
    /* Visual center for play icon */
    z-index: 2;
    transition: transform var(--transition-fast);
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-coming-soon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 2;
}

/* ==========================================================================
   SUSTAINABILITY
   ========================================================================== */
.esg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.esg-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   PARTNERSHIPS
   ========================================================================== */
.partnership-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.tag {
    background-color: var(--natural-cream);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    color: var(--heritage-green);
    border: 1px solid rgba(31, 122, 58, 0.2);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--clean-white);

    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 45px;
    background: var(--heritage-green);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--leaf-green);
    transform: scale(1.1);
}

.social-icon.placeholder-text {
    font-style: normal;
    font-size: 0.8rem;
}

.placeholder-box {
    width: 100%;
    height: 250px;
    background: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: var(--olive-grey);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group.row {
    display: flex;
    gap: 1rem;
}

.form-group.row .col {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-body);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--heritage-green);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    padding: 2rem 0;
}

/* Refined site footer */
.footer { padding: 0; color: rgba(255,255,255,.72); background: linear-gradient(140deg, #10281e, #08140f) !important; }
.footer-main { display: grid; grid-template-columns: 1.4fr .7fr .8fr 1.15fr; gap: 45px; padding-top: 65px; padding-bottom: 52px; }
.footer-brand img { width: 145px; max-height: 82px; margin-bottom: 18px; object-fit: contain; filter: brightness(0) invert(1); opacity: .94; }
.footer-brand p { max-width: 330px; margin: 0 0 22px; font-size: .88rem; line-height: 1.75; }
.footer h3 { margin: 4px 0 20px; color: #f0cc73; font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-links, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-links a, .footer-contact a, .footer-contact p { margin: 0; color: rgba(255,255,255,.7); font-size: .86rem; line-height: 1.55; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.footer-links a:hover, .footer-contact > a:not(.footer-cta):hover { color: #f0cc73; transform: translateX(3px); }
.footer-contact i { width: 18px; color: #d3aa4a; }
.footer-socials { display: flex; gap: 9px; }
.footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; color: white; background: rgba(255,255,255,.06); transition: background .2s ease, transform .2s ease; }
.footer-socials a:hover { color: #10281e; background: #f0cc73; transform: translateY(-3px); }
.footer-cta { margin-top: 10px !important; padding: 11px 15px; border: 1px solid rgba(240,204,115,.42); border-radius: 9px; color: #f0cc73 !important; }
.footer-cta:hover { color: #10281e !important; background: #f0cc73; }
.footer-cta i { margin-left: 7px; color: inherit; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.5); font-size: .75rem; }
.footer-bottom a { color: #d8b458; text-decoration: none; }
@media (max-width: 900px) { .footer-main { grid-template-columns: 1.3fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; } .footer-bottom { flex-direction: column; gap: 7px; } }

/* ==========================================================================
   LIGHTBOX & FLOATING WHATSAPP
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    background-color: var(--charcoal);
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    position: relative;
}

.close-lightbox {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

/* Give the landscape Poka flavor packs a little more visual presence. */
.products-section .product-item[data-category="poka"] .product-img-wrapper img {
    padding: 0 !important;
    transform: scale(1.25) translateY(6px) !important;
}

.products-section .product-item[data-category="poka"]:hover .product-img-wrapper img {
    transform: scale(1.35) translateY(4px) !important;
}

/* Make Organic Tropical Juice images the same big size */
.products-section .product-item[data-category="organic-juice"] .product-img-wrapper img {
    padding: 0 !important;
    transform: scale(1.45) translateY(5px) !important;
}

.products-section .product-item[data-category="organic-juice"]:hover .product-img-wrapper img {
    transform: scale(1.55) translateY(3px) !important;
}

/* Make all Organic Tropical Juice pictures smaller uniformly */
.products-section .product-item[data-category="organic-juice"] .product-img-wrapper img {
    transform: scale(0.75) !important;
}

.products-section .product-item[data-category="organic-juice"]:hover .product-img-wrapper img {
    transform: scale(0.85) translateY(-4px) !important;
}

.products-section .product-item[data-category="poka"] h4 {
    position: relative;
    z-index: 1;
}

/* The supplied Leisure and Liquid Factory artwork is white, so give only
   those wheel buttons a dark contrast surface. */
.wheel-item.logo-white {
    background: var(--charcoal);
}

.group-wheel-section .wheel-item.logo-white img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: none;
}

.biz-mock-logo.logo-white {
    background: var(--charcoal);
}

.businesses-section .biz-mock-img.logo-white-panel {
    background: var(--charcoal);
}

.wheel-popup .popup-logo[src*="CAP Leisure"],
.wheel-popup .popup-logo[src*="Liquid Factory"] {
    filter: brightness(0);
}

.video-placeholder span {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ceylon-gold);
}

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all var(--transition-fast);
    color: white;
    font-size: 24px;
    cursor: pointer;
    background-color: var(--heritage-green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top-btn:hover {
    transform: scale(1.1) translateY(0);
    background-color: var(--ceylon-gold);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE)
   ========================================================================== */
@media (max-width: 992px) {

    .profile-container,
    .profile-container.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .creative-title .title-light {
        font-size: 1.8rem;
    }

    .creative-title .title-bold {
        font-size: 2.5rem;
    }

    .creative-title .title-small {
        font-size: 1.2rem;
    }

    .creative-title .title-accent {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Hide default nav, can implement mobile menu if needed */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clean-white);

        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-cta .btn {
        display: none;
        /* Hide top CTA on small screens to save space, rely on floating WA */
    }

    /* Size and center the wheel fluidly on mobile */
    .group-wheel-section {
        overflow: hidden;
        --wheel-size: min(88vw, 600px);
        --wheel-center: clamp(92px, 26vw, 160px);
        --wheel-item: clamp(70px, 20vw, 118px);
    }

    .group-wheel-section .container {
        overflow: visible;
        position: relative;
        padding-left: 16px;
        padding-right: 16px;
    }

    .wheel-container {
        display: flex !important;
        width: var(--wheel-size);
        height: var(--wheel-size);
        margin: 10px auto 0 !important;
        transform: none;
    }

    /* On mobile, popup becomes a fixed centered overlay */
    .wheel-popup {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1) !important;
        width: 88vw !important;
        max-width: 340px;
        z-index: 9999;
        border-radius: 16px;
        padding: 1.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    }

    .wheel-popup.active {
        transform: translate(-50%, -50%) scale(1) !important;
    }

    /* Show X close button only on mobile */
    .popup-close-btn {
        display: flex !important;
    }

    .mobile-wheel-stack {
        display: none !important;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .trust-strip {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .trust-strip .dot {
        display: none;
    }

    .form-group.row {
        flex-direction: column;
    }
}

/* ==========================================================================
   BRANDS MARQUEE
   ========================================================================== */
.brands-marquee-section {
    background-color: var(--natural-cream);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    /* Optional: Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
    /* Gap spacing before the cloned set */
}

.marquee-content img {
    width: 210px;
    height: 105px;
    padding: 16px 20px;
    object-fit: contain;
    object-position: center;
    flex: 0 0 210px;
    border: 1px solid rgba(30, 61, 47, .1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(30, 61, 47, .08);
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.marquee-content img:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(204, 160, 60, .45);
    box-shadow: 0 14px 30px rgba(30, 61, 47, .14);
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Scrolls exactly half the width (the first set) */
}

@media (max-width: 768px) {
    .marquee-content img {
        width: 160px;
        height: 84px;
        flex-basis: 160px;
        padding: 12px 15px;
    }

    .marquee-content {
        gap: 2rem;
        padding-right: 2rem;
    }
}


/* ==========================================================================
   PRODUCT RANGES
   ========================================================================== */
.products-section {
    padding: 6rem 0;
}

.product-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--heritage-green);
    color: var(--heritage-green);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--heritage-green);
    color: var(--clean-white);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.product-item {
    background: var(--clean-white);

    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-fast);
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-img-wrapper {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-item h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin: 0;
}

/* ==========================================================================
   ELEVATOR DOORS HERO
   ========================================================================== */
.elevator-hero {
    height: 200vh;
    /* Scroll space to open the doors */
    position: relative;
    background: var(--clean-white);
}

.elevator-sticky {
    background-color: #677f5f;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

/* The Background Video & Content */
.hero-revealed-state {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    /* Aligns image to the bottom so products are visible */
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 0;
}

.hero-video-mobile {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.cinematic-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    /* Offset for nav */
    opacity: 0;
    /* Hidden initially, fades in via JS */
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cinematic-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.elevator-door {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50vh;
    z-index: 3;
    display: flex;
    justify-content: center;
    will-change: transform;
}

.door-top {
    top: 0;
    background-color: #677f5f;
    align-items: flex-end;
    /* Text sits at the bottom edge */
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ceylon-gold);
}

.door-bottom {
    bottom: 0;
    background-color: var(--natural-cream);
    align-items: center;
    text-align: center;
    /* Text sits at the top edge */
    padding-top: 1rem;
    border-top: 2px solid var(--ceylon-gold);
}

.door-inner {
    position: relative;
    width: 100%;
    text-align: center;
}

.door-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}

.door-left .door-text {
    color: var(--clean-white);
}

.door-right .door-text {
    color: var(--heritage-green);
}

.scroll-indicator {
    margin-top: 3rem;
    color: var(--charcoal);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.scroll-indicator p {
    margin-bottom: 10px;
}

.scroll-line {
    width: 2px;
    height: 45px;
    background: var(--charcoal);
    margin: 0 auto;
    animation: scroll-bob 2s infinite;
}

@keyframes scroll-bob {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 1;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ==========================================================================
   INNOVATION & MANUFACTURING SECTION
   ========================================================================== */
.innovation-section {
    padding: var(--section-pad);
    background-color: var(--clean-white);
}

.innovation-section .hero-block h2 {
    color: var(--heritage-green);
    font-size: 2.5rem;
}

.innovation-section .hero-block h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--charcoal);
}

.audience-grid,
.services-grid,
.capabilities-grid,
.trust-cards-grid {
    display: grid;
    gap: 20px;
    margin-top: 2rem;
}

/* 4 columns on desktop, 1 on mobile */
.audience-grid,
.services-grid {
    grid-template-columns: repeat(4, 1fr);
}

.capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
}

.trust-cards-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Cards shared styles */
.audience-card,
.service-card,
.capability-item,
.trust-card {
    background: var(--natural-cream);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover,
.service-card:hover,
.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-card .icon-wrapper {
    font-size: 2rem;
    color: var(--heritage-green);
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card .short-desc {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.service-card .detailed-copy {
    font-size: 0.95rem;
}



.creative-cta {
    background: linear-gradient(135deg, var(--natural-cream) 0%, #ffffff 100%);
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(245, 181, 46, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.creative-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 181, 46, 0.05) 0%, transparent 60%);
    z-index: -1;
    animation: slowZoom 15s infinite alternate;
}

.soft-cta {
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    display: inline-block;
}

.border-top {
    border-top: 1px solid #eee;
}

.pt-5 {
    padding-top: 3rem;
}



/* Process Flow */
.process-flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: 2rem;
}

.process-flow-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--ceylon-gold);
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--heritage-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px auto;
    border: 4px solid var(--clean-white);
}

.process-step p {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

@media (max-width: 991px) {

    .audience-grid,
    .services-grid,
    .capabilities-grid,
    .product-category-grid,
    .trust-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .audience-grid,
    .services-grid,
    .capabilities-grid,
    .product-category-grid,
    .trust-cards-grid {
        grid-template-columns: 1fr;
    }

    .process-flow-container {
        flex-direction: column;
        align-items: center;
    }

    .process-flow-container::before {
        top: 0;
        bottom: 0;
        left: 50%;
        right: auto;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
    }

    .process-step {
        margin-bottom: 30px;
        background: var(--clean-white);

        /* To hide the vertical line behind text */
        padding: 10px 20px;
        width: 100%;
    }
}

/* ==========================================================================
   GLOBAL RESPONSIVENESS PATCH
   ========================================================================== */
@media (max-width: 1100px) {
    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 991px) {

    /* Make nav menu collapse earlier since it has many items */
    .nav-links {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--clean-white);

        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        gap: 1rem;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: flex;
        margin-left: auto;
    }

    /* General section padding reduction */
    section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .creative-title .title-bold {
        font-size: 3rem;
    }

    .innovation-section .hero-block h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    /* Mobile Hero Fallback */
    .elevator-hero {
        height: auto !important;
        padding: 4rem 0 !important;
    }

    .elevator-sticky {
        background-color: #677f5f;
        position: relative !important;
        height: auto !important;
    }

    .elevator-door {
        display: none !important;
    }

    .hero-content {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        z-index: 1 !important;
    }

    /* General section padding reduction for mobile */
    section {
        padding: 2.5rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

    .creative-title .title-light {
        font-size: 1.8rem;
    }

    .creative-title .title-bold {
        font-size: 2.2rem;
    }

    .creative-title .title-accent {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .award-podium {
        flex-direction: column;
    }

    .podium-item,
    .podium-center {
        width: 100%;
        max-width: 350px;
    }

    /* Contact form row fixes */
    .form-group.row {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .trust-strip {
        justify-content: center;
        text-align: center;
    }
}


#prod-func {
    background-image: url('images/Products/func_bev.png');
}

#prod-tea {
    background-image: url('images/Products/tea_bev.png');
}

#prod-energy {
    background-image: url('images/Products/energy_bev.png');
}

#prod-sparkling {
    background-image: url('images/Products/sparkling_bev.png');
}

#prod-juice {
    background-image: url('images/Products/juice_bev.png');
}

#prod-coco {
    background-image: url('images/Products/coco_bev.png');
}

#prod-wellness {
    background-image: url('images/Products/wellness_bev.png');
}

#prod-botanical {
    background-image: url('images/Products/botanical_bev.png');
}

#prod-syrup {
    background-image: url('images/Products/syrup_bev.png');
}



/* ==========================================================================
   PDF ALIGNED LAYOUTS (Business & Innovation Grids)
   ========================================================================== */

/* Business Grid (Matches Page 5) */
.pdf-business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 991px) {
    .pdf-business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.pdf-biz-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pdf-biz-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pdf-biz-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pdf-biz-num {
    background: var(--heritage-green);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.pdf-biz-icon {
    font-size: 1.5rem;
    color: var(--leaf-green);
    margin-right: 1rem;
}

.pdf-biz-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.3;
}

.pdf-biz-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.pdf-biz-content {
    padding: 1.5rem;
    flex: 1;
}

.pdf-biz-content p {
    font-size: 0.95rem;
    color: var(--olive-grey);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pdf-biz-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdf-biz-list li {
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    text-align: center;
}

.pdf-biz-list li::before {
    content: "" "";
    color: var(--leaf-green);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Strategic Grid (Matches Page 10) */
.pdf-strategic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 991px) {
    .pdf-strategic-grid {
        grid-template-columns: 1fr;
    }
}

.pdf-strat-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.pdf-strat-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--heritage-green);
    color: white;
}

.pdf-strat-num-box {
    background: white;
    color: var(--heritage-green);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-right: 1rem;
}

.pdf-strat-icon-box {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.pdf-strat-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-family: var(--font-heading) !important;
    color: white;
}

.pdf-strat-body {
    max-width: 100vw;


    display: flex;
    padding: 1.5rem;
    gap: 1.5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .pdf-strat-body {
        max-width: 100vw;


        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.pdf-strat-body img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 50%;
    border: 4px solid var(--natural-cream);
    flex-shrink: 0;
}

.pdf-strat-content {
    flex: 1;
}

.strat-point {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 0.8rem;
}

.strat-point i {
    margin-top: 0.3rem;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.strat-point p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.4;
}

/* Restored Products We Develop Grid */
.product-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 10px;
}

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

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

.product-cat-card {
    border-radius: 16px;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
    transition: all 0.4s ease;
    text-align: center;
}

.product-cat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.product-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(245, 181, 46, 0.4);
    border-color: var(--ceylon-gold);
}

.product-cat-card i {
    font-size: 2.2rem;
    color: var(--ceylon-gold);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.product-cat-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.product-cat-card span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.2;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   ESG 3-COLUMN CARD LAYOUT
   ========================================================================== */
.premium-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.esg-card-header {
    padding: 30px 20px 40px;
    text-align: center;
    position: relative;
}

.bg-green-gradient {
    background: linear-gradient(135deg, var(--heritage-green) 0%, #1e8745 100%);
}

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--ceylon-gold) 0%, #d8961e 100%);
}

.bg-dark-gradient {
    background: linear-gradient(135deg, var(--charcoal) 0%, #3a3f3a 100%);
}

.esg-icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.esg-card-body {
    max-width: 100vw;


    border-radius: 20px 20px 0 0;
    margin-top: -20px;
    position: relative;
    z-index: 2;
    background: white;
}

.esg-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.esg-list li {
    font-size: 0.95rem;
    color: var(--olive-grey);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    text-align: center;
}

.esg-list li i {
    margin-top: 4px;
    margin-right: 12px;
}

.text-green {
    color: var(--heritage-green);
}

.text-gold {
    color: var(--ceylon-gold);
}

.text-dark-green {
    color: var(--charcoal);
}

/* Promise Strip */
.sustainability-promise-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.promise-card {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 10px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.promise-card:last-child {
    border-right: none;
}

.promise-card i {
    font-size: 1.8rem;
    color: var(--ceylon-gold);
    margin-top: 2px;
}

.promise-text {
    display: flex;
    flex-direction: column;
}

.promise-text span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 5px;
}

.promise-text p {
    font-size: 0.85rem;
    color: var(--olive-grey);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .sustainability-promise-strip {
        grid-template-columns: 1fr;
    }

    .promise-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    .promise-card:last-child {
        border-bottom: none;
        padding-bottom: 1rem;
        margin-bottom: 0;
    }
}

/* ==========================================================================
   ALTERNATING SPLIT-SCREEN BUSINESS SHOWCASE (Our Business Network)
   ========================================================================== */
.split-biz-container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 20px 0;
}

.split-biz-row {
    display: flex;
    align-items: stretch;
    gap: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.split-biz-row:nth-child(even) {
    flex-direction: row-reverse;
}

.split-biz-image {
    flex: 1;
    min-height: 400px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.split-biz-image.placeholder-img {
    background: linear-gradient(135deg, rgba(24, 108, 56, 0.1) 0%, rgba(216, 150, 30, 0.1) 100%);
}

.split-biz-center-logo {
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.split-biz-center-logo img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
}

.split-biz-content {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-biz-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.split-biz-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(216, 150, 30, 0.15);
    font-family: var(--font-heading);
    line-height: 1;
}

.split-biz-header h3 {
    margin: 0;
    color: var(--charcoal);
    font-weight: 700;
}

.split-biz-desc {
    font-size: 1.15rem;
    color: var(--olive-grey);
    margin-bottom: 30px;
    line-height: 1.6;
}

.split-biz-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.split-biz-list li {
    position: relative;
    padding-left: 25px;
    color: var(--charcoal);
    font-weight: 500;
}

.split-biz-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--heritage-green);
    font-size: 0.9rem;
}

@media (max-width: 992px) {

    .split-biz-row,
    .split-biz-row:nth-child(even) {
        flex-direction: column;
    }

    .split-biz-image {
        min-height: 300px;
    }

    .split-biz-content {
        padding: 40px 25px;
    }

    .split-biz-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ESG INTERACTIVE HORIZONTAL ACCORDION
   ========================================================================== */
.esg-h-accordion {
    display: flex;
    height: 600px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    margin-bottom: 40px;
}

.esg-panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    overflow: hidden;
}

.esg-panel:hover,
.esg-panel.active {
    flex: 3;
}

.esg-panel-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.esg-panel:hover .esg-panel-icon,
.esg-panel.active .esg-panel-icon {
    top: 40px;
    left: auto;
    right: 40px;
    transform: translate(0, 0) scale(0.8);
    color: white;
}

.esg-panel-content {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    width: 100%;
    min-width: 400px;
}

.esg-panel:hover .esg-panel-content,
.esg-panel.active .esg-panel-content {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.esg-panel h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.esg-panel p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
}

.esg-panel ul {
    list-style: none;
    padding: 0;
}

.esg-panel ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.esg-panel ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 15px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.25);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .esg-h-accordion {
        flex-direction: column;
        height: auto;
        min-height: 800px;
    }

    .esg-panel-icon {
        top: 20px;
        left: auto;
        right: 20px;
        transform: translate(0, 0) scale(0.6);
    }

    .esg-panel-content {
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        min-width: unset;
    }
}

/* Partner with CAP Group Section */

.partner-with-us-section {
    padding: 80px 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.partner-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.partner-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.partner-card.active {
    grid-column: span 2;
    grid-row: span 2;
}

.partner-card-collapsed {
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: opacity 0.3s ease;
}

.partner-card.active .partner-card-collapsed {
    display: none;
}

.pc-icon {
    font-size: 2.5rem;
    color: var(--ceylon-gold, #cca03c);
    margin-bottom: 15px;
}

.pc-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heritage-green, #1e3d2f);
    margin-bottom: 10px;
}

.pc-teaser {
    font-size: 0.9rem;
    color: var(--charcoal, #333);
    margin-bottom: 15px;
}

.pc-indicator {
    color: var(--ceylon-gold, #cca03c);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.partner-card-expanded {
    display: none;
    height: 100%;
    flex-direction: column;
    position: relative;
}

.partner-card.active .partner-card-expanded {
    display: flex;
}

.pc-visual {
    height: 150px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 12px 12px 0 0;
}

/* Fallback Abstract Backgrounds */
.overlay-export {
    background: linear-gradient(135deg, rgba(30, 61, 47, 0.8), rgba(204, 160, 60, 0.8));
}

.overlay-dist {
    background: linear-gradient(135deg, rgba(30, 61, 47, 0.7), rgba(204, 160, 60, 0.9));
}

.overlay-private {
    background: linear-gradient(135deg, rgba(30, 61, 47, 0.9), rgba(204, 160, 60, 0.7));
}

.overlay-mfg {
    background: linear-gradient(135deg, rgba(30, 61, 47, 0.6), rgba(204, 160, 60, 0.6));
}

.overlay-invest {
    background: linear-gradient(135deg, rgba(30, 61, 47, 0.85), rgba(204, 160, 60, 0.85));
}

.overlay-sus {
    background: linear-gradient(135deg, rgba(30, 61, 47, 0.95), rgba(204, 160, 60, 0.5));
}

.overlay-rd {
    background: linear-gradient(135deg, rgba(30, 61, 47, 0.75), rgba(204, 160, 60, 0.75));
}

.overlay-gov {
    background: linear-gradient(135deg, rgba(30, 61, 47, 0.65), rgba(204, 160, 60, 0.85));
}

.img-caption {
    position: absolute;
    bottom: 5px;
    right: 10px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.pc-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pc-content p {
    font-size: 0.95rem;
    color: var(--charcoal, #333);
    margin-bottom: 15px;
}

.pc-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.pc-benefits li {
    font-size: 0.9rem;
    color: var(--charcoal, #333);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.pc-benefits li i {
    color: var(--heritage-green, #1e3d2f);
    margin-right: 10px;
    font-size: 0.85rem;
}

.pc-cta {
    margin-top: auto;
    width: 100%;
    padding: 18px;
    text-align: center;
}

.pc-note {
    font-size: 0.75rem !important;
    color: #777 !important;
    text-align: center;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}

.partner-faqs h4 {
    color: var(--heritage-green, #1e3d2f);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.partner-faqs p {
    color: var(--charcoal, #333);
    font-size: 0.95rem;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item p {
    display: none;
    /* Hide answer by default */
    margin-top: 10px;
}

.faq-item.active p {
    display: block;
    /* Show answer when active */
}

.faq-item h4 {
    position: relative;
    padding-right: 20px;
}

.faq-item h4::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-item.active h4::after {
    transform: translateY(-50%) rotate(45deg);
}


.btn-wa {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-wa:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

@media (max-width: 992px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .partner-card.active {
        grid-column: span 1;
        grid-row: auto;
    }
}

/* ==========================================================================
   Creative Sustainability Section
   ========================================================================== */

.sustainability-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.sustainability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(204, 160, 60, 0.1), transparent 40%),
        radial-gradient(circle at bottom left, rgba(204, 160, 60, 0.1), transparent 40%);
    pointer-events: none;
}

.esg-creative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.esg-creative-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 160, 60, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.esg-creative-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(204, 160, 60, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.esg-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(204, 160, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--ceylon-gold, #cca03c);
    transition: all 0.4s ease;
}

.esg-creative-card:hover .esg-icon-wrapper {
    background: var(--ceylon-gold, #cca03c);
    color: var(--heritage-green, #1e3d2f);
    transform: scale(1.1) rotate(5deg);
}

.esg-creative-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFDF00 !important;
}

.esg-creative-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.esg-decor-line {
    width: 0;
    height: 3px;
    background: var(--ceylon-gold, #cca03c);
    margin: 20px auto 0;
    transition: width 0.4s ease;
}

.esg-creative-card:hover .esg-decor-line {
    width: 50px;
}

@media (max-width: 992px) {
    .esg-creative-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .esg-creative-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================    SUSTAINABILITY ESG SECTION REDESIGN    ========================================================================== */
.sustainability-section {
    padding: 80px 0;

    position: relative;
    overflow: hidden;


}




.sustainability-section::before {
    content: ""
    ;
    position: absolute;

    top: 0;
    left: 0;

    right: 0;
    bottom: 0;

    background: radial-gradient(circle at top right, rgba(24, 108, 56, 0.03) 0%, transparent 60%), radial-gradient(circle at bottom left, rgba(229, 159, 35, 0.03) 0%, transparent 60%);

    pointer-events: none;



}



.esg-split-layout {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;



}



@media (max-width: 991px) {

    .esg-split-layout {

        grid-template-columns: 1fr;



    }





}



/* ESG Wheel visual side */
.esg-visual-side {

    display: flex;

    justify-content: center;

    position: relative;

    padding: 20px;



}



.esg-impact-wheel {

    position: relative;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    border: 2px dashed rgba(24, 108, 56, 0.2);

    display: flex;

    align-items: center;

    justify-content: center;

    animation: slow-spin 40s linear infinite;



}



@keyframes slow-spin {

    from {

        transform: rotate(0deg);



    }



    to {

        transform: rotate(360deg);



    }





}



.wheel-core {

    width: 100px;

    height: 100px;

    background: var(--heritage-green);

    color: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    font-weight: 700;

    font-family: var(--font-heading);

    box-shadow: 0 10px 30px rgba(24, 108, 56, 0.3);

    z-index: 2;

    animation: slow-spin-reverse 40s linear infinite;



}



@keyframes slow-spin-reverse {

    from {

        transform: rotate(0deg);



    }



    to {

        transform: rotate(-360deg);



    }





}



.wheel-pillar {

    position: absolute;

    display: flex;

    flex-direction: column;

    align-items: center;

    animation: slow-spin-reverse 40s linear infinite;



}



.wheel-pillar .pillar-icon {

    width: 70px;

    height: 70px;

    background: white;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.8rem;

    color: var(--ceylon-gold);

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    margin-bottom: 10px;

    transition: all 0.3s ease;



}



.wheel-pillar:hover .pillar-icon {

    background: var(--ceylon-gold);

    color: white;

    transform: scale(1.1);



}



.wheel-pillar span {

    font-weight: 700;

    color: var(--charcoal);

    background: rgba(255, 255, 255, 0.8);

    padding: 2px 10px;

    border-radius: 20px;

    font-size: 0.9rem;



}



.p-env {

    top: -20px;

    left: 50%;

    transform: translateX(-50%);



}



.p-soc {

    bottom: 40px;

    right: -20px;



}



.p-gov {

    bottom: 40px;

    left: -20px;



}



/* Interactive Accordion */
.esg-accordion {

    display: flex;

    flex-direction: column;

    gap: 15px;



}



.esg-acc-item {

    background: white;

    border-radius: 12px;

    border: 1px solid rgba(0, 0, 0, 0.05);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);

    overflow: hidden;

    cursor: pointer;

    transition: all 0.3s ease;



}



.esg-acc-item:hover {

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    border-color: rgba(24, 108, 56, 0.1);



}



.esg-acc-header {

    display: flex;

    align-items: center;

    padding: 20px 25px;

    background: white;



}



.esg-acc-icon {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: rgba(24, 108, 56, 0.08);

    color: var(--heritage-green);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;

    margin-right: 20px;

    transition: all 0.3s ease;



}



.esg-acc-header h3 {

    margin: 0;

    font-size: 1.25rem;

    color: var(--charcoal);

    flex-grow: 1;

    transition: color 0.3s ease;



}



.esg-acc-toggle {

    color: var(--olive-grey);

    font-size: 1rem;

    position: relative;

    width: 20px;

    height: 20px;



}



.esg-acc-toggle .fa-minus {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    opacity: 0;

    transition: opacity 0.3s ease;



}



.esg-acc-toggle .fa-plus {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    opacity: 1;

    transition: opacity 0.3s ease;



}



.esg-acc-body {

    padding: 0 25px;

    max-height: 0;

    opacity: 0;

    overflow: hidden;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);



}



.esg-acc-item.active .esg-acc-body {

    padding: 0 25px 25px 25px;

    max-height: 500px;

    opacity: 1;



}



.esg-acc-item.active .esg-acc-header {

    border-bottom: 1px solid rgba(0, 0, 0, 0.04);

    margin-bottom: 15px;



}



.esg-acc-item.active .esg-acc-icon {

    background: var(--heritage-green);

    color: white;



}



.esg-acc-item.active .esg-acc-header h3 {

    color: var(--heritage-green);



}



.esg-acc-item.active .fa-plus {

    opacity: 0;



}



.esg-acc-item.active .fa-minus {

    opacity: 1;

    color: var(--heritage-green);



}



.esg-main-text {

    font-weight: 600;

    color: var(--charcoal);

    margin-bottom: 15px;



}



.esg-bullet-list {

    list-style: none;

    padding: 0;

    margin: 0;



}



.esg-bullet-list li {

    margin-bottom: 10px;

    display: flex;

    align-items: flex-start;

    color: var(--olive-grey);

    font-size: 0.95rem;



}



.esg-bullet-list li i {

    margin-top: 4px;

    margin-right: 12px;

    font-size: 0.85rem;



}



/* Promise Strip */
.sustainability-promise-strip {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 20px;

    background: white;

    padding: 30px;

    border-radius: 16px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);



}



.promise-card {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 10px;

    border-right: 1px solid rgba(0, 0, 0, 0.05);



}



.promise-card:last-child {

    border-right: none;



}



.promise-card i {

    font-size: 1.8rem;

    color: var(--ceylon-gold);



}



.promise-card span {

    font-weight: 700;

    font-size: 0.95rem;

    color: var(--charcoal);

    line-height: 1.3;



}



@media (max-width: 768px) {

    .sustainability-promise-strip {

        grid-template-columns: 1fr;



    }



    .promise-card {

        border-right: none;

        border-bottom: 1px solid rgba(0, 0, 0, 0.05);

        padding-bottom: 20px;

        margin-bottom: 10px;



    }



    .promise-card:last-child {

        border-bottom: none;

        padding-bottom: 0;

        margin-bottom: 0;



    }





}







/* ==========================================================================

   BIZ MOCK CARD LAYOUT (Our Business Network)

   ========================================================================== */

.biz-mock-container {

    display: flex;

    flex-direction: column;

    gap: 40px;

    padding-bottom: 60px;

    max-width: 1050px;

    margin: 0 auto;

}



.biz-mock-card {

    background: #ffffff;

    border-radius: 16px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);

    display: flex;

    overflow: hidden;

    min-height: 380px;

}



.biz-mock-card:nth-child(even) {

    flex-direction: row-reverse;

}



.biz-mock-img {

    flex: 0 0 45%;

    position: relative;

    background: #f8fbf8;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 2px dashed #ccd9cc;

    border-radius: 12px;

    margin: 20px 0 20px 20px;

    background-size: cover;

    background-position: center;

}



.biz-mock-card:nth-child(even) .biz-mock-img {

    margin: 20px 20px 20px 0;

}



.biz-placeholder {

    color: #889988;

    font-weight: 600;

    font-size: 1.1rem;

    letter-spacing: 1.5px;

}



.biz-mock-content {

    flex: 1;

    padding: 50px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}



.biz-mock-header {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

}



.biz-mock-num {

    font-size: 3.5rem;

    font-weight: 800;

    -webkit-text-stroke: 1.5px var(--heritage-green);

    color: transparent;

    font-family: var(--font-heading), sans-serif;

    line-height: 1;

}



.biz-mock-icon {

    width: 45px;

    height: 45px;

    background: var(--heritage-green);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 1.2rem;

}



.biz-mock-header h3 {

    margin: 0;

    color: var(--heritage-green);

    font-weight: 700;

    font-size: 1.9rem;

}



.biz-mock-desc {

    font-size: 1.1rem;

    color: #666;

    line-height: 1.6;

    margin-bottom: 25px;

}



.biz-mock-list {

    list-style: none;

    padding: 0;

    margin: 0;

    display: flex;

    flex-direction: column;

    gap: 15px;

}



.biz-mock-list li {

    position: relative;

    padding-left: 32px;

    color: #444;

    font-weight: 500;

    font-size: 1.05rem;

}



.biz-mock-list li::before {

    content: '\f00c';

    font-family: 'Font Awesome 5 Free';

    font-weight: 900;

    position: absolute;

    left: 0;

    top: 3px;

    color: var(--heritage-green);

    font-size: 1rem;

}



@media (max-width: 992px) {



    .biz-mock-card,

    .biz-mock-card:nth-child(even) {

        flex-direction: column;

    }



    .biz-mock-img {

        flex: 0 0 250px;

        margin: 20px 20px 0 20px !important;

    }



    .biz-mock-content {

        padding: 40px 30px;

    }

}



.biz-mock-logo {

    position: absolute;

    right: -70px;

    top: 50%;

    transform: translateY(-50%);

    width: 140px;

    height: 140px;

    background: #ffffff;

    border-radius: 50%;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 18px;

    z-index: 10;

}



.biz-mock-card:nth-child(even) .biz-mock-img .biz-mock-logo {

    right: auto;

    left: -70px;

}



.biz-mock-logo img {

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

}



@media (max-width: 992px) {

    .biz-mock-logo {

        top: auto;

        bottom: -70px;

        right: 50%;

        transform: translateX(50%);

        left: auto;

    }



    .biz-mock-card:nth-child(even) .biz-mock-img .biz-mock-logo {

        top: auto;

        bottom: -70px;

        right: 50%;

        left: auto;

        transform: translateX(50%);

    }

}



/* ==========================================================================

   MODERN SUSTAINABILITY PROMISE GRID

   ========================================================================== */

.sustainability-promise-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 35px;

    margin-top: 20px;

    max-width: 1100px;

    margin-left: auto;

    margin-right: auto;

}



.promise-card-modern {

    background: #ffffff;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    transition: transform 0.4s ease, box-shadow 0.4s ease;

    border: 1px solid rgba(24, 108, 56, 0.05);

}



.promise-card-modern:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);

}



.promise-icon-wrapper {

    width: 60px;

    height: 60px;

    background: rgba(24, 108, 56, 0.05);

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

}



.promise-card-modern i {

    font-size: 1.8rem;

    color: var(--heritage-green);

}



.promise-card-modern h5 {

    color: var(--charcoal);

    font-weight: 700;

    margin-bottom: 15px;

    font-size: 1.3rem;

}



.promise-card-modern p {

    color: #555;

    line-height: 1.7;

    margin: 0;

    font-size: 1.05rem;

}



@media (max-width: 992px) {

    .sustainability-promise-grid {

        gap: 20px;

    }



    .promise-card-modern {

        padding: 30px;

    }

}



@media (max-width: 768px) {

    .sustainability-promise-grid {

        grid-template-columns: 1fr;

    }

}



/* Force white text in ESG horizontal accordion as requested */

.esg-panel-content p,

.esg-panel-content ul li,

.esg-panel-content ul li::before {

    color: #ffffff !important;

}



@media (max-width: 768px) {

    .row {

        margin-left: 0 !important;

        margin-right: 0 !important;

    }



    .container,

    .container-fluid {

        padding-left: 15px !important;

        padding-right: 15px !important;



    }

}



/* Custom background logo for Business Network */

.biz-bg-logo {

    width: 100%;

    height: 100%;

    object-fit: contain;

    position: absolute;

    top: 0;

    left: 0;

    z-index: 1;

    border-radius: 20px;

    padding: 30px;

    background: rgba(255, 255, 255, 0.3);

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);

    transition: all 0.4s ease;

    border: 1px solid rgba(255, 255, 255, 0.5);

}



.biz-mock-img:hover .biz-bg-logo {

    background: rgba(255, 255, 255, 0.6);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    transform: scale(1.03);

    border: 1px solid rgba(255, 255, 255, 0.8);

}



/* Product Item Hover Animation Enhancements (Can Pop-up) */

.product-item {

    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;

}



.product-item:hover {

    transform: translateY(-8px) !important;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;

}



.product-img-wrapper img {

    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;

    transform-origin: bottom center;

}



.product-item:hover .product-img-wrapper img {

    transform: scale(1.15) translateY(-8px) !important;

}

/* ==========================================================================
   PARTNER MODAL
   ========================================================================== */
.partner-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 25, 18, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    padding: 24px;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.partner-modal.active {
    opacity: 1;
    visibility: visible;
}

.partner-modal-content {
    background: #fffdf8;
    padding: 0;
    border-radius: 24px;
    width: min(100%, 720px);
    max-height: min(90vh, 760px);
    overflow-y: auto;
    position: relative;
    transform: translateY(24px) scale(0.98);
    transition: transform var(--transition-fast);
    box-shadow: 0 30px 90px rgba(4, 20, 13, 0.35);
    border: 1px solid rgba(204, 160, 60, 0.3);
}

.partner-modal.active .partner-modal-content {
    transform: translateY(0) scale(1);
}

.partner-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1rem;
    color: white;
    cursor: pointer;
    line-height: 1;
    z-index: 3;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.partner-modal-close:hover {
    background: rgba(255, 255, 255, 0.26);
    transform: rotate(90deg);
}

.partner-modal-close:focus-visible {
    outline: 3px solid var(--ceylon-gold);
    outline-offset: 3px;
}

.partner-modal-open {
    overflow: hidden;
}

.partner-modal-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 34px 76px 32px 34px;
    color: white;
    background: linear-gradient(125deg, #163c2d 0%, #245d45 72%, #9b7729 150%);
    overflow: hidden;
}

.partner-modal-header::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    right: -90px;
    bottom: -150px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.035), 0 0 0 58px rgba(255, 255, 255, 0.025);
}

.partner-modal-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 18px;
    color: var(--ceylon-gold);
    font-size: 1.65rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.partner-modal-eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #ebc86f;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.partner-modal-header h2 {
    margin: 0 0 4px;
    color: white;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.2;
}

.partner-modal-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.93rem;
}

.partner-modal-detail {
    padding: 30px 34px 34px;
}

#partner-modal-body .partner-card-expanded {
    max-height: none;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    display: block;
}

#partner-modal-body .pc-visual {
    display: none;
}

#partner-modal-body .pc-content {
    padding: 0;
}

#partner-modal-body .pc-content > p:first-child {
    margin-bottom: 22px;
    color: #4d554f;
    font-size: 1rem;
    line-height: 1.75;
}

#partner-modal-body .pc-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 26px;
}

#partner-modal-body .pc-benefits li {
    min-height: 48px;
    margin: 0;
    padding: 11px 13px;
    border-radius: 10px;
    background: #f2f6f1;
    color: #294536;
    font-weight: 600;
}

#partner-modal-body .pc-benefits li i {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    color: white;
    background: var(--heritage-green);
    font-size: 0.65rem;
}

#partner-modal-body .pc-cta {
    min-height: 54px;
    border-radius: 10px;
    font-weight: 700;
}

#partner-modal-body .pc-popup-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

#partner-modal-body .pc-popup-actions .btn {
    min-width: 150px;
    min-height: 56px;
    justify-content: center;
}

#partner-modal-body .pc-more {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(30, 61, 47, .24);
    border-radius: 12px;
    color: var(--heritage-green);
    background: transparent;
}

#partner-modal-body .pc-more:hover {
    border-color: var(--heritage-green);
    color: var(--clean-white);
    background: var(--heritage-green);
}

#partner-modal-body .pc-note {
    margin-top: 13px !important;
}

@media (max-width: 600px) {
    .partner-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .partner-modal-content {
        width: 100%;
        max-height: 92vh;
        border-radius: 22px 22px 14px 14px;
    }

    .partner-modal-header {
        align-items: flex-start;
        gap: 14px;
        padding: 26px 58px 24px 22px;
    }

    .partner-modal-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 14px;
        font-size: 1.3rem;
    }

    .partner-modal-detail {
        padding: 24px 22px 26px;
    }

    #partner-modal-body .pc-benefits {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* Ecosystem-to-business navigation and logo clarity */
.businesses-section .biz-mock-card {
    scroll-margin-top: 110px;
}

.businesses-section .biz-placeholder {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    background: linear-gradient(145deg, #f7faf7 0%, #edf3ee 100%);
}

.businesses-section .biz-bg-logo {
    width: 100%;
    height: 100%;
    padding: 42px;
    object-fit: contain;
    opacity: 1;
    filter: none;
}

.businesses-section .biz-mock-card.is-ecosystem-target {
    border-color: var(--ceylon-gold);
    box-shadow: 0 24px 65px rgba(30, 61, 47, 0.18), 0 0 0 4px rgba(204, 160, 60, 0.2);
    animation: ecosystemCardFocus 1.05s ease both;
}

.businesses-section .biz-mock-card.is-ecosystem-target .biz-mock-img {
    background: linear-gradient(145deg, #f5f8f4, #f6eedc);
}

.businesses-section .biz-mock-card.is-ecosystem-target .biz-mock-logo {
    box-shadow: 0 12px 34px rgba(30, 61, 47, 0.2), 0 0 0 4px rgba(204, 160, 60, 0.22);
}

@keyframes ecosystemCardFocus {
    0% {
        transform: translateY(0) scale(1);
    }
    42% {
        transform: translateY(-4px) scale(1.012);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 600px) {
    .businesses-section .biz-mock-card {
        scroll-margin-top: 88px;
    }

    .businesses-section .biz-bg-logo {
        padding: 28px 48px;
    }
}

/* Awards gallery carousel */
.awards-carousel { position: relative; max-width: 1180px; margin: 3.5rem auto 0; padding: 30px 64px 52px; }
.awards-stage { min-height: 560px; display: grid; grid-template-columns: .82fr 1.25fr .82fr; align-items: center; gap: 22px; padding: 24px 0; background: radial-gradient(circle at 50% 48%, rgba(204,160,60,.12), transparent 38%); }
.award-slide { display: none; overflow: hidden; border: 1px solid rgba(255,223,0,.2); border-radius: 20px; background: linear-gradient(145deg, #18231e, #0c1511); opacity: .72; transform: scale(.9); transition: opacity .4s ease, transform .4s ease, box-shadow .4s ease; }
.award-slide.is-previous, .award-slide.is-active, .award-slide.is-next { display: block; grid-row: 1; }
.award-slide.is-previous { grid-column: 1; }
.award-slide.is-active { grid-column: 2; opacity: 1; transform: scale(1.06); border-color: rgba(255,223,0,.55); box-shadow: 0 28px 60px rgba(0,0,0,.48), 0 0 46px rgba(204,160,60,.16); z-index: 2; animation: award-center-reveal .55s ease both; }
.award-slide.is-next { grid-column: 3; }
.award-slide img { display: block; width: 100%; height: 350px; padding: 10px; object-fit: contain; object-position: center; background: #0b100e; }
.award-slide.is-active img { height: 445px; padding: 12px; }
.award-slide h3 { min-height: 68px; margin: 0; padding: 18px 16px; display: grid; place-items: center; border-top: 1px solid rgba(255,255,255,.08); color: #ffdf00; font-size: 1rem; line-height: 1.35; text-align: center; background: linear-gradient(90deg, rgba(204,160,60,.06), transparent, rgba(204,160,60,.06)); }
.award-slide.is-active h3 { font-size: 1.2rem; }
.awards-arrow { position: absolute; top: 50%; z-index: 5; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,223,0,.4); border-radius: 50%; color: #ffdf00; background: rgba(255,255,255,.08); cursor: pointer; transform: translateY(-50%); transition: background .25s ease, transform .25s ease; }
.awards-arrow:hover { background: rgba(204,160,60,.22); transform: translateY(-50%) scale(1.08); }
.awards-prev { left: 0; }
.awards-next { right: 0; }
.awards-dots { position: absolute; bottom: 4px; left: 50%; display: flex; gap: 8px; transform: translateX(-50%); }
.awards-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: width .25s ease, background .25s ease; }
.awards-dots button.is-active { width: 25px; border-radius: 99px; background: #ffdf00; }

@keyframes award-center-reveal {
    from { opacity: .35; transform: scale(.96) translateY(10px); }
    to { opacity: 1; transform: scale(1.06) translateY(0); }
}

@media (max-width: 768px) {
    .awards-carousel { margin-top: 2rem; padding: 10px 48px 42px; }
    .awards-stage { min-height: 470px; display: block; padding: 8px 0; background: none; }
    .award-slide.is-previous, .award-slide.is-next { display: none; }
    .award-slide.is-active { display: block; transform: none; }
    .award-slide.is-active img { height: min(62vh, 430px); padding: 8px; }
    .awards-arrow { width: 38px; height: 38px; }
}

@media (max-width: 768px) {
    .award-slide.is-active { animation-name: award-mobile-reveal; }
    @keyframes award-mobile-reveal {
        from { opacity: .35; transform: translateY(8px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* Partnership FAQs */
.faqs-section { position: relative; overflow: hidden; padding: 92px 0 100px !important; background: #fff !important; }
.faqs-section::before { content: ''; position: absolute; width: 420px; height: 420px; top: -290px; right: -170px; border: 1px solid rgba(30,61,47,.08); border-radius: 50%; box-shadow: 0 0 0 55px rgba(30,61,47,.025), 0 0 0 110px rgba(204,160,60,.025); pointer-events: none; }
.partner-faqs { position: relative; z-index: 1; max-width: 900px; margin: 0 auto !important; padding-top: 0 !important; }
.faq-kicker { display: block; margin-bottom: 10px; color: #9b7729; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-align: center; text-transform: uppercase; }
.partner-faqs > h3 { margin-bottom: 12px !important; color: var(--heritage-green); font-size: clamp(2rem, 5vw, 3rem); }
.faq-intro { max-width: 680px; margin: 0 auto 38px; color: #68736c !important; line-height: 1.7; text-align: center; }
.faq-list { display: grid; gap: 12px; counter-reset: faq; }
.faq-list .faq-item { position: relative; margin: 0; padding: 0; overflow: hidden; border: 1px solid rgba(30,61,47,.1); border-radius: 15px; background: rgba(255,255,255,.86); box-shadow: 0 7px 22px rgba(30,61,47,.055); counter-increment: faq; transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.faq-list .faq-item:hover { border-color: rgba(204,160,60,.38); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(30,61,47,.09); }
.faq-list .faq-item.active { border-color: rgba(204,160,60,.5); background: #fff; box-shadow: 0 15px 38px rgba(30,61,47,.11); }
.faq-list .faq-item h4 { margin: 0; padding: 0; }
.faq-list .faq-item h4::after { display: none; }
.faq-question { position: relative; width: 100%; padding: 23px 64px 23px 62px; border: 0; color: #263c31; background: transparent; font: inherit; font-size: 1rem; font-weight: 700; line-height: 1.45; text-align: left; cursor: pointer; }
.faq-question::before { content: counter(faq, decimal-leading-zero); position: absolute; left: 22px; top: 24px; color: #ad8732; font-size: .7rem; letter-spacing: .08em; }
.faq-question::after { content: '+'; position: absolute; top: 50%; right: 22px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--heritage-green); background: #edf3ee; font-size: 1.25rem; font-weight: 400; transform: translateY(-50%); transition: transform .25s ease, color .25s ease, background .25s ease; }
.faq-item.active .faq-question::after { color: white; background: var(--heritage-green); transform: translateY(-50%) rotate(45deg); }
.faq-list .faq-item p { display: block; max-height: 0; margin: 0; padding: 0 64px 0 62px; overflow: hidden; color: #66716a; line-height: 1.75; opacity: 0; transition: max-height .35s ease, padding .35s ease, opacity .25s ease; }
.faq-list .faq-item.active p { max-height: 220px; padding-bottom: 24px; opacity: 1; }
.faq-question:focus-visible { outline: 3px solid rgba(204,160,60,.45); outline-offset: -3px; }
@media (max-width: 600px) { .faqs-section { padding: 68px 0 75px !important; } .faq-intro { margin-bottom: 28px; font-size: .92rem; } .faq-question { padding: 20px 52px 20px 48px; font-size: .9rem; } .faq-question::before { left: 16px; top: 21px; } .faq-question::after { right: 14px; } .faq-list .faq-item p { padding-left: 48px; padding-right: 20px; font-size: .88rem; } }

/* Certifications: stable, fully visible card grid */
.certifications-section { position: relative; padding: 100px 0 110px; overflow: hidden; background: linear-gradient(150deg, #f8f5ec, #eef4ef) !important; }
.certifications-section .section-header { max-width: 760px; margin: 0 auto; }
.cert-kicker { display: block; margin-bottom: 10px; color: #9b7729; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.certifications-section .section-header h2 { margin-bottom: 12px; color: var(--heritage-green); font-size: clamp(2.2rem, 5vw, 3.35rem); letter-spacing: -.035em; }
.certifications-section .section-header p { color: #68736c; line-height: 1.7; }
.certifications-section .cert-accordion { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; max-width: 1100px; height: auto; gap: 18px; margin: 45px auto 0; }
.certifications-section .cert-panel, .certifications-section .cert-panel:hover, .certifications-section .cert-panel.active { min-height: 285px; padding: 25px 20px; display: flex; flex-direction: column; justify-content: flex-start; border: 1px solid rgba(30,61,47,.1); border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 10px 30px rgba(30,61,47,.07); cursor: default; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.certifications-section .cert-panel:hover { border-color: rgba(204,160,60,.45); transform: translateY(-7px); box-shadow: 0 20px 45px rgba(30,61,47,.13); }
.certifications-section .cert-logo, .certifications-section .cert-panel:hover .cert-logo, .certifications-section .cert-panel.active .cert-logo { position: static; width: 120px; height: 120px; margin: 0 auto 18px; transform: none; }
.certifications-section .cert-panel img, .certifications-section .cert-panel:hover img, .certifications-section .cert-panel.active img { filter: none; opacity: 1; }
.certifications-section .cert-content, .certifications-section .cert-panel:hover .cert-content, .certifications-section .cert-panel.active .cert-content { position: static; padding: 0; opacity: 1; transform: none; text-align: center; }
.certifications-section .cert-content h4 { margin-bottom: 7px; font-size: 1.15rem; }
.certifications-section .cert-content p { color: #6b756f; font-size: .85rem; line-height: 1.55; }
@media (max-width: 768px) { .certifications-section { padding: 75px 0 82px; } .certifications-section .cert-accordion { grid-template-columns: repeat(2, minmax(0,1fr)); height: auto; gap: 12px; } .certifications-section .cert-panel, .certifications-section .cert-panel.active { min-height: 245px; padding: 20px 12px; } .certifications-section .cert-logo { width: 95px; height: 95px; } }
@media (max-width: 430px) { .certifications-section .cert-accordion { grid-template-columns: 1fr; } }

/* ESG framework */
.sustainability-section { position: relative; margin-top: 0 !important; padding: 105px 0 110px !important; overflow: hidden; background: linear-gradient(150deg, #eef4ef 0%, #f8f5ec 52%, #f0f4ef 100%) !important; }
.sustainability-section::before { content: ''; position: absolute; width: 520px; height: 520px; right: -330px; top: -310px; border: 1px solid rgba(30,61,47,.07); border-radius: 50%; box-shadow: 0 0 0 70px rgba(30,61,47,.018), 0 0 0 140px rgba(204,160,60,.02); pointer-events: none; }
.sustainability-section > .container { position: relative; z-index: 1; }
.esg-section-header { max-width: 800px; margin-right: auto; margin-left: auto; }
.esg-section-header .small-title { display: block; margin-bottom: 10px; color: #9b7729 !important; font-size: .72rem; letter-spacing: .18em !important; }
.esg-section-header h2 { margin-top: 0 !important; margin-bottom: 13px; color: var(--heritage-green) !important; font-size: clamp(2.25rem, 5vw, 3.45rem); letter-spacing: -.035em; }
.esg-section-header p { margin-top: 0 !important; color: #68736c !important; font-size: 1rem; line-height: 1.75; }
.sustainability-section .esg-h-accordion { height: 560px; margin: 45px 0 55px; border: 1px solid rgba(255,255,255,.45); border-radius: 24px; box-shadow: 0 28px 75px rgba(15,37,24,.22); }
.sustainability-section .esg-panel { padding: 38px; isolation: isolate; outline: none; }
.sustainability-section .esg-panel:hover { flex: 1.08; }
.sustainability-section .esg-panel.active, .sustainability-section .esg-panel.active:hover { flex: 3.5; }
.sustainability-section .esg-panel::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.56)); }
.sustainability-section .esg-panel::after { content: attr(data-title); position: absolute; left: 50%; bottom: 36px; color: rgba(255,255,255,.9); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; writing-mode: vertical-rl; transform: translateX(-50%) rotate(180deg); transition: opacity .25s ease; }
.sustainability-section .esg-panel.active::after, .sustainability-section .esg-panel:hover::after { opacity: 0; }
.sustainability-section .esg-panel:focus-visible { box-shadow: inset 0 0 0 3px #f0cc73; }
.sustainability-section .esg-panel-icon { width: 74px; height: 74px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 20px; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); font-size: 2rem; }
.sustainability-section .esg-panel:hover .esg-panel-icon, .sustainability-section .esg-panel.active .esg-panel-icon { top: 34px; right: 34px; transform: none; }
.sustainability-section .esg-panel-content { max-width: 620px; min-width: 370px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.sustainability-section .esg-panel h3 { margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3rem); }
.sustainability-section .esg-panel p { max-width: 560px; margin-bottom: 23px; font-size: 1rem; line-height: 1.65; }
.sustainability-section .esg-panel ul { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.sustainability-section .esg-panel ul li { min-height: 54px; margin: 0; padding: 9px 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; background: rgba(255,255,255,.1); backdrop-filter: blur(6px); font-size: .82rem; line-height: 1.4; }
.sustainability-section .esg-panel ul li::before { flex: 0 0 24px; width: 24px; height: 24px; margin-right: 9px; font-size: .65rem; }
.sustainability-section .sustainability-promise-grid { gap: 18px; }
.sustainability-section .promise-card-modern { border: 1px solid rgba(30,61,47,.09); border-radius: 18px; background: rgba(255,255,255,.85); box-shadow: 0 10px 30px rgba(30,61,47,.07); }
.sustainability-section .promise-card-modern:hover { border-color: rgba(204,160,60,.42); box-shadow: 0 20px 42px rgba(30,61,47,.12); }
@media (max-width: 992px) { .sustainability-section .esg-h-accordion { height: auto; min-height: 0; gap: 12px; overflow: visible; border: 0; box-shadow: none; background: transparent; } .sustainability-section .esg-panel { min-height: 105px; flex: none; padding: 24px; border-radius: 18px; transition: min-height .4s ease; } .sustainability-section .esg-panel.active { min-height: 480px; } .sustainability-section .esg-panel::after { left: 24px; bottom: auto; top: 43px; writing-mode: initial; transform: none; } .sustainability-section .esg-panel-icon { top: 18px; right: 18px; width: 58px; height: 58px; transform: none; font-size: 1.35rem; } .sustainability-section .esg-panel:hover .esg-panel-icon, .sustainability-section .esg-panel.active .esg-panel-icon { top: 18px; right: 18px; } .sustainability-section .esg-panel-content { min-width: 0; padding-top: 70px; } }
@media (max-width: 600px) { .sustainability-section { padding: 75px 0 80px !important; } .sustainability-section .esg-panel.active { min-height: 570px; } .sustainability-section .esg-panel ul { grid-template-columns: 1fr; } .sustainability-section .esg-panel h3 { font-size: 1.8rem; } }

/* Stable ESG card layout: all three pillars remain readable at all times. */
.sustainability-section .esg-h-accordion {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: auto;
    min-height: 0;
    gap: 18px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.sustainability-section .esg-panel,
.sustainability-section .esg-panel:hover,
.sustainability-section .esg-panel.active,
.sustainability-section .esg-panel.active:hover {
    min-width: 0;
    min-height: 540px;
    padding: 30px 26px;
    flex: none;
    justify-content: flex-end;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 21px;
    cursor: default;
    transform: none;
    box-shadow: 0 18px 45px rgba(15,37,24,.18);
    transition: transform .3s ease, box-shadow .3s ease;
}
.sustainability-section .esg-panel:hover {
    transform: translateY(-7px);
    box-shadow: 0 27px 58px rgba(15,37,24,.25);
}
.sustainability-section .esg-panel::after { display: none; }
.sustainability-section .esg-panel-icon,
.sustainability-section .esg-panel:hover .esg-panel-icon,
.sustainability-section .esg-panel.active .esg-panel-icon {
    top: 27px;
    left: 26px;
    right: auto;
    width: 62px;
    height: 62px;
    transform: none;
    font-size: 1.5rem;
}
.sustainability-section .esg-panel-content,
.sustainability-section .esg-panel:hover .esg-panel-content,
.sustainability-section .esg-panel.active .esg-panel-content {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding-top: 105px;
    opacity: 1;
    transform: none;
    transition: none;
}
.sustainability-section .esg-panel h3 { font-size: 2rem; }
.sustainability-section .esg-panel p { min-height: 104px; margin-bottom: 18px; font-size: .9rem; }
.sustainability-section .esg-panel ul { grid-template-columns: 1fr; gap: 7px; }
.sustainability-section .esg-panel ul li { min-height: 48px; font-size: .76rem; }
@media (max-width: 992px) {
    .sustainability-section .esg-h-accordion { grid-template-columns: 1fr; }
    .sustainability-section .esg-panel,
    .sustainability-section .esg-panel.active { min-height: 0; padding: 28px; }
    .sustainability-section .esg-panel-content,
    .sustainability-section .esg-panel.active .esg-panel-content { padding-top: 90px; }
    .sustainability-section .esg-panel p { min-height: 0; }
    .sustainability-section .esg-panel ul { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 600px) {
    .sustainability-section .esg-panel,
    .sustainability-section .esg-panel.active { min-height: 0; padding: 24px 20px; }
    .sustainability-section .esg-panel ul { grid-template-columns: 1fr; }
}

/* Product ranges and brands */
.products-section { position: relative; overflow: hidden; padding: 105px 0 115px; background: linear-gradient(155deg, #f8f5ec 0%, #eef4ef 55%, #faf8f2 100%) !important; }
.products-section::before { content: ''; position: absolute; width: 500px; height: 500px; top: -330px; right: -260px; border: 1px solid rgba(30,61,47,.07); border-radius: 50%; box-shadow: 0 0 0 65px rgba(30,61,47,.018), 0 0 0 130px rgba(204,160,60,.02); pointer-events: none; }
.products-section > .container { position: relative; z-index: 1; }
.products-section .section-header { max-width: 780px; margin: 0 auto 38px; }
.portfolio-download-btn { width: fit-content; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; margin: 0 auto 22px; padding: 11px 19px; border: 1px solid rgba(155,119,41,.38); border-radius: 999px; color: #fff; background: linear-gradient(110deg, #183f2f, #286248); font-size: .82rem; font-weight: 700; letter-spacing: .02em; box-shadow: 0 10px 24px rgba(30,61,47,.18); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.portfolio-download-btn:hover { color: #fff; background: linear-gradient(110deg, #22523d, #337559); box-shadow: 0 14px 30px rgba(30,61,47,.25); transform: translateY(-3px); }
.portfolio-download-btn:focus-visible { outline: 3px solid rgba(204,160,60,.45); outline-offset: 3px; }
.portfolio-download-btn .fa-file-pdf { color: #efc45e; font-size: 1.05rem; }
.portfolio-download-btn .fa-download { font-size: .78rem; transition: transform .25s ease; }
.portfolio-download-btn:hover .fa-download { transform: translateY(2px); }
.products-range-kicker { display: block; margin-bottom: 11px; color: #9b7729; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.products-section .section-header h2 { margin-bottom: 12px; color: var(--heritage-green); font-size: clamp(2.25rem, 5vw, 3.4rem); letter-spacing: -.035em; }
.products-section .section-header p { max-width: 650px; margin: 0 auto; color: #68736c; font-size: 1rem; line-height: 1.7; }
.products-section .product-tabs { max-width: 1050px; margin: 0 auto 45px; padding: 9px; gap: 7px; border: 1px solid rgba(30,61,47,.09); border-radius: 16px; background: rgba(255,255,255,.72); box-shadow: 0 10px 30px rgba(30,61,47,.06); }
.products-section .tab-btn { min-height: 43px; padding: 9px 17px; border: 1px solid transparent; border-radius: 10px; color: #536158; background: transparent; font-size: .78rem; font-weight: 700; }
.products-section .tab-btn:hover { border-color: rgba(30,61,47,.15); color: var(--heritage-green); background: #f0f4f0; }
.products-section .tab-btn.active { border-color: var(--heritage-green); color: #fff; background: linear-gradient(110deg, #183f2f, #286248); box-shadow: 0 7px 17px rgba(30,61,47,.2); }
.products-section .tab-btn:focus-visible { outline: 3px solid rgba(204,160,60,.4); outline-offset: 2px; }
.products-section .product-gallery { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
.products-section .product-item { position: relative; padding: 12px 12px 18px; overflow: hidden; border: 1px solid rgba(30,61,47,.09); border-radius: 17px; background: rgba(255,255,255,.9); box-shadow: 0 9px 27px rgba(30,61,47,.075); }
.products-section .product-item::after { content: ''; position: absolute; inset: auto 18px 0; height: 2px; border-radius: 99px; background: var(--ceylon-gold); opacity: 0; transform: scaleX(.3); transition: opacity .25s ease, transform .25s ease; }
.products-section .product-item:hover { border-color: rgba(204,160,60,.4); box-shadow: 0 18px 40px rgba(30,61,47,.13) !important; }
.products-section .product-item:hover::after { opacity: 1; transform: scaleX(1); }
.products-section .product-img-wrapper { height: 255px; margin-bottom: 15px; overflow: hidden; border-radius: 12px; background: linear-gradient(145deg, #f5f7f3, #edf1ec); }
.products-section .product-img-wrapper img { width: 100%; height: 100%; padding: 8px; object-fit: contain; }
.products-section .product-item:hover .product-img-wrapper img { transform: scale(1.07) translateY(-3px) !important; }
.products-section .product-item h4 { padding-inline: 5px; color: #30483a; font-size: .98rem; font-weight: 700; line-height: 1.4; }
.products-section .product-visible { animation: product-card-reveal .38s ease both; }
@keyframes product-card-reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) { .products-section { padding: 75px 0 85px; } .products-section .product-tabs { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; border-radius: 13px; } .products-section .product-tabs::-webkit-scrollbar { display: none; } .products-section .tab-btn { flex: 0 0 auto; } .products-section .product-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .products-section .product-item { padding: 8px 8px 14px; } .products-section .product-img-wrapper { height: 190px; } }
@media (max-width: 430px) { .products-section .product-gallery { grid-template-columns: 1fr; } .products-section .product-img-wrapper { height: 250px; } }

/* Strategic collaboration */
.innovation-section { position: relative; overflow: hidden; padding: 105px 0 110px !important; background: linear-gradient(180deg, #f8faf7 0%, #fff 38%, #f8f5ec 100%); }
.innovation-section::before { content: ''; position: absolute; width: 480px; height: 480px; top: -340px; left: -210px; border: 1px solid rgba(30,61,47,.07); border-radius: 50%; box-shadow: 0 0 0 60px rgba(30,61,47,.018), 0 0 0 120px rgba(204,160,60,.02); pointer-events: none; }
.innovation-section > .container { position: relative; z-index: 1; }
.strategic-intro { max-width: 850px; margin: 0 auto; }
.strategic-kicker { display: inline-block; margin-bottom: 14px; color: #9b7729; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.strategic-intro h2 { margin-bottom: 14px; font-size: clamp(2.25rem, 5vw, 3.45rem); letter-spacing: -.035em; line-height: 1.08; }
.strategic-intro h4 { max-width: 690px; margin: 0 auto !important; color: #46534b !important; font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 600; line-height: 1.55; }
.strategic-intro > p { margin-top: 10px !important; color: #7a847e; font-size: .95rem; }
.strategic-intro .hero-buttons { margin-top: 25px !important; }
.strategic-intro .btn { display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 13px 24px; border-radius: 11px; box-shadow: 0 12px 26px rgba(30,61,47,.18); }
.strategic-intro .btn i { transition: transform .25s ease; }
.strategic-intro .btn:hover i { transform: translateX(5px); }
.innovation-section .pdf-strategic-grid { gap: 24px; margin-top: 40px; }
.innovation-section .pdf-strat-card { position: relative; border: 1px solid rgba(30,61,47,.1); border-radius: 20px; background: rgba(255,255,255,.94); box-shadow: 0 14px 40px rgba(30,61,47,.08); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.innovation-section .pdf-strat-card:hover { border-color: rgba(204,160,60,.42); transform: translateY(-7px); box-shadow: 0 24px 55px rgba(30,61,47,.14); }
.innovation-section .pdf-strat-header { min-height: 92px; padding: 20px 23px; background: linear-gradient(120deg, #183f2f, #286248); }
.innovation-section .pdf-strat-num-box { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.25); border-radius: 11px; color: #f0cc73; background: rgba(255,255,255,.1); font-size: .82rem; letter-spacing: .08em; }
.innovation-section .pdf-strat-icon-box { width: 42px; height: 42px; display: grid; place-items: center; margin-right: 13px; border-radius: 50%; color: #f0cc73; background: rgba(255,255,255,.09); font-size: 1.05rem; }
.innovation-section .pdf-strat-header h3 { font-size: clamp(1.12rem, 2vw, 1.35rem); line-height: 1.3; }
.innovation-section .pdf-strat-body { flex: 1; gap: 22px; padding: 25px; align-items: center; }
.innovation-section .pdf-strat-body img { width: 142px; height: 176px; border: 0; border-radius: 14px; object-fit: cover; box-shadow: 0 10px 25px rgba(30,61,47,.14); }
.innovation-section .pdf-strat-content { display: grid; gap: 8px; }
.innovation-section .strat-point { align-items: flex-start; margin: 0; padding: 10px 11px; border-radius: 10px; text-align: left; transition: background .2s ease; }
.innovation-section .strat-point:hover { background: #f1f5f1; }
.innovation-section .strat-point i { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 27px; margin: 0 10px 0 0; border-radius: 50%; color: var(--heritage-green); background: #e7f0e8; font-size: .72rem; }
.innovation-section .strat-point p { color: #58645d; font-size: .86rem; line-height: 1.55; text-align: left; }
@media (max-width: 768px) { .innovation-section { padding: 75px 0 80px !important; } .strategic-intro { padding-inline: 5px; } .innovation-section .pdf-strategic-grid { gap: 18px; } .innovation-section .pdf-strat-header { min-height: 82px; padding: 17px; } .innovation-section .pdf-strat-body { align-items: stretch; padding: 18px; text-align: left; } .innovation-section .pdf-strat-body img { width: 100%; height: 220px; } }

/* Products we develop */
.products-develop-section { position: relative; margin-top: 95px !important; padding-top: 88px !important; border-top: 1px solid rgba(30,61,47,.1) !important; }
.products-develop-section::before { content: ''; position: absolute; top: -1px; left: 50%; width: 80px; height: 3px; border-radius: 99px; background: var(--ceylon-gold); transform: translateX(-50%); }
.products-portfolio-header { max-width: 850px; margin-right: auto; margin-left: auto; }
.products-portfolio-header .portfolio-label { padding: 8px 16px !important; border-color: rgba(155,119,41,.45) !important; color: #8d6c24 !important; background: rgba(204,160,60,.07); font-size: .7rem !important; letter-spacing: .14em !important; }
.products-portfolio-header h3 { margin-bottom: 14px !important; color: var(--heritage-green); font-size: clamp(2.1rem, 4.5vw, 3.2rem); letter-spacing: -.03em; }
.products-portfolio-header .section-subheading { max-width: 720px !important; color: #69746d !important; font-size: 1rem !important; line-height: 1.75; }
.products-develop-section .product-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; padding: 0; counter-reset: product-category; }
.products-develop-section .product-cat-card { height: 285px; padding: 0; align-items: stretch; border: 1px solid rgba(255,255,255,.65); border-radius: 19px; background-position: center; box-shadow: 0 12px 32px rgba(30,61,47,.11); counter-increment: product-category; isolation: isolate; }
.products-develop-section .product-cat-card::before { top: 0; height: 100%; background: linear-gradient(180deg, rgba(5,17,11,.04) 20%, rgba(5,20,12,.88) 100%); transition: background .35s ease; }
.products-develop-section .product-cat-card::after { content: counter(product-category, decimal-leading-zero); position: absolute; top: 16px; right: 17px; z-index: 2; padding: 6px 8px; border: 1px solid rgba(255,255,255,.32); border-radius: 8px; color: rgba(255,255,255,.92); background: rgba(8,25,16,.35); backdrop-filter: blur(7px); font-size: .65rem; font-weight: 700; letter-spacing: .1em; }
.products-develop-section .product-cat-card:hover { border-color: rgba(204,160,60,.8); box-shadow: 0 22px 45px rgba(30,61,47,.2); transform: translateY(-8px); }
.products-develop-section .product-cat-card:hover::before { background: linear-gradient(180deg, rgba(5,17,11,0) 15%, rgba(5,20,12,.94) 100%); }
.products-develop-section .prod-text-content { position: relative; z-index: 2; min-height: 102px; margin-top: auto; padding: 20px 54px 20px 20px; display: flex; align-items: center; gap: 13px; text-align: left; }
.products-develop-section .product-cat-card i { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 38px; margin: 0; border: 1px solid rgba(240,204,115,.36); border-radius: 50%; color: #f0cc73; background: rgba(204,160,60,.12); font-size: 1rem; }
.products-develop-section .product-cat-card:hover i { transform: scale(1.08); }
.products-develop-section .product-cat-card span { font-size: 1.08rem; line-height: 1.35; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.products-cta-block { max-width: 800px; margin: 55px auto 0 !important; padding: 34px !important; border: 1px solid rgba(30,61,47,.1); border-radius: 20px; background: linear-gradient(125deg, rgba(255,255,255,.92), rgba(240,245,240,.9)); box-shadow: 0 15px 38px rgba(30,61,47,.08); }
.products-cta-block h4 { margin-bottom: 22px !important; color: var(--heritage-green) !important; font-size: 1.35rem; }
.products-cta-block .hero-buttons { flex-direction: row; flex-wrap: wrap; }
.products-cta-block .btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 10px; }
.products-cta-block .btn i { transition: transform .25s ease; }
.products-cta-block .btn:hover .fa-arrow-right { transform: translateX(4px); }
@media (max-width: 992px) { .products-develop-section .product-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .products-develop-section { margin-top: 65px !important; padding-top: 65px !important; } .products-develop-section .product-category-grid { grid-template-columns: 1fr; gap: 15px; } .products-develop-section .product-cat-card { height: 245px; } .products-cta-block { margin-top: 35px !important; padding: 26px 18px !important; } .products-cta-block .hero-buttons { flex-direction: column; } .products-cta-block .btn { width: 100%; } }

.biz-mock-tagline { margin: -5px 0 15px; color: #9b7729; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.biz-card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.biz-action-btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 10px 19px; border: 1px solid var(--heritage-green); border-radius: 999px; font: inherit; font-size: .8rem; font-weight: 700; line-height: 1; cursor: pointer; transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease; }
.biz-see-more { color: #fff; background: var(--heritage-green); text-transform: uppercase; }
.biz-see-more:hover { color: #fff; background: #286248; transform: translateY(-2px); box-shadow: 0 11px 24px rgba(30,61,47,.23); }
.biz-inquiry { color: #fff; background: var(--heritage-green); box-shadow: 0 8px 18px rgba(30,61,47,.17); }
.biz-inquiry:hover { color: #fff; background: #286248; box-shadow: 0 11px 24px rgba(30,61,47,.23); transform: translateY(-2px); }
.biz-inquiry i { font-size: .72rem; transition: transform .25s ease; }
.biz-inquiry:hover i { transform: translateX(3px); }
.biz-services-title { margin: 20px 0 12px; color: var(--heritage-green); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

/* Get in touch */
.contact-section { position: relative; padding: 100px 0 110px; overflow: hidden; background: linear-gradient(145deg, #eef3ed 0%, #faf7ef 52%, #f2eee2 100%) !important; }
.contact-section::before { content: ''; position: absolute; width: 520px; height: 520px; left: -350px; bottom: -290px; border: 1px solid rgba(30,61,47,.07); border-radius: 50%; box-shadow: 0 0 0 70px rgba(30,61,47,.02), 0 0 0 140px rgba(204,160,60,.02); pointer-events: none; }
.contact-section .contact-container { position: relative; z-index: 1; align-items: flex-start; gap: clamp(2.5rem, 6vw, 5.5rem); }
.contact-section .contact-info { padding-top: 18px; }
.contact-kicker, .contact-form-header > span { display: block; margin-bottom: 10px; color: #9b7729; font-size: .7rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.contact-section .contact-info > h3 { margin-bottom: 12px !important; color: var(--heritage-green) !important; font-size: clamp(2.3rem, 5vw, 3.35rem) !important; line-height: 1.05; }
.contact-company { margin-bottom: 30px !important; color: #4f5c54 !important; font-size: 1.05rem !important; }
.contact-section .contact-list { gap: 12px !important; margin-bottom: 28px !important; }
.contact-section .contact-list li { align-items: center !important; gap: 14px !important; min-height: 68px; padding: 11px 14px; border: 1px solid rgba(30,61,47,.08); border-radius: 14px; background: rgba(255,255,255,.68); transition: border-color .25s ease, transform .25s ease, background .25s ease; }
.contact-section .contact-list li:hover { border-color: rgba(204,160,60,.4); background: #fff; transform: translateX(4px); }
.contact-section .contact-list li > div { width: 42px !important; height: 42px !important; background: #eaf1eb !important; }
.contact-section .contact-list li > span, .contact-section .contact-list li > a { padding-top: 0 !important; color: #536057 !important; font-size: .94rem !important; line-height: 1.5; }
.contact-section .contact-list li > a:hover { color: var(--heritage-green) !important; }
.contact-section .social-links { gap: 10px; margin-top: 0 !important; }
.contact-section .social-icon { width: 43px; height: 43px; border: 1px solid rgba(30,61,47,.1); background: #fff; color: var(--heritage-green); box-shadow: 0 6px 16px rgba(30,61,47,.07); }
.contact-section .social-icon:hover { color: #fff; background: var(--heritage-green); transform: translateY(-3px); }
.contact-gallery { display: grid; grid-template-columns: 1.35fr 1fr; gap: 10px; height: 250px; margin-top: 24px; padding: 5px; overflow: hidden; border-radius: 18px; background: rgba(255,255,255,.8); box-shadow: 0 14px 36px rgba(30,61,47,.1); }
.contact-gallery figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 13px; }
.contact-gallery img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.contact-gallery-main img { object-position: center; }
.contact-gallery-secondary img { object-position: center; }
.contact-gallery figure:hover img { transform: scale(1.035); }
.contact-section .map-placeholder { height: 250px; margin-top: 24px !important; overflow: hidden; border: 5px solid rgba(255,255,255,.8); border-radius: 18px; box-shadow: 0 14px 36px rgba(30,61,47,.1); }
.contact-section .map-placeholder iframe { height: 100%; }
.contact-section .contact-form-wrapper { padding: clamp(25px, 4vw, 42px); border: 1px solid rgba(30,61,47,.1); border-radius: 22px; background: rgba(255,255,255,.92); box-shadow: 0 26px 70px rgba(30,61,47,.13); }
.contact-form-header { margin-bottom: 30px; padding-bottom: 24px; border-bottom: 1px solid #e8ece9; }
.contact-form-header h4 { margin: 0 0 8px; color: var(--heritage-green); font-size: clamp(1.5rem, 3vw, 2rem); }
.contact-form-header p { margin: 0; color: #707b74; font-size: .92rem; line-height: 1.6; }
.contact-section .form-group { margin-bottom: 18px; }
.contact-section .form-group.row { gap: 14px; }
.contact-section label { margin-bottom: 7px; color: #425148; font-size: .78rem; font-weight: 700; letter-spacing: .025em; }
.contact-section input, .contact-section select, .contact-section textarea { min-height: 49px; padding: 12px 14px; border: 1px solid #d8dfda; border-radius: 10px; color: #263c31; background: #fbfcfa; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-section textarea { min-height: 125px; resize: vertical; }
.contact-section input:focus, .contact-section select:focus, .contact-section textarea:focus { outline: 0; border-color: #aa8532; background: #fff; box-shadow: 0 0 0 4px rgba(204,160,60,.12); }
.contact-section .contact-form .btn { min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 12px; border-radius: 11px; font-weight: 700; box-shadow: 0 12px 25px rgba(30,61,47,.2); }
.contact-section .contact-form .btn i { transition: transform .25s ease; }
.contact-section .contact-form .btn:hover i { transform: translateX(5px); }
@media (max-width: 992px) { .contact-section { padding: 75px 0 85px; } .contact-section .contact-container { flex-direction: column; } .contact-section .contact-info, .contact-section .contact-form-wrapper { width: 100%; } .contact-section .map-placeholder { height: 300px; } }
@media (max-width: 600px) { .contact-section { padding: 62px 0 70px; } .contact-section .contact-info { padding-top: 0; } .contact-section .contact-list li { min-height: 62px; } .contact-gallery { grid-template-columns: 1fr; grid-template-rows: 1.25fr 1fr; height: 390px; } .contact-section .map-placeholder { height: 230px; } .contact-section .contact-form-wrapper { padding: 24px 18px; border-radius: 18px; } .contact-section .form-group.row { flex-direction: column; gap: 18px; } }

/* Refined cinematic hero scroll experience */
.elevator-hero {
    margin-bottom: 0;
}

.elevator-hero + .group-wheel-section {
    position: relative;
    margin-top: -1px;
}

@media (min-width: 769px) {
    .elevator-hero { height: 220vh; }
    .elevator-sticky { --hero-progress: 0; }
    .elevator-door { backface-visibility: hidden; }
    .door-top {
        border-bottom: 1px solid rgba(213, 178, 92, .75);
        background-image: radial-gradient(circle at 50% 115%, rgba(255,255,255,.12), transparent 42%), linear-gradient(120deg, rgba(255,255,255,.035), transparent 38%);
        box-shadow: 0 10px 35px rgba(0,0,0,.15);
    }
    .door-bottom {
        border-top: 1px solid rgba(213, 178, 92, .75);
        background-image: radial-gradient(circle at 50% -15%, rgba(103,127,95,.14), transparent 42%);
        box-shadow: 0 -10px 35px rgba(0,0,0,.12);
    }
    .door-text { line-height: 1.05; text-wrap: balance; text-shadow: 0 2px 18px rgba(0,0,0,.08); }
}

.door-kicker { display: block; margin-bottom: .6rem; color: rgba(255,255,255,.72); font-size: .7rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.scroll-indicator { margin-top: 2.25rem; display: inline-flex; flex-direction: column; align-items: center; gap: .65rem; transition: opacity .3s ease, transform .3s ease; }
.scroll-indicator p { margin: 0; }
.scroll-mouse { width: 25px; height: 39px; border: 1px solid currentColor; border-radius: 99px; display: grid; place-items: start center; padding-top: 7px; }
.scroll-mouse span { width: 3px; height: 7px; border-radius: 3px; background: currentColor; animation: scroll-wheel 1.8s ease-in-out infinite; }
@keyframes scroll-wheel { 0% { transform: translateY(0); opacity: 0; } 25% { opacity: 1; } 75%, 100% { transform: translateY(14px); opacity: 0; } }
.hero-scroll-progress { position: absolute; right: clamp(1.25rem, 3vw, 3rem); top: 50%; z-index: 5; display: flex; align-items: center; gap: .75rem; color: rgba(255,255,255,.9); font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; transform: translateY(-50%); mix-blend-mode: difference; }
.progress-track { position: relative; width: 2px; height: 88px; overflow: hidden; background: rgba(255,255,255,.28); }
.progress-fill { position: absolute; inset: 0; background: #fff; transform: scaleY(var(--hero-progress)); transform-origin: top; }
.progress-number { min-width: 2.3em; font-variant-numeric: tabular-nums; }
.progress-label { writing-mode: vertical-rl; transform: rotate(180deg); }

@media (max-width: 768px) { .hero-scroll-progress, .door-kicker { display: none; } }

@media (prefers-reduced-motion: reduce) {
    .businesses-section .biz-mock-card.is-ecosystem-target {
        animation: none;
    }
}

/* Business Network polish — preserves the original alternating layout */
.businesses-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 105px !important;
    background: linear-gradient(180deg, #faf9f4 0%, #f1f4ef 100%);
}

.businesses-section::before {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    top: -280px;
    right: -180px;
    border: 1px solid rgba(30, 61, 47, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(30, 61, 47, 0.018), 0 0 0 120px rgba(204, 160, 60, 0.016);
    pointer-events: none;
}

.businesses-section > .container:first-child {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin-bottom: 50px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.businesses-section > .container:first-child .small-title {
    display: inline-block;
    margin-bottom: 8px;
    color: #987322 !important;
    font-size: 0.75rem;
    letter-spacing: 0.16em !important;
}

.businesses-section > .container:first-child h2 {
    margin-top: 5px !important;
    color: var(--heritage-green) !important;
    font-size: clamp(2.2rem, 5vw, 3.3rem);
}

.businesses-section > .container:first-child p {
    color: #667169 !important;
    font-size: 1rem;
    line-height: 1.75;
}

.businesses-section .biz-mock-container {
    position: relative;
    z-index: 1;
    gap: 30px;
    max-width: 1100px;
    padding-bottom: 0;
}

.businesses-section .biz-mock-card,
.businesses-section .biz-mock-card:nth-child(even) {
    min-height: 365px;
    border: 1px solid rgba(30, 61, 47, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 38px rgba(30, 61, 47, 0.075);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.businesses-section .biz-mock-card:hover {
    transform: translateY(-5px);
    border-color: rgba(204, 160, 60, 0.35);
    box-shadow: 0 22px 55px rgba(30, 61, 47, 0.13);
}

.businesses-section .biz-mock-img,
.businesses-section .biz-mock-card:nth-child(even) .biz-mock-img {
    flex-basis: 43%;
    overflow: visible;
    margin: 16px 0 16px 16px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(145deg, #edf3ee, #f7f3e9);
}

.businesses-section .biz-mock-card:nth-child(even) .biz-mock-img {
    margin: 16px 16px 16px 0;
}

.businesses-section .biz-bg-logo {
    padding: 46px;
    border-radius: 14px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    filter: saturate(0.94);
    transition: transform 0.4s ease;
}

.businesses-section .biz-mock-card:hover .biz-bg-logo {
    transform: scale(1.04);
}

.businesses-section .biz-mock-logo,
.businesses-section .biz-mock-card:nth-child(even) .biz-mock-img .biz-mock-logo {
    width: 104px;
    height: 104px;
    right: -52px;
    left: auto;
    padding: 13px;
    border: 1px solid rgba(30, 61, 47, 0.08);
    box-shadow: 0 10px 28px rgba(30, 61, 47, 0.14);
    overflow: hidden;
    z-index: 12;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.businesses-section .biz-mock-logo:hover {
    transform: translateY(-50%) scale(1.08) rotate(2deg);
    border-color: rgba(204, 160, 60, 0.65);
    box-shadow: 0 16px 38px rgba(30, 61, 47, 0.2), 0 0 0 5px rgba(204, 160, 60, 0.14);
}

.businesses-section .biz-mock-card:nth-child(even) .biz-mock-img .biz-mock-logo {
    right: auto;
    left: -52px;
}

.businesses-section .biz-mock-content {
    padding: 42px 44px 42px 82px;
}

.businesses-section .biz-mock-card:nth-child(even) .biz-mock-content {
    padding: 42px 82px 42px 44px;
}

.businesses-section .biz-mock-header {
    gap: 13px;
    margin-bottom: 19px;
}

.businesses-section .biz-mock-num {
    min-width: 38px;
    color: #a17b29;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    -webkit-text-stroke: 0;
}

.businesses-section .biz-mock-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 11px;
    color: var(--heritage-green);
    background: #edf3ee;
    font-size: 1rem;
}

.businesses-section .biz-mock-header h3 {
    color: var(--heritage-green);
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    line-height: 1.3;
}

.businesses-section .biz-mock-desc {
    margin-bottom: 21px;
    color: #626d66;
    font-size: 0.96rem;
    line-height: 1.68;
}

.businesses-section .biz-mock-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}

.businesses-section .biz-mock-list li {
    padding-left: 22px;
    color: #455148;
    font-size: 0.82rem;
    line-height: 1.45;
}

.businesses-section .biz-mock-list li::before {
    top: 1px;
    color: #9b7729;
    font-size: 0.72rem;
}

@media (max-width: 992px) {
    .businesses-section .biz-mock-card,
    .businesses-section .biz-mock-card:nth-child(even) {
        min-height: 0;
    }

    .businesses-section .biz-mock-img,
    .businesses-section .biz-mock-card:nth-child(even) .biz-mock-img {
        flex-basis: 250px;
        min-height: 250px;
        margin: 16px 16px 0 !important;
    }

    .businesses-section .biz-mock-logo,
    .businesses-section .biz-mock-card:nth-child(even) .biz-mock-img .biz-mock-logo {
        top: auto;
        right: 28px;
        bottom: -48px;
        left: auto;
        transform: none;
    }

    .businesses-section .biz-mock-logo:hover {
        transform: translateY(-4px) scale(1.06) rotate(2deg);
    }

    .businesses-section .biz-mock-content {
        padding: 64px 34px 38px;
    }

    .businesses-section .biz-mock-card:nth-child(even) .biz-mock-content {
        padding: 64px 34px 38px;
    }
}

@media (max-width: 600px) {
    .businesses-section {
        padding: 72px 0 80px !important;
    }

    .businesses-section > .container:first-child {
        margin-bottom: 36px !important;
    }

    .businesses-section .biz-mock-container {
        gap: 20px;
    }

    .businesses-section .biz-mock-card,
    .businesses-section .biz-mock-card:nth-child(even) {
        border-radius: 16px;
    }

    .businesses-section .biz-mock-img,
    .businesses-section .biz-mock-card:nth-child(even) .biz-mock-img {
        flex-basis: 205px;
        min-height: 205px;
        border-radius: 11px;
    }

    .businesses-section .biz-bg-logo {
        padding: 32px 48px;
    }

    .businesses-section .biz-mock-logo,
    .businesses-section .biz-mock-card:nth-child(even) .biz-mock-img .biz-mock-logo {
        width: 86px;
        height: 86px;
        right: 18px;
        bottom: -40px;
    }

    .businesses-section .biz-mock-content {
        padding: 54px 22px 28px;
    }

    .businesses-section .biz-mock-card:nth-child(even) .biz-mock-content {
        padding: 54px 22px 28px;
    }

    .businesses-section .biz-mock-header {
        display: grid;
        grid-template-columns: 28px 38px minmax(0, 1fr);
        gap: 8px;
    }

    .businesses-section .biz-mock-num {
        min-width: 0;
    }

    .businesses-section .biz-mock-icon {
        width: 38px;
        height: 38px;
    }

    .businesses-section .biz-mock-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }
}

/* Our Business Network — compact modern card grid (disabled; original layout restored) */
/* Keep every Business Network image panel uniform without changing the card layout. */
.businesses-section .biz-mock-img,
.businesses-section .biz-mock-card:nth-child(even) .biz-mock-img {
    height: 333px;
    align-self: center;
}

/* Photographs should fill their panel instead of leaving side bars. */
.businesses-section #biz-leisure .biz-bg-logo,
.businesses-section #biz-organic-rd .biz-bg-logo,
.businesses-section #biz-puree .biz-bg-logo,
.businesses-section #biz-green .biz-bg-logo,
.businesses-section #biz-fizzy .biz-bg-logo,
.businesses-section #biz-vinery .biz-bg-logo,
.businesses-section #biz-liquid .biz-bg-logo {
    padding: 0;
    object-fit: cover;
}



@media (max-width: 992px) {
    .businesses-section .biz-mock-img,
    .businesses-section .biz-mock-card:nth-child(even) .biz-mock-img {
        height: 250px;
        align-self: flex-start;
    }
}

@media (max-width: 600px) {
    .businesses-section .biz-mock-img,
    .businesses-section .biz-mock-card:nth-child(even) .biz-mock-img {
        height: 205px;
        align-self: stretch;
    }
}

@media not all {
.businesses-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 110px !important;
    background: linear-gradient(180deg, #f7f8f4 0%, #eef3ee 100%);
}

.businesses-section::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    top: -250px;
    left: -180px;
    border: 1px solid rgba(30, 61, 47, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(30, 61, 47, 0.02), 0 0 0 110px rgba(204, 160, 60, 0.018);
    pointer-events: none;
}

.business-network-header {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto 52px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.business-network-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #987322;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.business-network-header h2 {
    margin: 0;
    color: var(--heritage-green);
    font-size: clamp(2.2rem, 5vw, 3.35rem);
    font-weight: 700;
}

.business-network-header > p {
    max-width: 680px;
    margin: 15px auto 0;
    color: #667169;
    font-size: 1rem;
    line-height: 1.7;
}

.business-network-summary {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 7px;
    border: 1px solid rgba(30, 61, 47, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.business-network-summary span {
    padding: 7px 12px;
    color: #526057;
    font-size: 0.78rem;
    font-weight: 600;
}

.business-network-summary strong,
.business-network-summary i {
    margin-right: 5px;
    color: var(--heritage-green);
}

.biz-mock-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 1160px;
    padding-bottom: 0;
}

.biz-mock-card,
.biz-mock-card:nth-child(even) {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    min-height: 330px;
    overflow: hidden;
    border: 1px solid rgba(30, 61, 47, 0.09);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(30, 61, 47, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.biz-mock-card:hover {
    transform: translateY(-5px);
    border-color: rgba(204, 160, 60, 0.38);
    box-shadow: 0 18px 42px rgba(30, 61, 47, 0.12);
}

.biz-mock-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: 260px minmax(0, 1fr);
}

.biz-mock-img,
.biz-mock-card:nth-child(even) .biz-mock-img {
    width: auto;
    min-width: 0;
    height: auto;
    margin: 0 !important;
    border: 0;
    border-right: 1px solid #e8eee9;
    border-radius: 0;
    background: linear-gradient(145deg, #edf3ee, #f8f5eb);
}

.biz-bg-logo {
    padding: 30px 24px;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    filter: saturate(0.92);
    transition: transform 0.35s ease;
}

.biz-mock-card:hover .biz-bg-logo {
    transform: scale(1.045);
}

.biz-mock-logo,
.biz-mock-card:nth-child(even) .biz-mock-img .biz-mock-logo {
    display: none;
}

.biz-mock-content {
    justify-content: flex-start;
    padding: 27px 25px;
}

.biz-mock-header {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    column-gap: 11px;
    margin-bottom: 15px;
}

.biz-mock-num {
    grid-column: 1;
    align-self: center;
    color: #a27d2d;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    -webkit-text-stroke: 0;
}

.biz-mock-icon {
    grid-column: 1;
    grid-row: 2;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    color: var(--heritage-green);
    background: #edf3ee;
    font-size: 0.9rem;
}

.biz-mock-header h3 {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--heritage-green);
    font-size: 1.18rem;
    line-height: 1.35;
}

.biz-mock-desc {
    margin-bottom: 18px;
    color: #667069;
    font-size: 0.88rem;
    line-height: 1.62;
}

.biz-mock-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.biz-mock-list li {
    padding-left: 20px;
    color: #435047;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.45;
}

.biz-mock-list li::before {
    top: 1px;
    color: #9b7729;
    font-size: 0.68rem;
}

@media (max-width: 1020px) {
    .biz-mock-container {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .biz-mock-card:last-child {
        grid-column: auto;
        grid-template-columns: 180px minmax(0, 1fr);
    }
}

@media (max-width: 620px) {
    .businesses-section {
        padding: 74px 0 82px !important;
    }

    .business-network-header {
        margin-bottom: 38px;
    }

    .business-network-summary {
        border-radius: 15px;
    }

    .business-network-summary span {
        padding: 5px 7px;
    }

    .biz-mock-card,
    .biz-mock-card:nth-child(even),
    .biz-mock-card:last-child {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .biz-mock-img,
    .biz-mock-card:nth-child(even) .biz-mock-img {
        flex: 0 0 175px;
        min-height: 175px;
        border-right: 0;
        border-bottom: 1px solid #e8eee9;
    }

    .biz-bg-logo {
        padding: 24px 50px;
    }

    .biz-mock-content {
        padding: 24px 21px 26px;
    }

    .biz-mock-list {
        grid-template-columns: 1fr;
    }
}

}

/* Partner modal — simple, neutral layout */
.partner-modal {
    background: rgba(20, 28, 23, 0.58);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.partner-modal-content {
    width: min(92vw, 680px);
    max-width: 680px;
    max-height: 88vh;
    border: 1px solid rgba(30, 61, 47, 0.1);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(13, 28, 20, 0.25);
}

.partner-modal-body {
    display: block;
    min-height: 0;
}

.partner-modal-header {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    padding: 28px 70px 24px 28px;
    color: var(--charcoal);
    background: #fff;
    border-bottom: 1px solid #edf0ed;
}

.partner-modal-header::before,
.partner-modal-header::after {
    display: none;
}

.partner-modal-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    flex: 0 0 54px;
    margin: 0;
    border: 1px solid #e1e9e3;
    border-radius: 14px;
    color: var(--heritage-green);
    background: #f1f5f2;
    box-shadow: none;
    font-size: 1.3rem;
}

.partner-modal-eyebrow {
    margin-bottom: 4px;
    color: #9a7627;
    font-size: 0.62rem;
}

.partner-modal-header h2 {
    margin: 0 0 3px;
    color: var(--heritage-green);
    font-size: clamp(1.3rem, 3vw, 1.65rem);
}

.partner-modal-header p {
    margin: 0;
    color: #6b746e;
    font-size: 0.85rem;
    line-height: 1.45;
}

.partner-modal-assurance {
    display: none;
}

.partner-modal-detail {
    display: block;
    padding: 28px;
    background: #fff;
}

#partner-modal-body .pc-content > p:first-child {
    margin-bottom: 20px;
    color: #58625c;
    font-size: 0.94rem;
    line-height: 1.65;
}

#partner-modal-body .pc-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 22px;
}

#partner-modal-body .pc-benefits li {
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #e8ede9;
    border-radius: 9px;
    background: #f7f9f7;
    color: #3f4d45;
    font-size: 0.8rem;
}

#partner-modal-body .pc-benefits li i {
    width: 19px;
    height: 19px;
    flex-basis: 19px;
    background: #e1ece4;
    color: var(--heritage-green);
}

#partner-modal-body .pc-cta {
    min-height: 50px;
    border-radius: 9px;
    background: var(--heritage-green);
    box-shadow: none;
}

#partner-modal-body .pc-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(30, 61, 47, 0.17);
}

#partner-modal-body .pc-note {
    margin-top: 10px !important;
    color: #858d88 !important;
}

.partner-modal-close {
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    color: #657069;
    background: #f3f5f3;
    border: 1px solid #e5e9e6;
}

.partner-modal-close:hover {
    color: var(--heritage-green);
    background: #eaf0eb;
    transform: none;
}

@media (max-width: 600px) {
    .partner-modal-content {
        border-radius: 20px 20px 12px 12px;
    }

    .partner-modal-header {
        display: flex;
        align-items: center;
        padding: 23px 58px 20px 20px;
    }

    .partner-modal-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        flex-basis: 48px;
    }

    .partner-modal-detail {
        padding: 22px 20px 24px;
    }

    #partner-modal-body .pc-benefits {
        grid-template-columns: 1fr;
    }

    .partner-modal-close {
        top: 17px;
        right: 16px;
    }
}

/* Partner modal — modern split-panel treatment */
.partner-modal {
    background: rgba(8, 25, 17, 0.76);
    backdrop-filter: blur(12px) saturate(0.85);
    -webkit-backdrop-filter: blur(12px) saturate(0.85);
}

.partner-modal-content {
    width: min(94vw, 880px);
    max-width: 880px;
    max-height: min(88vh, 680px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 26px;
    background: #fffdf9;
    box-shadow: 0 38px 110px rgba(3, 18, 11, 0.42);
}

.partner-modal-body {
    display: grid;
    grid-template-columns: minmax(245px, 0.78fr) minmax(0, 1.65fr);
    min-height: 510px;
}

.partner-modal-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 48px 34px 34px;
    background: linear-gradient(155deg, #173e2e 0%, #20563e 72%, #2c694c 100%);
}

.partner-modal-header::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    top: -62px;
    left: -58px;
    border: 1px solid rgba(236, 199, 105, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 24px rgba(255, 255, 255, 0.025), 0 0 0 48px rgba(255, 255, 255, 0.018);
}

.partner-modal-header::after {
    width: 180px;
    height: 180px;
    right: -95px;
    bottom: -85px;
    border-color: rgba(236, 199, 105, 0.2);
}

.partner-modal-icon {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    margin-bottom: 36px;
    color: #efcb72;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(239, 203, 114, 0.24);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.partner-modal-eyebrow {
    margin-bottom: 10px;
    color: #efcb72;
}

.partner-modal-header h2 {
    margin-bottom: 13px;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.partner-modal-header p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.partner-modal-assurance {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding-top: 32px;
}

.partner-modal-assurance span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.75rem;
    font-weight: 600;
}

.partner-modal-assurance i {
    width: 18px;
    margin-right: 7px;
    color: #efcb72;
    text-align: center;
}

.partner-modal-detail {
    display: flex;
    align-items: center;
    padding: 44px 42px 38px;
    background: radial-gradient(circle at 100% 0, rgba(204, 160, 60, 0.08), transparent 35%), #fffdf9;
}

.partner-modal-detail > .partner-card-expanded,
.partner-modal-detail .pc-content {
    width: 100%;
}

#partner-modal-body .pc-content > p:first-child {
    margin-bottom: 26px;
    color: #536057;
    font-size: 0.98rem;
    line-height: 1.75;
}

#partner-modal-body .pc-benefits {
    gap: 9px;
    margin-bottom: 30px;
}

#partner-modal-body .pc-benefits li {
    min-height: 52px;
    padding: 12px 13px;
    border: 1px solid rgba(30, 61, 47, 0.06);
    border-radius: 12px;
    background: #f2f6f1;
    font-size: 0.82rem;
}

#partner-modal-body .pc-cta {
    position: relative;
    min-height: 56px;
    padding: 14px 52px 14px 20px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(105deg, #1d4b37, #286247);
    box-shadow: 0 12px 25px rgba(30, 61, 47, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#partner-modal-body .pc-cta::after {
    content: '\2192';
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 1.2rem;
    transform: translateY(-52%);
    transition: right 0.25s ease;
}

#partner-modal-body .pc-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(30, 61, 47, 0.27);
}

#partner-modal-body .pc-cta:hover::after {
    right: 16px;
}

#partner-modal-body .pc-popup-actions {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    gap: 12px;
}

#partner-modal-body .pc-popup-actions .btn {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    margin: 0;
    white-space: nowrap;
}

@media (max-width: 480px) {
    #partner-modal-body .pc-popup-actions { gap: 8px; }
    #partner-modal-body .pc-popup-actions .btn { padding-left: 12px; padding-right: 12px; font-size: .82rem; }
    #partner-modal-body .pc-popup-actions .pc-cta { padding-right: 34px; }
    #partner-modal-body .pc-popup-actions .pc-cta::after { right: 12px; }
}

#partner-modal-body .pc-note {
    color: #79827d !important;
    line-height: 1.5;
}

.partner-modal-close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
}

@media (max-width: 720px) {
    .partner-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .partner-modal-content {
        width: 100%;
        max-height: 92vh;
        border-radius: 24px 24px 14px 14px;
    }

    .partner-modal-body {
        display: block;
        min-height: 0;
    }

    .partner-modal-header {
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        column-gap: 15px;
        padding: 27px 58px 25px 22px;
    }

    .partner-modal-icon {
        grid-row: 1 / span 2;
        width: 54px;
        height: 54px;
        min-height: 54px;
        margin: 0;
        border-radius: 14px;
    }

    .partner-modal-header h2 {
        margin-bottom: 5px;
        font-size: 1.4rem;
    }

    .partner-modal-header p {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .partner-modal-eyebrow {
        margin-bottom: 5px;
        font-size: 0.6rem;
    }

    .partner-modal-assurance {
        display: none;
    }

    .partner-modal-detail {
        padding: 25px 22px 27px;
    }

    #partner-modal-body .pc-content > p:first-child {
        margin-bottom: 19px;
        font-size: 0.91rem;
        line-height: 1.62;
    }

    #partner-modal-body .pc-benefits {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        margin-bottom: 21px;
    }

    #partner-modal-body .pc-benefits li {
        min-height: 47px;
        padding: 9px 10px;
        font-size: 0.73rem;
    }
}

@media (max-width: 430px) {
    #partner-modal-body .pc-benefits {
        grid-template-columns: 1fr;
    }
}

/* Our Ecosystem — premium wheel refresh */
.group-wheel-section {
    padding: 100px 0 110px;
    background: radial-gradient(circle at 50% 56%, rgba(204, 160, 60, 0.14) 0, rgba(204, 160, 60, 0.03) 31%, transparent 58%), linear-gradient(150deg, #f8f4e9 0%, #eef3eb 52%, #f8f5ec 100%);
}

.group-wheel-section::before,
.group-wheel-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.group-wheel-section::before {
    width: 420px;
    height: 420px;
    top: -250px;
    left: -170px;
    border: 1px solid rgba(30, 61, 47, 0.09);
    box-shadow: 0 0 0 55px rgba(30, 61, 47, 0.025), 0 0 0 110px rgba(30, 61, 47, 0.018);
}

.group-wheel-section::after {
    width: 260px;
    height: 260px;
    right: -120px;
    bottom: -100px;
    background: rgba(204, 160, 60, 0.07);
}

.group-wheel-section .section-header {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto 42px;
}

.ecosystem-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: #987322;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.group-wheel-section .section-header h2 {
    margin-bottom: 14px;
    color: var(--heritage-green);
    font-size: clamp(2.2rem, 5vw, 3.35rem);
}

.ecosystem-intro {
    max-width: 700px;
    margin: 0 auto;
    color: #56645c;
    font-size: 1.02rem;
    line-height: 1.75;
}

.ecosystem-guide {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    padding: 7px;
    border: 1px solid rgba(30, 61, 47, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 8px 30px rgba(30, 61, 47, 0.05);
}

.ecosystem-guide span {
    padding: 7px 11px;
    color: #526158;
    font-size: 0.76rem;
    font-weight: 600;
}

.ecosystem-guide i {
    margin-right: 6px;
    color: var(--ceylon-gold);
}

.wheel-container {
    isolation: isolate;
}

.wheel-container::before {
    content: '';
    position: absolute;
    inset: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(30, 61, 47, 0.08);
    box-shadow: inset 0 0 70px rgba(30, 61, 47, 0.04), 0 35px 80px rgba(30, 61, 47, 0.09);
}

.wheel-center {
    cursor: pointer;
    box-shadow: 0 16px 45px rgba(18, 58, 39, 0.2), 0 0 0 12px rgba(255, 255, 255, 0.75), 0 0 0 13px rgba(204, 160, 60, 0.25);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.wheel-center:hover,
.wheel-center:focus-visible {
    transform: scale(1.05);
    box-shadow: 0 20px 55px rgba(18, 58, 39, 0.25), 0 0 0 13px rgba(255, 255, 255, 0.85), 0 0 0 15px rgba(204, 160, 60, 0.35);
    outline: none;
}

.wheel {
    border-color: rgba(30, 61, 47, 0.25);
}

.wheel-item {
    border: 1px solid rgba(30, 61, 47, 0.1);
    box-shadow: 0 10px 28px rgba(26, 57, 42, 0.12);
}

.wheel-item:focus-visible {
    --item-scale: 1.1;
    outline: 4px solid rgba(204, 160, 60, 0.45);
    outline-offset: 4px;
    z-index: 20;
}

.wheel-popup {
    width: 350px;
    padding: 1.7rem;
    border: 1px solid rgba(204, 160, 60, 0.35);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(14, 45, 29, 0.24);
    text-align: left;
}

.popup-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #9b7729;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.popup-logo {
    width: auto;
    max-width: 150px;
    height: 52px;
}

.wheel-popup h3 {
    color: var(--heritage-green);
    font-size: 1.35rem;
}

.wheel-popup p {
    color: #5d675f;
    line-height: 1.6;
}

.popup-actions .btn {
    flex: 1;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.76rem;
}

.popup-actions .btn i {
    margin-left: 5px;
}

#popup-video-btn i {
    margin: 0 5px 0 0;
}

@media (max-width: 768px) {
    .group-wheel-section {
        padding: 72px 0 78px;
    }

    .group-wheel-section .section-header {
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .ecosystem-guide {
        border-radius: 16px;
    }

    .ecosystem-guide span {
        padding: 5px 7px;
    }

    .wheel-container {
        margin: 10px auto 0 !important;
    }

    .wheel-popup {
        text-align: left;
    }

    .popup-close-btn {
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        top: 13px;
        right: 13px;
        padding: 0;
        color: var(--heritage-green);
        background: #f0f4ef;
    }
}

/* Partner with CAP Group — section refresh */
.partner-with-us-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0 115px;
    background: linear-gradient(180deg, #fbfaf5 0%, #f2f5ef 100%);
}

.partner-with-us-section::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    top: -290px;
    right: -210px;
    border-radius: 50%;
    border: 1px solid rgba(204, 160, 60, 0.12);
    box-shadow: 0 0 0 60px rgba(204, 160, 60, 0.025), 0 0 0 120px rgba(30, 61, 47, 0.018);
    pointer-events: none;
}

.partner-with-us-section .container {
    position: relative;
    z-index: 1;
}

.partner-with-us-section .section-header {
    max-width: 900px;
    margin: 0 auto;
}

.partner-section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #987322;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.partner-with-us-section .section-header h2 {
    margin-bottom: 0;
    color: var(--heritage-green);
    font-size: clamp(2.2rem, 5vw, 3.35rem);
}

.partner-section-lead {
    max-width: 830px;
    margin: 17px auto 0;
    color: #2d4036;
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 600;
    line-height: 1.55;
}

.partner-section-intro {
    max-width: 780px;
    margin: 14px auto 0;
    color: #647068;
    font-size: 0.98rem;
    line-height: 1.75;
}

.partner-section-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 24px;
}

.partner-section-trust span {
    color: #3f5248;
    font-size: 0.82rem;
    font-weight: 700;
}

.partner-section-trust i {
    margin-right: 7px;
    color: var(--ceylon-gold);
}

.partner-grid {
    counter-reset: partner-card;
    gap: 18px;
    margin-top: 52px;
}

.partner-card {
    counter-increment: partner-card;
    min-height: 255px;
    border: 1px solid rgba(30, 61, 47, 0.09);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 35px rgba(26, 57, 42, 0.07);
    isolation: isolate;
}

.partner-card::before {
    content: counter(partner-card, decimal-leading-zero);
    position: absolute;
    top: 18px;
    right: 18px;
    color: rgba(30, 61, 47, 0.18);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.partner-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--heritage-green), var(--ceylon-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}

.partner-card:hover,
.partner-card:focus-within {
    border-color: rgba(204, 160, 60, 0.38);
    box-shadow: 0 20px 45px rgba(26, 57, 42, 0.13);
    transform: translateY(-7px);
}

.partner-card:hover::after,
.partner-card:focus-within::after {
    transform: scaleX(1);
}

.partner-card-collapsed {
    justify-content: flex-start;
    padding: 30px 24px 24px;
    text-align: left;
    align-items: flex-start;
}

.partner-card-collapsed:focus-visible {
    outline: 3px solid rgba(204, 160, 60, 0.5);
    outline-offset: -4px;
    border-radius: 18px;
}

.pc-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 15px;
    color: var(--ceylon-gold);
    font-size: 1.45rem;
    background: linear-gradient(145deg, #f2f6f1, #e7efe9);
    border: 1px solid rgba(30, 61, 47, 0.08);
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.partner-card:hover .pc-icon,
.partner-card:focus-within .pc-icon {
    color: #f2ce72;
    background: var(--heritage-green);
    transform: rotate(-4deg) scale(1.05);
}

.pc-title {
    min-height: 2.8em;
    margin-bottom: 8px;
    font-size: 1.12rem;
    line-height: 1.35;
}

.pc-teaser {
    flex-grow: 1;
    margin-bottom: 18px;
    color: #69736d;
    line-height: 1.55;
}

.pc-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: none;
    color: var(--heritage-green);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pc-indicator::before {
    content: 'View details';
}

.pc-indicator i {
    transform: rotate(-90deg);
    transition: transform 0.25s ease;
}

.partner-card:hover .pc-indicator i,
.partner-card:focus-within .pc-indicator i {
    transform: rotate(-90deg) translateY(4px);
}

@media (max-width: 1050px) {
    .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .partner-with-us-section {
        padding: 74px 0 82px;
    }

    .partner-with-us-section .section-header {
        padding: 0 4px;
    }

    .partner-section-trust {
        align-items: flex-start;
        flex-direction: column;
        width: max-content;
        max-width: 100%;
        margin: 22px auto 0;
        text-align: left;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 38px;
    }

    .partner-card {
        min-height: 0;
    }

    .partner-card-collapsed {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 16px;
        padding: 22px 20px;
    }

    .pc-icon {
        grid-row: 1 / span 3;
        width: 52px;
        height: 52px;
        margin: 0;
    }

    .pc-title {
        min-height: 0;
        padding-right: 22px;
    }

    .pc-teaser {
        margin: 0 0 10px;
    }
}

/* Final modal overrides: keep the dialog clean and header neutral */
body .partner-modal-content {
    width: min(92vw, 680px);
    max-width: 680px;
    max-height: 88vh;
    border-radius: 20px;
    background: #fff;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(30, 61, 47, .62) rgba(30, 61, 47, .08);
}

body .partner-modal-content.has-overflow {
    overflow-y: auto;
    overscroll-behavior: contain;
}

body .partner-modal-content::-webkit-scrollbar {
    width: 8px;
}

body .partner-modal-content::-webkit-scrollbar-track {
    margin-block: 18px;
    border-radius: 999px;
    background: rgba(30, 61, 47, .07);
}

body .partner-modal-content::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--heritage-green), #b18b35) padding-box;
}

body .partner-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--heritage-green) padding-box;
}

body .partner-modal-body {
    display: block;
    min-height: 0;
}

body .partner-modal-header {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 16px;
    padding: 28px 70px 24px 28px;
    color: var(--charcoal);
    background: #fff;
    border-bottom: 1px solid #edf0ed;
}

body .partner-modal-header::before,
body .partner-modal-header::after,
body .partner-modal-assurance {
    display: none;
}

body .partner-modal-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    flex: 0 0 54px;
    margin: 0;
    border: 1px solid #e1e9e3;
    border-radius: 14px;
    color: var(--heritage-green);
    background: #f1f5f2;
    box-shadow: none;
}

body .partner-modal-header h2 {
    margin: 0 0 3px;
    color: var(--heritage-green);
    font-size: clamp(1.3rem, 3vw, 1.65rem);
}

body .partner-modal-header p {
    color: #6b746e;
    font-size: 0.85rem;
    line-height: 1.45;
}

body .partner-modal-detail {
    display: block;
    padding: 28px;
    background: #fff;
}

body .partner-modal-close {
    top: 20px;
    right: 20px;
    color: #657069;
    background: #f3f5f3;
    border-color: #e5e9e6;
}

body .partner-modal-close:hover {
    color: var(--heritage-green);
    background: #eaf0eb;
    transform: none;
}

@media (max-width: 600px) {
    body .partner-modal-header {
        display: flex;
        padding: 23px 58px 20px 20px;
    }

    body .partner-modal-detail {
        padding: 22px 20px 24px;
    }

    body #partner-modal-body .pc-benefits {
        grid-template-columns: 1fr;
    }
}

/* Keep the Ecosystem section light with its original brand typography */
.group-wheel-section {
    background: #fff !important;
}
.group-wheel-section .ecosystem-intro,
.group-wheel-section h2,
.group-wheel-section .ecosystem-kicker,
.group-wheel-section .ecosystem-guide span {
    color: inherit;
}
.group-wheel-section .ecosystem-intro { color: #56645c !important; }
.group-wheel-section h2 { color: var(--heritage-green) !important; }
.group-wheel-section .ecosystem-kicker { color: #987322 !important; }
.group-wheel-section .ecosystem-guide span { color: #526158 !important; }

/* Keep the wheel marks white on black circular logo plates */
.group-wheel-section .wheel-center,
.group-wheel-section .wheel-item {
    background: #000;
}

.group-wheel-section .wheel-center img,
.group-wheel-section .wheel-item img {
    filter: brightness(0) invert(1);
}

/* Final mobile wheel sizing: always fit and remain horizontally centered. */
@media (max-width: 768px) {
    .group-wheel-section .container {
        width: 100%;
        max-width: none;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .group-wheel-section .wheel-container {
        width: min(88vw, 600px);
        max-width: 100%;
        height: auto;
        aspect-ratio: 1;
        margin: 10px auto 0 !important;
        left: auto;
        right: auto;
    }

    /* Keep the cinematic hero video and scroll-open doors active on mobile. */
    .elevator-hero {
        height: 220vh !important;
        padding: 0 !important;
    }

    .elevator-hero .elevator-sticky {
        position: sticky !important;
        top: 0;
        width: 100vw;
        height: 100vh !important;
        overflow: hidden;
    }

    .elevator-hero .hero-revealed-state {
        display: flex !important;
        min-height: 100vh;
    }

    .elevator-hero .hero-video-desktop {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .elevator-hero .hero-video-mobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .elevator-hero .elevator-door {
        display: flex !important;
    }

    .elevator-hero .hero-scroll-progress {
        display: flex !important;
        right: 16px;
        font-size: 0.55rem;
    }
}

/* Mobile finish: keep the cinematic hero stable while scrolling and prevent
   viewport-width elements from exposing a sideways/backdrop strip. */
html,
body {
    overflow-x: clip;
}

@media (max-width: 768px) {
    .elevator-hero {
        height: 180svh !important;
        min-height: 180svh;
        padding: 0 !important;
        background: #10251b;
    }

    .elevator-hero .elevator-sticky {
        height: 100svh !important;
        min-height: 100svh;
        background: #10251b;
    }

    .elevator-hero .hero-revealed-state {
        min-height: 100svh;
        background: #10251b;
    }

    .elevator-hero .hero-bg-video {
        background: #10251b;
    }

    .elevator-hero .hero-scroll-progress {
        display: none !important;
    }

    .elevator-hero .elevator-door {
        height: 50svh;
    }

    .elevator-hero .door-text {
        font-size: clamp(1.55rem, 7vw, 2.35rem);
        line-height: 1.1;
    }

    .elevator-hero .cinematic-content {
        width: 100%;
        padding: 76px 20px 30px;
        text-align: center;
    }

    .elevator-hero .creative-title .title-light {
        font-size: clamp(1.45rem, 7vw, 2rem);
    }

    .elevator-hero .creative-title .title-bold {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .elevator-hero .creative-title .title-accent {
        font-size: clamp(1.45rem, 7vw, 2.1rem);
    }

    .elevator-hero .hero-buttons {
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    .elevator-hero .trust-strip {
        gap: .55rem .75rem;
        font-size: .72rem;
        justify-content: center;
    }
}
















