@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,600;1,600&display=swap');

:root {
    --bg-dark: #DAF0FF;
    --bg-darker: #C5E8FF;
    --bg-accent: #B0DCFF;
    --text-light: #0D2137;
    --text-muted: #2C5F8A;
    --primary: #F97316;
    --primary-hover: #EA580C;
    --secondary: #F59E0B;
    --glass-bg: #0A1929;
    --glass-border: #1A3A5C;
    --glass-glow: rgba(249, 115, 22, 0.12);
    --blue-light: #EBF5FF;
    --blue-mid: #BFDFFF;
    --blue-card: rgba(255, 255, 255, 0.65);
    --shadow-blue: rgba(10, 80, 160, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, #EA580C, #FBBF24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Glassmorphism Classes (Now dark and attractive boxes) */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: #F8FAFC;
}

.glass p,
.glass .card-text,
.glass .stat-text {
    color: #94A3B8;
}

/* Typography Helpers */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), #FBBF24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #F97316, #F59E0B);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #EA580C, #D97706);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #FFFFFF;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(193, 230, 255, 0.96);
    backdrop-filter: blur(16px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(10, 80, 160, 0.15);
    box-shadow: 0 4px 20px rgba(10, 80, 160, 0.08);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #C5E8FF;
    min-width: 260px;
    box-shadow: 0px 10px 30px 0px rgba(10, 80, 160, 0.2);
    z-index: 1000;
    border: 1px solid rgba(10, 80, 160, 0.18);
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    animation: fadeUp 0.3s ease forwards;
}

.dropdown-content a {
    color: var(--text-light);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
}

.dropdown-content a::after {
    display: none;
}

.dropdown-content a:hover {
    background-color: var(--glass-bg);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-bg-slider .slide.active {
    opacity: 1;
}

/* Image zooms slowly while active */
@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-bg-slider .slide.active {
    animation: slowZoom 8s forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(193, 230, 255, 0.96) 0%, rgba(175, 220, 255, 0.80) 50%, rgba(155, 210, 255, 0.45) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    z-index: 1;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeUp 1s ease 0.6s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations & Transitions */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.fade-left {
    transform: translateX(-50px);
}

.reveal.fade-right {
    transform: translateX(50px);
}

.reveal.fade-left.active,
.reveal.fade-right.active {
    transform: translateX(0);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 3rem;
}

/* Feature Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--glass-glow), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.3);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: none;
    /* Hide icons to match screenshot exactly */
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Stats Boxes */
.stat-box {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* Stats Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Timeline/Process */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--glass-border);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg-dark);
    border: 4px solid var(--primary);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-img img {
    border-radius: 20px;
    transition: var(--transition);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Product Section specific */
.product-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.product-img {
    height: 250px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
    flex: 1;
}

.product-features {
    margin-top: 20px;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.product-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-features li i {
    color: var(--primary);
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.05);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

.contact-info {
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-muted);
}

/* Footer */
footer {
    background: linear-gradient(180deg, #B0DCFF 0%, #8FCBF5 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(10, 80, 160, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    /* Uses the global h3 orange mix gradient by default now */
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--text-light);
}

.footer-col p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 21px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 50%;
        height: calc(100vh - 70px);
        background: #C5E8FF;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 40px;
        padding-left: 20px;
        transition: var(--transition);
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PREMIUM IMPORT/EXPORT CONTENT STYLES ===== */

/* Feature Banner Strip */
.feature-strip {
    background: linear-gradient(135deg, #0A3A5C 0%, #0D5C9A 100%);
    padding: 20px 0;
    overflow: hidden;
}

.feature-strip-inner {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.feature-strip-item i {
    color: #F97316;
    font-size: 1.3rem;
}

/* Trade Route Banner */
.trade-banner {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 60px;
}

.trade-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trade-banner:hover img {
    transform: scale(1.04);
}

.trade-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 25, 50, 0.82) 0%, rgba(10, 25, 50, 0.35) 100%);
    display: flex;
    align-items: center;
    padding: 40px;
}

.trade-banner-text h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFFFFF, #F59E0B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trade-banner-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 25px;
}

/* Trade Info Cards */
.trade-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.trade-info-card {
    background: var(--blue-card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(10, 80, 160, 0.15);
    border-radius: 16px;
    padding: 35px 30px;
    transition: var(--transition);
    box-shadow: 0 6px 24px var(--shadow-blue);
    position: relative;
    overflow: hidden;
}

.trade-info-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
    border-radius: 50%;
}

.trade-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px var(--shadow-blue);
    border-color: rgba(249, 115, 22, 0.35);
}

.trade-info-card .card-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F97316, #F59E0B);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.trade-info-card .card-icon-wrap i {
    font-size: 1.5rem;
    color: #fff;
}

.trade-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.trade-info-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    counter-reset: step-counter;
}

.process-steps::before {
    display: none;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F97316, #F59E0B);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
    font-size: 1.6rem;
    color: #fff;
    transition: var(--transition);
}

.process-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}

.process-step h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Image Gallery Grid */
.img-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 15px;
    border-radius: 20px;
    overflow: hidden;
}

.img-gallery .gallery-item {
    overflow: hidden;
    position: relative;
}

.img-gallery .gallery-item:first-child {
    grid-row: span 2;
}

.img-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-gallery .gallery-item:hover img {
    transform: scale(1.08);
}

.img-gallery .gallery-item .overlay-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 20, 50, 0.75), transparent);
    color: #fff;
    padding: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: var(--transition);
}

.img-gallery .gallery-item:hover .overlay-label {
    opacity: 1;
}

/* Blue Accent Section */
.section-blue {
    background: linear-gradient(135deg, #DAF0FF 0%, #BEE0FF 100%);
}

.section-dark-blue {
    background: linear-gradient(135deg, #0A1929 0%, #0D3561 100%);
    color: #E8F4FF;
}

.section-dark-blue h2,
.section-dark-blue h3 {
    background: linear-gradient(135deg, #FFFFFF, #F59E0B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-dark-blue p,
.section-dark-blue .card-text {
    color: rgba(200, 225, 255, 0.82);
}

.section-dark-blue .section-subtitle {
    color: #F59E0B;
}

/* Commodity Tag Pills */
.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1.5px solid;
    transition: var(--transition);
    cursor: default;
}

.tag-pill.export {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.4);
    color: #EA580C;
}

.tag-pill.export:hover {
    background: rgba(249, 115, 22, 0.2);
    transform: translateY(-2px);
}

.tag-pill.import {
    background: rgba(14, 120, 220, 0.1);
    border-color: rgba(14, 120, 220, 0.4);
    color: #0D5C9A;
}

.tag-pill.import:hover {
    background: rgba(14, 120, 220, 0.2);
    transform: translateY(-2px);
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #0A3A5C, #0D5C9A);
    border-radius: 20px;
    padding: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 65%);
    border-radius: 50%;
}

.highlight-box-icon {
    font-size: 4rem;
    color: #F97316;
    flex-shrink: 0;
}

.highlight-box h3 {
    background: linear-gradient(135deg, #FFFFFF, #F59E0B);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.highlight-box p {
    color: rgba(220, 240, 255, 0.85);
    font-size: 1.05rem;
}

/* Compliance Badge */
.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(10, 80, 160, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-blue);
}

.badge-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Section Divider Wave */
.wave-divider {
    line-height: 0;
    overflow: hidden;
}

.wave-divider svg {
    display: block;
    width: 100%;
}

/* Testimonial Cards */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: var(--blue-card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(10, 80, 160, 0.15);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 6px 24px var(--shadow-blue);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px var(--shadow-blue);
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: #F97316;
    opacity: 0.35;
    position: absolute;
    top: 20px;
    right: 24px;
}

.testimonial-card .stars {
    color: #F59E0B;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F97316;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-light);
}

.author-country {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Country Reach Map Strip */
.country-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(10, 80, 160, 0.2);
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.country-badge:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.country-badge .flag {
    font-size: 1.2rem;
}

/* Cert Strip */
.cert-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cert-item i {
    font-size: 2rem;
    color: #0D5C9A;
}

@media (max-width: 768px) {
    .img-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .img-gallery .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
        height: 220px;
    }

    .img-gallery .gallery-item {
        height: 160px;
    }

    .process-steps::before {
        display: none;
    }

    .highlight-box {
        flex-direction: column;
        padding: 35px 25px;
    }

    .trade-banner {
        height: 280px;
    }

    .trade-banner-text h2 {
        font-size: 1.8rem;
    }
}

/* =============================================
   SERVICE PAGE PREMIUM COMPONENTS
   ============================================= */

/* Trade Info Grid (6-card service detail) */
.trade-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.trade-info-card {
    background: #fff;
    border: 1px solid rgba(0, 100, 200, 0.12);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 18px rgba(0, 80, 180, 0.07);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.trade-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.trade-info-card:hover::before {
    transform: scaleX(1);
}

.trade-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 80, 180, 0.12);
}

.trade-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 15px 0 10px;
}

.trade-info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Card Icon Wrap */
.card-icon-wrap {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.35);
    margin-bottom: 5px;
}

/* Compliance Badges */
.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

/* Highlight CTA Box */
.highlight-box {
    background: linear-gradient(135deg, #0A1929 0%, #0D3561 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: flex-start;
    gap: 35px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
}

.highlight-box-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.15);
    border: 2px solid rgba(249, 115, 22, 0.4);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #F97316;
}

.highlight-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 650px;
}

/* Country Strip */
.country-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid rgba(0, 100, 200, 0.15);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 80, 180, 0.07);
    transition: var(--transition);
}

.country-badge:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.country-badge .flag {
    font-size: 1.1rem;
}

/* =============================================
   RESPONSIVE: SERVICE PAGE COMPONENTS
   ============================================= */
@media (max-width: 900px) {
    .trade-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-box {
        flex-direction: column;
        padding: 35px 28px;
    }
}

@media (max-width: 600px) {
    .trade-info-grid {
        grid-template-columns: 1fr;
    }

    .highlight-box {
        padding: 28px 20px;
    }

    .highlight-box h3 {
        font-size: 1.4rem;
    }

    .compliance-badges {
        gap: 8px;
    }
}