/* Global Reset & Variables */
:root {
    --bg-color: #f0f8ff;
    --card-bg: #ffffff;
    --card-border: #cbd5e1;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --accent-color: #0f766e;
    /* Teal 700 */
    --accent-bright: #14b8a6;
    /* Teal 500 */
    --accent-contrast: #ffffff;
    --accent-glow: rgba(15, 118, 110, 0.2);
    --brand-orange: #ff7a18;
    --brand-orange-light: #ffd8c2;
    --team-photo-bg: #f8fafc;
    --team-border: rgba(0, 0, 0, 0.04);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --nav-bg: rgba(255, 255, 255, 0.65);
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
        opacity: 0.8;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes logoBreathing {

    0%,
    100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(20, 184, 166, 0.2));
        transform: translate(calc(var(--brand-tx) * 0.2), calc(var(--brand-ty) * 0.2)) scale(1);
    }

    50% {
        filter: brightness(1.1) drop-shadow(0 0 10px rgba(20, 184, 166, 0.4));
        transform: translate(calc(var(--brand-tx) * 0.2), calc(var(--brand-ty) * 0.2)) scale(1.02);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow: hidden;
    /* Hide body scroll, use wrapper */
    margin: 0;
}

/* Parent container (REQUIRED) */
.parallax {
    perspective: 2px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    transform-style: preserve-3d;
    scroll-behavior: smooth;
    position: relative;
    z-index: 2;
    /* Content scroller layer */
    background: transparent;
    pointer-events: none;
}

/* Re-enable events for foreground layers */
.parallax-layer--back,
.parallax-layer--base,
.navbar-wrapper,
.upward-indicator,
.downward-indicator {
    pointer-events: auto;
}

.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    pointer-events: none;
    overflow: visible;
    /* CRITICAL: Allow dropdowns to show */
}

#navbar-airplane {
    position: absolute;
    top: 60px;
    left: -100px;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.2;
    filter: blur(0.5px);
    will-change: transform;
    z-index: 1;
    pointer-events: none;
}

.parallax-wrapper {
    /* Keeping for compatibility during transition, aliasing to .parallax */
    display: contents;
}

.parallax-group {
    position: relative;
    min-height: 100vh;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: auto;
}

.hero-sticky {
    position: sticky;
    top: 0;
    z-index: 1;
}

.content-group {
    background-color: var(--bg-color);
    position: relative;
    z-index: 10;
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.05);
}

.parallax-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.parallax-layer--base {
    transform: translateZ(0);
    z-index: 5;
    position: relative;
    /* Base layer has content */
}

/* Background layer */
.parallax-layer--back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    /* Proper Parallax: translateZ moving it further back, scale compensating */
    transform: translateZ(-2px) scale(3);
    transform-origin: center center;

    z-index: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Ensure no attachment fixed as it breaks perspective parallax */
    background-attachment: scroll;

    background-color: var(--bg-color);

    width: 100%;
    /* Default to 100vh so global layers don't block footer */
    height: 120vh;

    will-change: transform;
}

.parallax-group .parallax-layer--back,
.parallax-group .parallax-layer--middle {
    height: 100%;
    bottom: 0;
}

.bg-hitech {
    background-color: #050a14;
    /* Deep, dark tech blue/slate */
    background-blend-mode: hard-light;
    /* More vibrant blend */
}

.parallax-layer--middle {
    transform: translateZ(-1px) scale(2);
    z-index: 0.5;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.parallax-layer--deep {
    transform: translateZ(-3px) scale(4);
    z-index: -2;
    background-color: var(--bg-color);
    width: 100vw;
    left: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
}

.display-1 {
    font-size: 5rem;
    font-weight: 800;
    /* Light Gradient: White to Light Blue */
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lead {
    font-size: 1.25rem;
    color: #e2e8f0;
    /* Slate 200 - Very Light Grey/Blue */
    max-width: 600px;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Glass Card for contrast on Hero sections */
.glass {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.glass:hover {
    /* Subtle hover to avoid overpowering adjacent content */
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.18);
    transform: none;
}

/* Premium Hero Card (Specific for Page Titles) */
.hero-card {
    background: rgba(15, 23, 42, 0.85);
    /* More opaque for contrast without global bg */
    padding: 3rem 4rem;
    /* More generous padding */
    border-radius: 32px;
    /* Softer corners */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
    /* Deep shadow */
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 900px;
    width: 90%;
    /* Responsive width */
    margin: 0 auto;
}

/* Floating Navigation - Merged to top block */

.navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 10px 14px 10px 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 80px;
    box-shadow: 0 12px 40px -10px rgba(8, 20, 35, 0.12);
    z-index: 2;
    pointer-events: auto;
}

.nav-links-desktop {
    display: flex;
    gap: 48px;
    /* High-end whitespace between links */
}

.brand {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--accent-color);
}

.brand img.logo-img {
    height: 64px;
    width: auto;
    border-radius: 12px;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(calc(var(--brand-tx) * 0.2), calc(var(--brand-ty) * 0.2));
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    background: transparent;
    /* Fallback if logo is transparent-ish */
    animation: logoBreathing 4s ease-in-out infinite;
}

.logo-img-mobile {
    height: 48px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.brand:hover img.logo-img {
    transform: translate(calc(var(--brand-tx) * 0.2), calc(var(--brand-ty) * 0.2)) scale(1.1) rotate(2deg);
    filter: brightness(1.1) drop-shadow(0 0 12px rgba(20, 184, 166, 0.4));
}

/* Container */
.brand-text-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    position: relative;
    --brand-tx: 0px;
    --brand-ty: 0px;
}

/* Animated brand text */
.brand-text-animated {
    display: flex;
    gap: 1px;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    transform: translate(calc(var(--brand-tx) * 0.4), calc(var(--brand-ty) * 0.4));
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Letters */
.brand-text-container .letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    /* Solid sleek text */
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smoother premium easing */
    font-weight: 800;
    font-size: 1.45rem;
    line-height: 1;
    text-transform: uppercase;
    cursor: default;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Tagline */
.brand-tagline {
    display: flex;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    margin-top: 2px;
}

.tagline-word {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1), color 0.3s ease;
}

/* Parallax for each word in tagline at slightly different speeds */
.tagline-word:nth-child(1) {
    transform: translate(calc(var(--brand-tx) * 0.6), calc(var(--brand-ty) * 0.6));
}

.tagline-word:nth-child(2) {
    transform: translate(calc(var(--brand-tx) * 0.8), calc(var(--brand-ty) * 0.8));
}

.tagline-word:nth-child(3) {
    transform: translate(calc(var(--brand-tx) * 1.0), calc(var(--brand-ty) * 1.0));
}

/* Hover letter animation */
.brand:hover .letter {
    color: rgba(15, 23, 42, 0.4);
}

.brand-text-animated .letter:hover {
    transform: translateY(-4px) scale(1.1);
    color: var(--accent-bright);
    text-shadow: 0 12px 24px rgba(20, 184, 166, 0.4);
}

.brand:hover .tagline-word {
    color: var(--accent-color);
}

/* Staggered animation delays */
.brand-text-animated:hover .letter:nth-child(1) {
    transition-delay: 0s;
}

.brand-text-animated:hover .letter:nth-child(2) {
    transition-delay: 0.06s;
}

.brand-text-animated:hover .letter:nth-child(3) {
    transition-delay: 0.12s;
}

.brand-text-animated:hover .letter:nth-child(4) {
    transition-delay: 0.18s;
}

.brand-text-animated:hover .letter:nth-child(5) {
    transition-delay: 0.24s;
}

.brand-text-animated:hover .letter:nth-child(6) {
    transition-delay: 0.3s;
}

.brand-text-animated:hover .letter:nth-child(7) {
    transition-delay: 0.36s;
}

.brand-text-animated:hover .letter:nth-child(8) {
    transition-delay: 0.42s;
}

.brand-text-animated:hover .letter:nth-child(9) {
    transition-delay: 0.48s;
}

/* Flowing bottom line */
.brand-tagline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    /* Adjust the line to be right below the text */
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            var(--accent-bright),
            transparent);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    border-radius: 2px;
}

/* Hover underline animation */
.brand-tagline:hover::after {
    transform: scaleX(1);
    animation: flow-line 1.2s linear infinite;
}

/* Gradient flow animation */
@keyframes flow-line {
    from {
        background-position: 0% 50%;
    }

    to {
        background-position: 200% 50%;
    }
}


.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Dropdown Menu Styles - RESTORED */
.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    min-width: 250px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: flex !important;
    /* Ensure vertical list */
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a i {
    width: 20px;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(20, 184, 166, 0.08);
    color: var(--accent-bright);
    transform: translateX(4px);
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-bright) 100%);
    color: white;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.25);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.35);
}

/* Hero Animated Visuals */
.hero-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.visual-airplane {
    position: absolute;
    top: 15%;
    left: -10%;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.15;
    filter: blur(1px);
    animation: flightPath 25s linear infinite;
}

.visual-ship {
    position: absolute;
    bottom: 10%;
    right: -10%;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.1;
    filter: blur(2px);
    animation: sailingPath 35s linear infinite;
}

@keyframes flightPath {
    0% {
        transform: translate(0, 0) rotate(15deg);
    }

    100% {
        transform: translate(120vw, -20vh) rotate(15deg);
    }
}

@keyframes sailingPath {
    0% {
        transform: translate(0, 0) rotate(-2deg);
    }

    50% {
        transform: translate(-120vw, 10px) rotate(2deg);
    }

    100% {
        transform: translate(-240vw, 0) rotate(-2deg);
        /* Seamless loop check or just long duration */
    }
}

/* Redefine sailing for a smoother loop or constant flow */
@keyframes sailingPath {
    from {
        transform: translateX(110vw) translateY(0) rotate(-1deg);
    }

    to {
        transform: translateX(-20vw) translateY(5px) rotate(1deg);
    }
}

/* Scroll Parallax Vessels */
.footer-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

#parallax-airplane {
    position: absolute;
    top: 60px;
    left: -100px;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.2;
    filter: blur(0.5px);
    will-change: transform;
    z-index: 12000;
}

#parallax-sailboat {
    position: absolute;
    bottom: 35px;
    right: 350px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.18;
    filter: blur(1px);
    will-change: transform;
    z-index: 1;
}

/* Maritime Corridor & Water Flow */
.footer-maritime-corridor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(85, 107, 47, 0.03));
}

.footer-water-flow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.1;
    animation: waterPulse 10s ease-in-out infinite;
}

@keyframes waterPulse {

    0%,
    100% {
        opacity: 0.05;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 0.15;
        transform: scaleX(1);
    }
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.col-span-12 {
    grid-column: span 12;
}

.col-span-8 {
    grid-column: span 8;
}

.col-span-6 {
    grid-column: span 6;
}

.col-span-4 {
    grid-column: span 4;
}

.col-span-3 {
    grid-column: span 3;
}

.col-span-2 {
    grid-column: span 2;
}

/* Management Team Section */
.team-section {
    padding-top: 4px;
    padding-bottom: 24px;
}

.team-section .card-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 8px;
}

.team-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin: 0 auto 24px auto;
    max-width: 800px;
    font-size: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.28s ease;
}

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--team-photo-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    filter: grayscale(100%);
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
}

.team-photo svg {
    width: 60%;
    height: 60%;
    fill: #cbd5e1;
}

.team-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.accent-line {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 2px;
    margin: 8px 0;
}

.team-role {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(255, 122, 24, 0.06);
    border-color: rgba(255, 122, 24, 0.12);
}

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-photo {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .team-photo {
        width: 100px;
        height: 100px;
    }

    .team-section .card-title {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    max-width: 1100px;
    margin: 40px auto;
    background: linear-gradient(180deg, rgba(240, 248, 255, 0.6), rgba(255, 255, 255, 0.6));
    border: 1px solid var(--card-border);
    padding: 48px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-align: center;
    grid-column: 1 / -1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.faq-item {
    margin: 0;
    padding: 20px;
    border-radius: 12px;
    background: var(--card-bg);
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    width: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.faq-item h3 {
    font-size: 1.05rem;
    margin: 0 0 8px 0;
    color: var(--accent-color);
    transition: color 0.22s ease, text-decoration 0.22s ease;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Hover & focus states for interactivity and keyboard accessibility */
.faq-item:hover,
.faq-item:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(85, 107, 47, 0.12);
    border-color: rgba(85, 107, 47, 0.18);
    background: linear-gradient(180deg, rgba(239, 250, 240, 0.6), var(--card-bg));
}

.faq-item:hover h3,
.faq-item:focus-within h3 {
    color: var(--accent-bright);
    text-decoration: underline;
}

.faq-item:focus-within {
    outline: none;
    box-shadow: 0 0 0 4px rgba(85, 107, 47, 0.06);
}

@media (max-width: 720px) {
    .faq-section {
        padding: 28px;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.bento-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(85, 107, 47, 0.3);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 0 20px rgba(85, 107, 47, 0.1);
}

.bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.bento-card:hover::after {
    transform: translateX(100%);
}

/* Product card overlay alignment */
.product-item {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.product-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 0) 100%);
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    font-weight: 700;
}

.product-name {
    font-size: 1.4rem;
    margin: 8px 0;
    color: var(--text-primary);
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.4;
    max-height: 3.5rem;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.product-origin {
    font-size: 0.8rem;
    color: #64748b;
}

.product-inquire {
    padding: 10px 20px;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .product-overlay {
        padding: 16px;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-desc {
        font-size: 0.85rem;
    }
}

.col-span-12 {
    grid-column: span 12;
}

.col-span-8 {
    grid-column: span 8;
}

.col-span-6 {
    grid-column: span 6;
}

.col-span-4 {
    grid-column: span 4;
}

.col-span-3 {
    grid-column: span 3;
}

.row-span-2 {
    grid-row: span 2;
}

/* Global Form Elements */
.form-input {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    background: rgba(15, 23, 42, 0.6);
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(85, 107, 47, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Service Lists */
.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

/* In-Card Styling */
.card-icon {
    width: 48px;
    height: 48px;
    background: #f1f5e8;
    /* Light Olive tint */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.card-media {
    margin-top: auto;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.card-media img,
.card-media video {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(85, 107, 47, 0.4);
    background: #3f5022;
}

.btn-secondary {
    background: #e2e8f0;
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: #cbd5e1;
}

/* Page Spacing */
main {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    z-index: 5;
    pointer-events: auto;
    /* Ensure main content is clickable */
}

/* Footer Reveal Structure */
/* Deep dark premium footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 480px;
    background: radial-gradient(ellipse at 50% 100%, rgba(20, 184, 166, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, #0f172a 0%, #060d18 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-sans);
    overflow: hidden;
    color: rgba(255, 255, 255, 0.85);
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: sparkle 30s linear infinite;
}

@keyframes sparkle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-top: 0;
    margin-bottom: 3rem;
    align-items: start;
}

/* Spacer to allow scrolling up to reveal footer */
.footer-spacer {
    height: 480px;
    /* Must match footer height */
    width: 100%;
    background: transparent;
    pointer-events: none;
    display: block;
}

.content-group {
    background: var(--bg-color);
    position: relative;
    z-index: 10;
    /* Keep main content well above fixed footer */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    /* Ensure content has solid background to cover footer */
    /* Flush with spacer */
}

.footer h3 {
    color: #ffffff;
    margin-bottom: 24px;
    font-size: 1.15rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: 0.02em;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-bright), transparent);
    border-radius: 2px;
}

.footer ul li {
    margin-bottom: 14px;
    list-style: none;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer ul li a:hover {
    color: #ffffff;
    transform: translateX(6px);
}

.footer ul li a i {
    font-size: 0.9rem;
    color: var(--accent-bright);
    transition: transform 0.3s ease;
    width: 18px;
    text-align: center;
}

.footer ul li a:hover i {
    transform: scale(1.1);
    color: #5eead4;
}

.footer-grid h3 {
    margin-bottom: 25px;
    font-weight: 700;
}

.footer ul li:hover {
    transform: translateX(5px);
}

.footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.footer a i {
    transition: all 0.3s ease;
    color: var(--accent-bright);
}

.footer a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(20, 184, 166, 0.4);
}

.footer a:hover i {
    transform: scale(1.1) rotate(5deg);
    color: #5eead4;
    filter: drop-shadow(0 0 8px rgba(94, 234, 212, 0.4));
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    font-weight: 500;
}

.social-links a i {
    font-size: 1.1rem;
    width: 20px;
}

/* Glitter effect on hover */
.footer a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1), height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: -1;
}

.footer a:hover::before {
    width: 100px;
    height: 100px;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {

    .col-span-8,
    .col-span-6,
    .col-span-4,
    .col-span-3 {
        grid-column: span 6;
    }
}

@media (max-width: 968px) {
    .display-1 {
        font-size: 3.5rem;
    }

    .navbar {
        gap: 40px;
        padding-left: 24px;
    }

    .nav-links-desktop {
        gap: 32px;
    }

    .bento-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .display-1 {
        font-size: 3rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .col-span-12,
    .col-span-8,
    .col-span-6,
    .col-span-4,
    .col-span-3 {
        grid-column: span 1;
    }

    .navbar {
        width: 90%;
        justify-content: space-between;
        padding: 12px 20px;
    }

    .nav-links-desktop {
        display: none;
    }
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 2000;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.sidebar-close {
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: #e2e8f0;
    color: var(--accent-color);
    transform: rotate(90deg);
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.mobile-sidebar.active .sidebar-nav li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-sidebar.active .sidebar-nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-sidebar.active .sidebar-nav li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-sidebar.active .sidebar-nav li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-sidebar.active .sidebar-nav li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-sidebar.active .sidebar-nav li:nth-child(5) {
    transition-delay: 0.5s;
}

.sidebar-nav a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.sidebar-nav a i {
    width: 24px;
    color: var(--accent-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

.sidebar-nav a:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-footer .social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.sidebar-footer .social-icons a {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.sidebar-footer .social-icons a:hover {
    color: var(--accent-color);
}

.sidebar-footer p {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Tablet & Mobile Visibility */
@media (max-width: 1024px) {
    .nav-links-desktop {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .navbar {
        width: 95%;
        padding: 10px 20px;
    }
}

@media (max-width: 640px) {
    .brand span {
        display: none;
    }

    .mobile-sidebar {
        width: 100%;
    }

    .btn-nav {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Downward Indicator */
.downward-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    z-index: 9999;
    opacity: 0.95;
    animation: bounce 2s infinite;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    padding: 8px;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, opacity 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.downward-indicator:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: translateX(-50%) scale(1.06);
}

.downward-indicator i {
    color: #fff;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
}

/* Fallback inline SVG if FA fails to render */
.downward-indicator svg.fallback-icon {
    width: 20px;
    height: 20px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Upward Indicator (Scroll to Top) */
.upward-indicator {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    /* background: var(--accent-color); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    /* box-shadow: 0 12px 30px rgba(85, 107, 47, 0.25); */
    z-index: 9999;
}

.upward-indicator.visible {
    opacity: 1;
    /* background-color: var(--accent-color); */
    pointer-events: auto;
    transform: translateY(-4px);
}

.upward-indicator:hover {
    background: #3f5022;
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 18px 40px white;
}

.upward-indicator i {
    color: var(--accent-color);
    font-size: 20px;
    transform: rotate(-95deg);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.upward-indicator:hover i {
    animation: planeTakeoff 0.6s infinite alternate ease-in-out;
    color: white;
}

@keyframes planeTakeoff {
    0% {
        transform: rotate(-90deg) translate(0, 0);
    }

    100% {
        transform: rotate(-90deg) translate(3px, -3px);
    }
}

/* ensure it remains above footer/other elements */
@media (max-width: 480px) {
    .upward-indicator {
        right: 12px;
        bottom: 12px;
        width: 44px;
        height: 44px;
    }
}

/* Premium Intro Section */
.intro-section {
    max-width: 900px;
    margin: 0 auto 5rem auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.98) 100%);
    border-radius: 24px;
    border: 1px solid rgba(85, 107, 47, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(85, 107, 47, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(85, 107, 47, 0.3);
}

.intro-badge i {
    font-size: 1rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.intro-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.intro-text em {
    font-style: normal;
    color: var(--accent-color);
    font-weight: 500;
}

.intro-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(85, 107, 47, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color) 0%, #3f5022 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(85, 107, 47, 0.3), transparent);
}

@media (max-width: 768px) {
    .intro-section {
        padding: 2rem 1.5rem;
    }

    .intro-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(85, 107, 47, 0.3), transparent);
    }

    .intro-text {
        font-size: 1.05rem;
    }
}

/* Contact page: professional hover & focus palette */
.contact-page .bento-card,
.contact-page .bento-card .card-icon,
.contact-page .btn {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
    will-change: transform, box-shadow;
}

.contact-page .bento-card {
    position: relative;
    z-index: 1;
}

/* Subtle, non-invasive hover: translate only (no scale), small offset shadow and raised z-index to avoid overlaying siblings */
.contact-page .bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(143, 195, 83, 0.28);
    /* subtle bright border */
    background: linear-gradient(180deg, rgba(143, 195, 83, 0.02), rgba(85, 107, 47, 0.01));
    box-shadow: 0 18px 36px rgba(143, 195, 83, 0.14), 0 0 28px rgba(143, 195, 83, 0.06);
    z-index: 8;
}

.contact-page .bento-card .card-icon {
    transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.contact-page .bento-card:hover .card-icon {
    background: linear-gradient(135deg, var(--accent-bright), var(--accent-color));
    color: var(--accent-contrast);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(143, 195, 83, 0.12);
}

.contact-page .btn-primary:hover {
    background: #3f5022;
    box-shadow: 0 10px 20px rgba(63, 80, 34, 0.14);
}

.contact-page .btn-secondary {
    background: transparent;
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-primary);
}

.contact-page .btn-secondary:hover {
    background: rgba(85, 107, 47, 0.06);
    color: var(--accent-color);
    border-color: rgba(85, 107, 47, 0.18);
}

.contact-page a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Make CTA buttons and interactive elements have stronger focus ring for accessibility */
.contact-page .btn:focus,
.contact-page .bento-card:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(85, 107, 47, 0.08);
}

/* About page: layout & card styles */
.about-page {
    padding-bottom: 5rem;
}

.about-page .container {
    padding-top: 5rem;
    padding-bottom: 2rem;
}

/* Group Card: Same styling as bento-card but used for fixed containers with internal tilt items */
.bento-group-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.about-page .industry-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f1f5f9;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-page .industry-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-color);
}

.about-page .industry-card .icon-box {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.about-page .industry-card:hover .icon-box {
    transform: scale(1.1);
    background: #f8fafc;
}

.about-page .industry-card h4 {
    margin: 0;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.about-page .industry-card:hover h4 {
    color: var(--accent-color);
}

.about-page .accent-card {
    background: var(--accent-color);
    color: #fff;
    border: none;
}

.about-page .accent-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.about-page .accent-card .card-title,
.about-page .accent-card .card-desc,
.about-page .accent-card h3,
.about-page .accent-card p {
    color: #fff;
}

.about-page .vision-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-page .vision-card .card-icon {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.about-page .value-card {
    background: rgba(85, 107, 47, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(85, 107, 47, 0.05);
    transition: all 0.3s ease;
}

.about-page .value-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.about-page .value-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .about-page .container {
        padding-top: 3rem;
    }
}

/* Inquiry form card: disable transform only for the main form card so hover/scale do not apply here */
#inquiry-form .bento-card.col-span-8,
#inquiry-form .bento-card.col-span-8:hover {
    /* prevent any translate/scale on hover for this specific card */
    transform: none !important;
    /* keep visual transitions for colors/shadows but skip transform transitions */
    transition: box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

/* Prevent the top gradient bar from animating on hover for this card */
#inquiry-form .bento-card.col-span-8:hover::after {
    transform: translateX(-100%) !important;
}

/* Category Chips */
.category-chips-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.category-chip {
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    border: 1px solid transparent;
}

.category-chip i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.category-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    filter: brightness(1.05);
}

.category-chip:hover i {
    transform: scale(1.2) rotate(5deg);
}

/* Category Variations */
.chip-agri {
    background: #f1f5e8;
    color: var(--accent-color);
    border-color: rgba(85, 107, 47, 0.1);
}

.chip-industrial {
    background: #e0f2fe;
    color: #0ea5e9;
    border-color: rgba(14, 165, 233, 0.1);
}

.chip-consumer {
    background: #fae8ff;
    color: #d946ef;
    border-color: rgba(217, 70, 239, 0.1);
}

.chip-custom {
    background: #fff7ed;
    color: #f97316;
    border-color: rgba(249, 115, 22, 0.1);
}

/* --- Product Grid & Cards --- */
.product-item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    z-index: 2;
    /* Dual gradient: Top for category badge, Bottom for text readability */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 30%, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.product-item:hover .product-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.9) 100%);
}

.product-meta {
    margin-top: auto;
    margin-bottom: 16px;
}

.product-category {
    align-self: flex-start;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(85, 107, 47, 0.9);
    /* Olive green matched from screenshot */
    color: white;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: auto;
    /* Push metadata to bottom */
}

.product-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.product-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-product-view {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.btn-product-view:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.product-inquire {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    background-color: #556B2F !important;
    border: none !important;
    border-radius: 99px !important;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    flex: 1;
    text-align: center;
}

.product-inquire:hover {
    background-color: #6B8E23 !important;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Product Details Modal */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.product-modal-content {
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-modal-overlay.active .product-modal-content {
    transform: translateY(0);
}

.product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.product-modal-close:hover {
    background: #f8fafc;
    transform: scale(1.1);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}

@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .product-modal-content {
        max-height: 95vh;
    }
}

.product-modal-image {
    position: relative;
    background: #f1f5f9;
    min-height: 300px;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.1) 100%);
}

.product-modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    background: white;
}

@media (max-width: 768px) {
    .product-modal-info {
        padding: 24px;
    }
}

.modal-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

.modal-scroll-area {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 24px;
}

.modal-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.modal-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-item i {
    color: #556B2F;
}

.product-modal-actions {
    margin-top: auto;
}

/* =============================================
   ENHANCED GLOBAL RESPONSIVENESS (MOBILE/TABLET)
   ============================================= */

/* High-DPI Tablet Adjustments (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
        padding: 0 30px;
    }

    .hero-card {
        padding: 2.5rem;
        width: 95%;
    }

    .display-1 {
        font-size: 3.5rem;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .col-span-8,
    .col-span-12 {
        grid-column: span 2;
    }

    .col-span-4,
    .col-span-3,
    .col-span-6 {
        grid-column: span 1;
    }
}

/* Mobile & Small Tablet Adjustments (Below 768px) */
@media (max-width: 768px) {

    /* Disable Complex Parallax on Mobile for performance and clarity */
    .parallax {
        perspective: none !important;
        height: auto !important;
        overflow: visible !important;
    }

    .parallax-layer--back {
        position: relative !important;
        height: 60vh !important;
        transform: none !important;
        scale: 1 !important;
        z-index: 1 !important;
    }

    .parallax-layer--base {
        position: relative !important;
        transform: none !important;
        z-index: 2 !important;
        margin-top: -100px !important;
        /* Pull content over hero slightly */
    }

    .parallax-group {
        min-height: auto !important;
        height: auto !important;
        display: block !important;
    }

    .hero-sticky {
        position: relative !important;
    }

    .navbar-wrapper {
        padding: 10px 0 !important;
    }

    .navbar {
        width: 92% !important;
        gap: 20px !important;
        padding: 8px 15px !important;
    }

    .brand img.logo-img {
        height: 48px !important;
    }

    .brand-text-animated .letter {
        font-size: 1.1rem !important;
        width: 18px !important;
    }

    .brand-tagline {
        font-size: 0.6rem !important;
    }

    .display-1 {
        font-size: 2.5rem !important;
    }

    .lead {
        font-size: 1rem !important;
        padding: 0 10px !important;
    }

    .hero-cta {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        gap: 15px !important;
    }

    .hero-cta .btn {
        width: 100% !important;
    }

    /* Column Reset */
    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .col-span-12,
    .col-span-8,
    .col-span-6,
    .col-span-4,
    .col-span-3 {
        grid-column: span 1 !important;
    }

    /* Remove background images on mobile/tablet as requested */
    .parallax-layer--back {
        background-image: none !important;
        background-color: var(--bg-color) !important;
        display: none !important;
        /* Fully remove as requested */
    }

    /* Fixed Footer Reveal Fix for Mobile */
    .footer {
        position: relative !important;
        height: auto !important;
        padding: 3rem 0 !important;
        z-index: 10 !important;
        margin-top: 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
        background: #f8fafc !important;
        /* Ensure solid background */
    }

    .footer-spacer {
        display: none !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .footer h3::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .social-links {
        align-items: center !important;
    }

    .footer ul li:hover {
        transform: none !important;
    }

    .footer a:hover {
        transform: scale(1.05) !important;
    }
}

/* Specific component fixes for extra small screens */
@media (max-width: 480px) {
    .display-1 {
        font-size: 2rem !important;
    }

    .hero-card {
        padding: 1.5rem !important;
        border-radius: 20px !important;
        background: rgba(15, 23, 42, 0.98) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    }

    .hero-badge {
        padding: 6px 12px !important;
        font-size: 0.75rem !important;
    }

    .intro-stats {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .stat-divider {
        width: 50px !important;
        height: 1px !important;
        margin: 0 auto !important;
    }
}

/* UI Utility Classes */
.hero-section-padding {
    padding-top: 120px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .hero-section-padding {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem) !important;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.brand-subtitle {
    display: block;
    font-size: 0.7em;
    font-weight: 400;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-lead {
    font-size: 1.4rem;
    margin: 0 auto 35px auto;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-lead {
        font-size: 1.1rem !important;
    }
}

.lead-sub {
    display: block;
    font-size: 0.85em;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-features-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-pill {
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 0.85rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pill-reliable {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

.pill-support {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.pill-partner {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-hero-main {
    background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%) !important;
    border: none !important;
    padding: 14px 32px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.4) !important;
    color: white !important;
}

.btn-hero-sub {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 12px 30px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    border-radius: 50px !important;
    backdrop-filter: blur(10px) !important;
}

.scroll-indicator-home {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.6);
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 968px) {
    .network-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.globe-spin {
    color: #4ade80;
    animation: spin 3s linear infinite;
}

.text-accent-bright {
    color: #4ade80;
    font-weight: 500;
}

.animate-slide-down {
    animation: slideInDown 1s ease-out 0.3s both;
}

.animate-fade-up {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.animate-fade-up-delayed {
    animation: fadeInUp 1s ease-out 1.5s both;
}

/* Blurred Orange Layout for Trusted Global Trade Partner */
.hero-badge-blurred {
    background: rgba(255, 122, 24, 0.2) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 122, 24, 0.3) !important;
    color: #ff7a18 !important;
    box-shadow: 0 8px 32px rgba(255, 122, 24, 0.15) !important;
}

/* Focus / Services Section Redesign */
.focus-section {
    padding: 100px 20px;
    text-align: center;
    background-color: #fff;
    position: relative;
    z-index: 10;
}

.focus-header {
    margin-bottom: 70px;
}

.focus-title-main {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.focus-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.focus-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.focus-item {
    flex: 1 1 240px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    padding: 10px;
}

.focus-item:hover {
    transform: translateY(-10px);
}

.focus-icon-wrapper {
    width: 140px;
    height: 140px;
    background-color: #f8fafc;
    /* Very light slate/grey */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 8px solid #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.focus-item:hover .focus-icon-wrapper {
    background-color: #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.focus-icon {
    font-size: 2.5rem;
    color: #64748b;
    /* Slate 500 default */
    transition: color 0.3s ease;
}

.focus-item:hover .focus-icon {
    color: var(--text-primary);
}

/* Specific icon colors on hover */
.focus-item:nth-child(4n+1):hover .focus-icon {
    color: #ef4444;
}

.focus-item:nth-child(4n+2):hover .focus-icon {
    color: #10b981;
}

.focus-item:nth-child(4n+3):hover .focus-icon {
    color: #3b82f6;
}

.focus-item:nth-child(4n+4):hover .focus-icon {
    color: #f59e0b;
}


.focus-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.focus-separator {
    width: 50px;
    height: 3px;
    background-color: #ddd;
    margin-bottom: 20px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.focus-item:hover .focus-separator {
    width: 70px;
}

/* Colorful separators */
.focus-item:nth-child(4n+1) .focus-separator {
    background-color: #ef4444;
}

/* Red */
.focus-item:nth-child(4n+2) .focus-separator {
    background-color: #10b981;
}

/* Green */
.focus-item:nth-child(4n+3) .focus-separator {
    background-color: #3b82f6;
}

/* Blue */
.focus-item:nth-child(4n+4) .focus-separator {
    background-color: #f59e0b;
}

/* Amber */

.focus-item-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Trade Features New Layout */
.trade-features-wrapper {
    background-color: #fff;
    min-height: 100vh;
}

.trade-hero {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 50% 0%, #f0f7ff 0%, #ffffff 70%);
    margin-bottom: 80px;
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3b82f6;
    margin-bottom: 20px;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.trade-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.trade-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Feature Sections */
.trade-feature-section {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 150px;
}

.trade-feature-section.right-align {
    flex-direction: row-reverse;
}

.trade-content {
    flex: 1;
}

.trade-visual {
    flex: 1;
    height: 500px;
    background-color: #f1f5f9;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

/* Specific Visual Styles */
.visual-import {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    position: relative;
}

.visual-import::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.visual-export {
    background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
}

.visual-analytics {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.visual-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    align-items: center;
    max-width: 250px;
    z-index: 2;
    transition: transform 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
}

.visual-card i {
    font-size: 2rem;
    color: #0f172a;
    background: #f8fafc;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.visual-stat {
    display: flex;
    flex-direction: column;
}

.visual-stat span {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.visual-stat small {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.feature-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.trade-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.trade-content p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-checklist {
    margin-bottom: 40px;
    display: grid;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #334155;
}

.check-item i {
    color: #10b981;
}

.action-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-trade-primary {
    background: #0f172a;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-trade-primary:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.link-learn-more {
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.link-learn-more:hover {
    gap: 12px;
    text-decoration: underline;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.visual-card {
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 900px) {
    .trade-hero {
        padding-top: 120px;
    }

    .trade-hero-title {
        font-size: 2.5rem;
    }

    .trade-feature-section {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .trade-feature-section.right-align {
        flex-direction: column;
    }

    .trade-visual {
        height: 350px;
        width: 100%;
    }

    .visual-card {
        bottom: 20px;
        left: 20px;
    }
}

/* Products Collections Styles */
.products-page-wrapper {
    background-color: #fff;
    min-height: 100vh;
}

.products-hero {
    padding: 140px 0 80px 0;
    background: radial-gradient(circle at 50% 0%, #f1f5f9 0%, #ffffff 60%);
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3b82f6;
    margin-bottom: 20px;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.collection-section {
    padding: 100px 0;
}

.collection-section.bg-light {
    background-color: #f8fafc !important;
}

.collection-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.collection-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 10px;
}

.collection-divider {
    width: 60px;
    height: 4px;
    background: #0ea5e9;
    margin: 0 auto;
    border-radius: 2px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-img-wrap {
    height: 320px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.product-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.08);
}

.product-info {
    padding: 24px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Catalogue Layout */
.products-split-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding-bottom: 120px;
}

.catalogue-sidebar {
    width: 280px;
    position: sticky;
    top: 100px;
    flex-shrink: 0;
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}

.catalogue-content {
    flex: 1;
    min-width: 0;
    /* Prevent grid overflow */
}

/* Sidebar Styling */
.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: #0f172a;
    font-weight: 800;
    font-size: 1.1rem;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.sidebar-header i {
    color: #3b82f6;
}

.catalogue-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.cat-link:hover,
.cat-link.active {
    background: #f8fafc;
    color: #0f172a;
    text-decoration: none;
}

.cat-link.active {
    background: #eff6ff;
    color: #3b82f6;
}

.count {
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 700;
}

.cat-link.active .count {
    background: #dbeafe;
    color: #3b82f6;
}

.sidebar-promo {
    background: #0f172a;
    color: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.sidebar-promo h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sidebar-promo p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.sidebar-promo a {
    color: #38bdf8;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sidebar-promo a:hover {
    gap: 12px;
    color: white;
    transition: all 0.2s ease;
}

@media (max-width: 1024px) {
    .catalogue-sidebar {
        display: none;
        /* Hide sidebar on small screens or transform to top nav if needed */
    }
}