/* International Trade Service Page - Unique Styles */

/* Service Page Body */
.service-page {
    background: var(--bg-white);
}

/* ================================
   SERVICE HERO - Split Design
================================ */
.service-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2d4a6a 100%);
    overflow: hidden;
    padding-top: 80px;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.service-hero-content {
    color: white;
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span {
    color: var(--primary-gold);
}

.service-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    backdrop-filter: blur(10px);
}

.service-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.service-hero-title span {
    color: var(--primary-gold);
    display: block;
}

.service-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 300;
}

/* Hero Stats */
.service-hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Hero Visual */
.service-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.globe-container {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: rotateRing 20s linear infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-style: dashed;
    animation: rotateRing 15s linear infinite reverse;
}

.ring-3 {
    width: 60%;
    height: 60%;
    animation: rotateRing 25s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.globe-core {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.globe-core svg {
    width: 80px;
    height: 80px;
    color: var(--primary-gold);
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.floating-icon svg {
    width: 28px;
    height: 28px;
    color: var(--navy);
}

.icon-1 {
    top: 10%;
    right: 10%;
    animation: float1 4s ease-in-out infinite;
}

.icon-2 {
    bottom: 20%;
    left: 5%;
    animation: float2 5s ease-in-out infinite;
}

.icon-3 {
    bottom: 10%;
    right: 20%;
    animation: float3 4.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-10deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
    fill: var(--bg-white);
}

/* ================================
   OVERVIEW SECTION - Bento Grid
================================ */
.trade-overview {
    padding: 8rem 2rem;
    background: var(--bg-white);
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-gold-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--primary-gold);
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.section-intro h2.single-line-title {
    white-space: nowrap;
}

.section-intro.light h2 {
    color: white;
}

.section-intro p {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.section-intro.light p {
    color: rgba(255, 255, 255, 0.85);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
}

.bento-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, var(--bg-light) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(26, 35, 50, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-small {
    grid-column: span 1;
}

.bento-medium {
    grid-column: span 2;
}

.bento-highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.bento-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.bento-card:hover .bento-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-color: var(--primary-gold);
}

.bento-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-gold-dark);
    transition: color 0.4s ease;
}

.bento-card:hover .bento-icon svg {
    color: var(--navy);
}

.bento-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 700;
}

.bento-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.bento-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* Bento Accent Cards (Trade Finance & Risk Management) */
.bento-accent {
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border: 2px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.bento-accent:hover {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, white 0%, var(--bg-cream) 100%);
}

.bento-accent-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    transition: all 0.4s ease;
}

.bento-accent:hover .bento-accent-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.bento-accent-icon svg {
    width: 28px;
    height: 28px;
    color: var(--navy);
}

.bento-accent h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.bento-small.bento-accent {
    min-height: 280px;
}

.bento-accent p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.bento-accent-line {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, transparent 100%);
    border-radius: 2px;
    margin-top: 1.5rem;
    width: 60px;
    transition: width 0.4s ease;
}

.bento-accent:hover .bento-accent-line {
    width: 100%;
}

.bento-list {
    list-style: none;
    margin-top: 1.5rem;
}

.bento-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bento-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
}

.bento-footer-text {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-medium);
}

/* Bento Featured Card (Import & Export) */
.bento-featured {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    display: flex;
    flex-direction: column;
}

.bento-featured-header {
    margin-bottom: 2rem;
}

.bento-featured-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.bento-featured h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.bento-featured-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
}

.bento-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.bento-feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.bento-feature-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-4px);
}

.bento-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.bento-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--navy);
}

.bento-feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.bento-featured-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.bento-featured-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .bento-featured-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .bento-feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem;
    }
    
    .bento-feature-icon {
        margin: 0;
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .bento-feature-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* Bento Medium Visual */
.bento-visual {
    position: relative;
    height: 80px;
    margin-bottom: 1.5rem;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(212, 175, 55, 0.3), var(--primary-gold));
}

.node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.node-1 { left: 10%; animation: nodePulse 2s ease-in-out infinite; }
.node-2 { left: 50%; animation: nodePulse 2s ease-in-out infinite 0.5s; }
.node-3 { left: 90%; animation: nodePulse 2s ease-in-out infinite 1s; }

@keyframes nodePulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.3); }
}

/* Bento Highlight */
.highlight-content {
    position: relative;
    z-index: 2;
}

.highlight-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.bento-highlight h3 {
    color: white;
    font-size: 2rem;
}

.bento-highlight p {
    color: rgba(255, 255, 255, 0.85);
}

.highlight-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* ================================
   PROCESS SECTION - Timeline
================================ */
.trade-process {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.process-timeline {
    position: relative;
    max-width: 100%;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 40px;
    height: calc(100% - 120px);
    width: 2px;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--primary-gold) 80%, transparent 100%);
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
}

.process-step:hover .step-marker {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.step-marker span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.step-features span {
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: 500;
}

/* ================================
   PRODUCT CATEGORIES
================================ */
.product-categories {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    overflow: hidden;
}

.categories-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, white 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-color: var(--primary-gold);
}

.category-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-gold-dark);
    transition: color 0.4s ease;
}

.category-card:hover .category-icon svg {
    color: var(--navy);
}

.category-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.category-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.category-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-gold-dark);
    letter-spacing: 1px;
}

/* ================================
   REGIONS SECTION
================================ */
.trade-regions {
    padding: 8rem 2rem;
    background: var(--bg-white);
}

.regions-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.region-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, var(--bg-light) 100%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.region-card:hover::before {
    transform: scaleX(1);
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(26, 35, 50, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.region-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.region-card:hover .region-card-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-color: var(--primary-gold);
    transform: scale(1.1);
}

.region-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-gold-dark);
    transition: color 0.4s ease;
}

.region-card:hover .region-card-icon svg {
    color: var(--navy);
}

.region-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.region-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.region-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-gold-dark);
    letter-spacing: 1px;
}

.region-tag.primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-color: var(--primary-gold);
    color: var(--navy);
}

/* ================================
   BENEFITS SECTION
================================ */
.trade-benefits {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-background {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.benefits-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.benefit-showcase-card {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, white 100%);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 8px 32px rgba(26, 35, 50, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-showcase-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.benefit-showcase-card:hover::before {
    transform: scaleY(1);
}

.benefit-showcase-card:hover {
    transform: translateX(10px);
    box-shadow: 0 16px 48px rgba(26, 35, 50, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.benefit-showcase-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    line-height: 1;
    opacity: 0.3;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.benefit-showcase-card:hover .benefit-showcase-number {
    opacity: 0.6;
    transform: scale(1.1);
}

.benefit-showcase-content {
    flex: 1;
}

.benefit-showcase-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.benefit-showcase-content p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .benefit-showcase-card {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .benefit-showcase-number {
        font-size: 2.5rem;
    }
}

/* ================================
   CTA SECTION
================================ */
.trade-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-button.cta-wide {
    width: auto;
    min-width: 280px;
    padding: 1.2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-button.outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.cta-button.outline svg {
    width: 20px;
    height: 20px;
}

.cta-button.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-4px);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.cta-features svg {
    width: 18px;
    height: 18px;
    color: var(--primary-gold);
}

/* ================================
   RESPONSIVE STYLES
================================ */
@media (max-width: 1024px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 0;
    }
    
    .service-hero-visual {
        order: -1;
    }
    
    .globe-container {
        width: 300px;
        height: 300px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .bento-highlight {
        grid-column: span 2;
    }
    
    .regions-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding-top: 70px;
    }
    
    .service-hero-grid {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .trade-overview,
    .trade-process,
    .product-categories,
    .trade-regions,
    .trade-benefits,
    .trade-cta {
        padding: 5rem 1rem;
    }
    
    .service-hero-content {
        text-align: center;
    }
    
    .breadcrumb {
        justify-content: center;
    }
    
    .service-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .service-hero-cta {
        justify-content: center;
    }
    
    .globe-container {
        width: 250px;
        height: 250px;
    }
    
    .globe-core {
        width: 100px;
        height: 100px;
    }
    
    .globe-core svg {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .floating-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .trade-overview,
    .trade-process,
    .product-categories,
    .trade-regions,
    .trade-benefits,
    .trade-cta {
        padding: 5rem 1rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-medium,
    .bento-highlight {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .step-marker {
        width: 60px;
        height: 60px;
    }
    
    .step-marker span {
        font-size: 1.2rem;
    }
    
    .process-step {
        gap: 1.5rem;
    }
    
    .section-intro h2.single-line-title {
        white-space: normal;
    }
    
    .categories-scroll {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.cta-wide {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .timeline-line {
        left: 30px;
        top: 30px;
        height: calc(100% - 90px);
    }
    
    .service-hero-cta {
        margin-bottom: 2rem;
    }
    
    .hero-wave {
        bottom: -1px;
    }
    
    .hero-wave svg {
        height: 80px;
    }
    
    .service-hero-grid {
        padding-bottom: 6rem;
    }
    
    .cta-features {
        display: none;
    }
    
    .map-label {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .service-hero-stats {
        gap: 1.5rem;
    }
    
    .step-features {
        gap: 0.5rem;
    }
    
    .step-features span {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .region-list {
        gap: 1rem;
    }
    
    .region-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix for footer logo link */
.footer-logo-text {
    text-decoration: none;
    display: block;
}

a.footer-logo-text {
    color: var(--primary-gold);
}

/* Fix for header logo link */
.logo-link {
    text-decoration: none;
    display: block;
}

.logo-link .logo {
    cursor: pointer;
}

