@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Color Palette - Warm & Trustworthy */
    --primary-navy: #0f172a;
    /* Deep Navy for Trust */
    --primary-light: #1e293b;
    --accent: #d97706;
    /* Warm Amber/Gold */
    --accent-hover: #b45309;
    --bg-warm: #fdfcfb;
    /* Very light warm off-white */
    --bg-card: #ffffff;
    --soft-grey: #f1f5f9;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;

    /* Design Tokens */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 10, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* 🎭 MODERN ANIMATIONS (Reveal on Scroll) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4 {
    color: var(--primary-navy);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Layout Blocks */
.section {
    padding: 2.5rem 0;
}

.section-light {
    background-color: var(--white);
}

.section-warm {
    background-color: var(--bg-warm);
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    padding: 3rem 0 4rem;
    background: radial-gradient(circle at top right, rgba(217, 119, 6, 0.05), transparent 600px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(217, 119, 6, 0.1);
    backdrop-filter: blur(8px);
    color: var(--accent);
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    border: 1px solid rgba(217, 119, 6, 0.2);
}

.hero h1 {
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    display: inline-block;
    color: var(--accent);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(217, 119, 6, 0.2);
    z-index: -1;
}

.hero p {
    margin: 1.5rem 0 2rem;
    max-width: 600px;
}

.hero-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.hero-visual:hover .hero-img-main {
    transform: scale(1.03);
}

.hero-stats {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--soft-grey);
}

.stat-item:last-child {
    border: none;
}

.stat-val {
    font-weight: 800;
    color: var(--primary-navy);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(217, 119, 6, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
}

.btn-secondary:hover {
    background-color: var(--primary-navy);
    color: var(--white);
}

/* Commodity Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.commodity-card {
    background: var(--bg-card);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
    border: 1px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.commodity-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 119, 6, 0.2);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.commodity-card:hover .card-image img {
    transform: scale(1.1);
}

.card-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    background: rgba(217, 119, 6, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.card-link {
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--soft-grey);
    border-radius: 99px;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-link span {
    transition: transform 0.3s ease;
}

.card-link:hover {
    background: var(--accent);
    color: white;
    padding-right: 1.5rem;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.card-link:hover span {
    transform: translateX(5px);
}

/* Trade Corridors Pill/Band */
.corridor-pill {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.corridor-icon {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Timeline / Steps */
.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--soft-grey);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-num {
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 4px solid var(--soft-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 900;
    transition: border-color 0.3s;
}

.step:hover .step-num {
    border-color: var(--accent);
}

/* Forms */
.form-card {
    background: var(--white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    max-width: 800px;
    margin: 0 auto;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1.125rem;
    background: var(--bg-warm);
    border: 1px solid var(--soft-grey);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--accent);
    outline: none;
}

/* Footer Modern Layout */
footer {
    background: var(--primary-navy);
    color: var(--white);
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo span {
    color: var(--accent);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-info-list li {
    color: #94a3b8;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Adaptations */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        margin: 2rem auto;
    }

    .cta-group {
        justify-content: center;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline::before {
        display: none;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4rem 0;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-group {
        flex-direction: column;
    }

    .form-card {
        padding: 2rem;
    }
}

/* --- PREMIUM COMPONENTS --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    height: 40px;
    background-color: var(--primary-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    padding: 0 2rem;
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 700;
}

.ticker-item .price {
    color: var(--accent);
    margin: 0 8px;
}

.ticker-item .change-up {
    color: #10b981;
}

.ticker-item .change-down {
    color: #ef4444;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.section-map {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.8)), url('https://images.pexels.com/photos/2226680/pexels-photo-2226680.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.map-content h2 {
    color: var(--white);
    text-align: left;
    margin-bottom: 1.5rem;
}

.map-viz {
    position: relative;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.map-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.map-pulsing-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px var(--accent);
}

.map-pulsing-dot::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    animation: mapPulse 2.5s infinite;
}

.map-label {
    position: absolute;
    top: -28px;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    font-weight: 600;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.point-istanbul {
    top: 38%;
    left: 52%;
}

.point-rotterdam {
    top: 22%;
    left: 46%;
}

.point-houston {
    top: 42%;
    left: 24%;
}

.point-fujairah {
    top: 48%;
    left: 62%;
}

.point-hongkong {
    top: 52%;
    left: 82%;
}

.point-istanbul .map-pulsing-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.point-istanbul .map-label {
    background: var(--accent);
    top: -32px;
    font-size: 0.8rem;
    border-color: var(--white);
}

.trust-bar {
    padding: 3rem 0;
    border-top: 1px solid var(--soft-grey);
    border-bottom: 1px solid var(--soft-grey);
    background: var(--white);
}

.trust-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    filter: grayscale(1);
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--primary-navy);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-box i {
    font-size: 24px;
}

/* 📝 FORM STACKING */
.form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid var(--soft-grey);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s;
    background: #fcfdfe;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
    outline: none;
    background: var(--white);
}

.grid-2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.map-viz {
    position: relative;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.map-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.map-pulsing-dot {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px var(--accent);
}

.map-pulsing-dot::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    animation: mapPulse 2.5s infinite;
}

.map-label {
    position: absolute;
    top: -28px;
    background: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
    font-weight: 600;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

.point-istanbul {
    top: 38%;
    left: 52%;
}

.point-rotterdam {
    top: 22%;
    left: 46%;
}

.point-houston {
    top: 42%;
    left: 24%;
}

.point-fujairah {
    top: 48%;
    left: 62%;
}

.point-hongkong {
    top: 52%;
    left: 82%;
}

.point-istanbul .map-pulsing-dot {
    width: 16px;
    height: 16px;
    background: #fff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.point-istanbul .map-label {
    background: var(--accent);
    top: -32px;
    font-size: 0.8rem;
    border-color: var(--white);
}

.trust-bar {
    padding: 3rem 0;
    border-top: 1px solid var(--soft-grey);
    border-bottom: 1px solid var(--soft-grey);
    background: var(--white);
}

.trust-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
    filter: grayscale(1);
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--primary-navy);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-box i {
    font-size: 24px;
}

/* 📝 FORM STACKING */
.form-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1.5px solid var(--soft-grey);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s;
    background: #fcfdfe;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
    outline: none;
    background: var(--white);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   RTL LANGUAGE SUPPORT (ARABIC, ETC)
   ========================================================================== */
html[dir="rtl"] {
    text-align: right;
}

html[dir="rtl"] .breadcrumb-list {
    padding-left: 0;
    padding-right: 0;
}

html[dir="rtl"] .breadcrumb-item {
    flex-direction: row-reverse;
}

html[dir="rtl"] .breadcrumb-separator {
    transform: rotate(180deg);
}

html[dir="rtl"] .nav-links li {
    margin-left: 1.5rem;
    margin-right: 0;
}

html[dir="rtl"] .footer-col {
    text-align: right;
}

html[dir="rtl"] .feature-icon-box {
    margin-right: 0;
    margin-left: 1rem;
}

/* For elements that need reverse floating or margin flipping */
html[dir="rtl"] .me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

html[dir="rtl"] .ms-3 {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}

html[dir="rtl"] .pe-3 {
    padding-left: 1rem !important;
    padding-right: 0 !important;
}

html[dir="rtl"] .ps-3 {
    padding-right: 1rem !important;
    padding-left: 0 !important;
}b o d y   {   f o n t - d i s p l a y :   s w a p ;   }  
 