/**
 * Novex Trading - Master Stylesheet
 * Palette: Navy Blue (#0A192F, #0F2744, #1E3A8A) & Gold/Yellow (#F59E0B, #FBBF24, #D97706)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --navy-950: #060e1a;
    --navy-900: #0a192f;
    --navy-800: #0f2744;
    --navy-700: #16365c;
    --navy-600: #1e4a7a;
    --navy-500: #2b6cb0;
    
    --gold-500: #f59e0b;
    --gold-400: #fbbf24;
    --gold-600: #d97706;
    --gold-100: #fef3c7;
    --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --navy-gradient: linear-gradient(135deg, #0a192f 0%, #0f2744 50%, #16365c 100%);
    --card-gradient: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --bg-alt: #f1f5f9;
    --border-light: #e2e8f0;
    --border-gold: rgba(245, 158, 11, 0.3);
    
    --shadow-sm: 0 1px 3px rgba(10, 25, 47, 0.08);
    --shadow-md: 0 4px 12px rgba(10, 25, 47, 0.1);
    --shadow-lg: 0 10px 30px rgba(10, 25, 47, 0.12);
    --shadow-gold: 0 6px 20px rgba(245, 158, 11, 0.35);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Persian RTL Typography */
[dir="rtl"] body, [dir="rtl"] input, [dir="rtl"] button, [dir="rtl"] select, [dir="rtl"] textarea {
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Corporate Vector Icons */
.svg-ic {
    display: inline-block;
    vertical-align: middle;
    stroke: currentColor;
    flex-shrink: 0;
}

.svg-ic-gold {
    stroke: var(--gold-500) !important;
}

.svg-ic-navy {
    stroke: var(--navy-800) !important;
}

.country-tag-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 19px;
    background: var(--gold-gradient);
    color: var(--navy-950);
    font-size: 0.72rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    font-size: 0.98rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--navy-950);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
    filter: brightness(1.05);
}

.btn-navy {
    background: var(--navy-800);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-navy:hover {
    background: var(--navy-700);
    color: var(--gold-400);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-400);
    border: 2px solid var(--gold-400);
}

.btn-outline-gold:hover {
    background: var(--gold-400);
    color: var(--navy-950);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: #ffffff;
    color: var(--navy-900);
    border-color: #ffffff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
}

/* Badges */
.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.35);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.dark-mode-badge {
    background: rgba(245, 158, 11, 0.18);
    color: var(--gold-400);
    border: 1px solid rgba(245, 158, 11, 0.4);
}

/* Header & Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy-900);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    border-bottom: 2px solid rgba(245, 158, 11, 0.25);
}

.topbar {
    background: var(--navy-950);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-item a:hover {
    color: var(--gold-400);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-950);
    font-weight: 900;
    font-size: 1.4rem;
    box-shadow: var(--shadow-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-sub {
    color: var(--gold-400);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-400);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-400);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 3px;
}

.lang-btn {
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    color: #cbd5e1;
    cursor: pointer;
}

.lang-btn.active {
    background: var(--gold-gradient);
    color: var(--navy-950);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--navy-gradient);
    color: #ffffff;
    padding: 90px 0 110px;
    overflow: hidden;
    border-bottom: 3px solid var(--gold-500);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(245, 158, 11, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.7;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.85rem;
    font-weight: 900;
    line-height: 1.25;
    margin: 20px 0;
    color: #ffffff;
}

.hero-content h1 span {
    color: var(--gold-400);
}

.hero-lead {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 620px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 35px;
}

.hero-trust-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 20px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #e2e8f0;
}

.hero-trust-item svg {
    color: var(--gold-400);
    flex-shrink: 0;
}

.hero-card-preview {
    background: rgba(15, 39, 68, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-card-preview h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-quick-hubs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.hub-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    transition: var(--transition);
}

.hub-item:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: var(--gold-400);
    transform: translateX(-4px);
}

[dir="ltr"] .hub-item:hover {
    transform: translateX(4px);
}

.hub-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.hub-flag {
    font-size: 1.4rem;
}

.hub-meta {
    font-size: 0.8rem;
    color: var(--gold-400);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    background: var(--bg-white);
    padding: 45px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-light);
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-box {
    padding: 10px 15px;
    border-right: 1px solid var(--border-light);
}

[dir="rtl"] .stat-box {
    border-right: none;
    border-left: 1px solid var(--border-light);
}

.stat-box:last-child {
    border: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-number span.gold {
    color: var(--gold-500);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Section Header Styles */
.section {
    padding: 85px 0;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-900);
    margin: 12px 0 16px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Trade Countries Cards */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.country-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.country-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.country-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.country-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.country-card:hover .country-img-wrap img {
    transform: scale(1.08);
}

.country-badge-flag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid var(--gold-400);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

[dir="ltr"] .country-badge-flag {
    right: auto;
    left: 16px;
}

.country-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.country-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.country-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.country-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.country-feat-item {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.country-feat-item svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--bg-white);
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-icon-box {
    width: 62px;
    height: 62px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-600);
    font-size: 1.7rem;
    margin-bottom: 22px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--gold-gradient);
    color: var(--navy-950);
    box-shadow: var(--shadow-gold);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* Process Timeline */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-step {
    background: var(--bg-white);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--navy-900);
    color: var(--gold-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 18px;
    border: 2px solid var(--gold-400);
}

.process-step h4 {
    font-size: 1.15rem;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Order & Quote Form Component */
.order-quote-box {
    background: var(--navy-900);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 50px 45px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #e2e8f0;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-400);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.form-control option {
    background: var(--navy-900);
    color: #ffffff;
}

textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.form-feedback {
    display: none;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 0.92rem;
}

.form-feedback.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    color: #34d399;
}

.form-feedback.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #f87171;
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-400);
}

.blog-card-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--navy-900);
    color: var(--gold-400);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
}

[dir="ltr"] .blog-card-badge {
    right: auto;
    left: 16px;
}

.blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.4;
    margin-bottom: 14px;
}

.blog-card-title a:hover {
    color: var(--gold-600);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
}

/* Article Single View */
.article-header {
    background: var(--navy-gradient);
    color: #ffffff;
    padding: 70px 0 60px;
    border-bottom: 3px solid var(--gold-500);
}

.article-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 20px;
}

.article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.article-main-wrap {
    padding: 60px 0;
}

.article-content {
    background: var(--bg-white);
    padding: 45px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    font-size: 1.1rem;
    line-height: 1.9;
    color: #334155;
}

.article-content h2, .article-content h3 {
    color: var(--navy-900);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.35rem;
    border-right: 4px solid var(--gold-500);
    padding-right: 14px;
}

[dir="ltr"] .article-content h3 {
    border-right: none;
    border-left: 4px solid var(--gold-500);
    padding-right: 0;
    padding-left: 14px;
}

.article-content p {
    margin-bottom: 22px;
}

.article-content ul, .article-content ol {
    margin-bottom: 24px;
    padding-right: 25px;
}

[dir="ltr"] .article-content ul, [dir="ltr"] .article-content ol {
    padding-right: 0;
    padding-left: 25px;
}

.article-content li {
    list-style: disc;
    margin-bottom: 10px;
}

.article-content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy-800);
    background: var(--gold-100);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    border-right: 4px solid var(--gold-500);
    margin-bottom: 30px;
}

[dir="ltr"] .article-content .lead {
    border-right: none;
    border-left: 4px solid var(--gold-500);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    margin-bottom: 16px;
    color: var(--gold-400);
}

.breadcrumbs a {
    color: #cbd5e1;
}

.breadcrumbs a:hover {
    color: var(--gold-400);
}

/* Footer */
.site-footer {
    background: var(--navy-950);
    color: #cbd5e1;
    padding: 70px 0 30px;
    border-top: 3px solid var(--gold-500);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 2px;
    background: var(--gold-400);
}

[dir="ltr"] .footer-col h4::after {
    right: auto;
    left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-400);
    padding-right: 6px;
}

[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 6px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 14px;
    color: #94a3b8;
}

.footer-contact-list svg {
    color: var(--gold-400);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #64748b;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .countries-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy-900);
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        gap: 16px;
    }
    .nav-links.active {
        display: flex;
    }
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .countries-grid, .services-grid, .blog-grid, .process-grid, .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
