/* ================================================================
   FASTHARI TRADING — Premium Enterprise CSS
   Version: 1.0 | faftharitrading.com
   ================================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ── */
:root {
    --navy: #0A2342;
    --navy-dark: #061729;
    --navy-light: #0d2d56;
    --navy-mid: #122B4F;
    --gold: #D4AF37;
    --gold-light: #f0cb5a;
    --gold-dark: #b8941e;
    --gold-pale: #f5e99a;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-grey: #F0F2F5;
    --border-grey: #E2E8F0;
    --text-dark: #1A202C;
    --text-body: #4A5568;
    --text-muted: #718096;
    --success: #38A169;
    --error: #E53E3E;
    --shadow-sm: 0 1px 3px rgba(10, 35, 66, .08), 0 1px 2px rgba(10, 35, 66, .06);
    --shadow-md: 0 4px 16px rgba(10, 35, 66, .12), 0 2px 8px rgba(10, 35, 66, .08);
    --shadow-lg: 0 10px 40px rgba(10, 35, 66, .16), 0 4px 16px rgba(10, 35, 66, .10);
    --shadow-xl: 0 25px 60px rgba(10, 35, 66, .22), 0 10px 30px rgba(10, 35, 66, .14);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, .30);
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: all .3s cubic-bezier(.4, 0, .2, 1);
    --transition-fast: all .18s cubic-bezier(.4, 0, .2, 1);
    --transition-slow: all .5s cubic-bezier(.4, 0, .2, 1);
    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* ==========================================
   WELCOME SECTION
========================================== */

/* ==========================================
   WELCOME SECTION - PROFESSIONAL LAYOUT
========================================== */

/* ==========================================
   WELCOME SECTION - FINAL PROFESSIONAL
========================================== */

/* ==========================
   WELCOME SECTION
========================== */

.welcome-section {
    padding: 25px 0 70px;
    margin-top: -30px;
}

.welcome-section .container {
    max-width: 1400px;
}

.welcome-big-image {
    margin-top: -12px;
}

.welcome-section .col-lg-6:last-child {
    padding-top: 12px;
}

.welcome-section .row {
    align-items: flex-start;
}

.welcome-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* LEFT IMAGE */

.welcome-section .col-lg-7 {

    flex: 0 0 62%;
    max-width: 62%;

    padding-right: 20px;

}

/* RIGHT CONTENT */

.welcome-section .col-lg-5 {

    flex: 0 0 38%;
    max-width: 38%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding-left: 35px;

    /* Content கீழே வர */
    padding-top: 45px;

}

/* IMAGE */

.welcome-big-image {
    width: 100%;
}

.welcome-big-image img {

    width: 100%;

    height: 520px;

    object-fit: cover;

    object-position: center center;

    display: block;

    border-radius: 20px;

    border: 3px solid #d4af37;

    transform: translateY(-35px);

    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);

}

/* CONTENT */

.section-eyebrow {

    display: inline-block;

    color: #d4af37;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;

    text-transform: uppercase;

}

.section-title {

    font-size: 42px;

    color: #0b2341;

    line-height: 1.25;

    margin-bottom: 22px;

}

.section-title .gold {

    color: #d4af37;

}

.welcome-section p {

    font-size: 17px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 18px;

}

/* MOBILE */

@media(max-width:991px) {

    .welcome-section .col-lg-7,
    .welcome-section .col-lg-5 {

        flex: 0 0 100%;

        max-width: 100%;

        padding: 0 15px;

    }

    .welcome-big-image {

        margin-bottom: 35px;

    }

    .welcome-big-image img {

        height: 340px;

    }

    .section-title {

        font-size: 32px;

    }

}

.welcome-section p {

    font-size: 17px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 18px;

}

@media(max-width:991px) {

    .welcome-big-image {

        margin-bottom: 35px;

    }

    .welcome-big-image img {

        height: 350px;

    }

    .section-title {

        font-size: 32px;

    }

}



/* ==========================================
   PRODUCT IMAGE MARQUEE
========================================== */

.product-showcase {

    background: #fff;

    padding: 45px 0;

    overflow: hidden;

}

.product-marquee {

    width: 100%;

    overflow: hidden;

}

.product-track img {

    width: 460px;

    height: 300px;

    object-fit: cover;

    border-radius: 20px;

    border: 3px solid #d4af37;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);

    transition: .4s;

    flex-shrink: 0;

}

.product-track {

    display: flex;

    gap: 35px;

    width: max-content;

    animation: moveProducts 24s linear infinite;

}

.product-track img:hover {

    transform: scale(1.05);

}

@keyframes moveProducts {

    0% {

        transform: translateX(-50%);

    }

    100% {

        transform: translateX(0);

    }

}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ── Page Loader ── */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity .5s ease, visibility .5s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, .1);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 99px;
    animation: loaderFill 1.5s ease-in-out forwards;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .8;
        transform: scale(.97)
    }
}

@keyframes loaderFill {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

/*==================================================
  HEADER
==================================================*/

.navbar-main {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    border-bottom: 5px solid #0b2f59;
}

/* Bottom Blue Strip */
.navbar-main::after {
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0b2f59, #1d4d85, #0b2f59);
}

/* Top Bar */

.navbar-top-bar {
    background: #0b2f59;
    color: #fff;
    font-size: 14px;
}

.navbar-top-bar a {
    color: #fff;
    text-decoration: none;
}

.navbar-top-bar a:hover {
    color: #d4af37;
}

/* Main Navbar */

.navbar {
    min-height: 110px;
}

/* Logo Area */

.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    background: #fff;
    padding: 8px 18px;
    border-radius: 16px;
}

.navbar-brand-logo img {

    width: 235px;
    max-width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    transition: .3s;

}

/* Company Name */

.brand-text .name {

    font-size: 28px;
    font-weight: 700;
    color: #0b2f59;
    line-height: 1.1;

}

.brand-text .sub {

    font-size: 14px;
    color: #777;

}

/* Menu */

.navbar-nav {

    gap: 8px;

}

.nav-link {

    color: #b78a15 !important;
    font-size: 17px;
    font-weight: 600;
    padding: 12px 18px !important;
    transition: .3s;

}

.nav-link:hover {

    color: #ffffff !important;
    background: #d4af37;
    border-radius: 8px;

}

.nav-link.active {

    color: #fff !important;
    background: #0b2f59;
    border-radius: 8px;

}

/* Dropdown */

.dropdown-menu {

    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

}

.dropdown-item {

    padding: 12px 20px;
    font-weight: 500;

}

.dropdown-item:hover {

    background: #d4af37;
    color: #fff;

}

/* Quote Button */

.btn-nav-quote {

    background: #d4af37;
    color: #fff !important;
    border-radius: 40px;
    padding: 12px 25px !important;
    margin-left: 10px;
    font-weight: 700;

}

.btn-nav-quote:hover {

    background: #0b2f59;
    color: #fff !important;

}

/* Social Icons */

.social-links a {

    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;

}

.social-links a:hover {

    background: #d4af37;
    color: #fff;

}

/* Mobile */

@media(max-width:991px) {

    .navbar {

        min-height: 80px;

    }

    .navbar-brand-logo img {

        width: 145px;
        max-height: 70px;

    }

    .brand-text {

        display: none;

    }

    .nav-link {

        padding: 12px 15px !important;

    }

}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 90px;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(.4, 0, .2, 1);
    transform: scale(1.05);
    animation: none;
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 8s ease-out forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.05)
    }

    to {
        transform: scale(1)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(6, 23, 41, .92) 0%,
            rgba(10, 35, 66, .75) 50%,
            rgba(6, 23, 41, .65) 100%);
}

.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--navy-dark), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(212, 175, 55, .12);
    border: 1px solid rgba(212, 175, 55, .35);
    border-radius: var(--radius-full);
    padding: .4rem 1rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp .8s ease .2s both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .6;
        transform: scale(1.4)
    }
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp .8s ease .4s both;
}

.hero-heading .gold-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .78);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp .8s ease .6s both;
    font-weight: 400;
}

.hero-actions {
    animation: fadeInUp .8s ease .8s both;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-primary-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-weight: 700;
    padding: .85rem 2rem;
    border-radius: var(--radius-full);
    font-size: .92rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: none;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, .5);
    color: var(--navy-dark);
}

.btn-primary-gold:hover::before {
    opacity: 1;
}

.btn-primary-gold span {
    position: relative;
    z-index: 1;
}

.btn-primary-gold i {
    position: relative;
    z-index: 1;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: .85rem 2rem;
    border-radius: var(--radius-full);
    font-size: .92rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, .35);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .7);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 2rem 0;
}

.hero-stats-inner {
    background: rgba(6, 23, 41, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, .2);
    border-bottom: 1px solid rgba(212, 175, 55, .2);
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(212, 175, 55, .2);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .3rem;
}

/* Hero Slider Controls */
.hero-controls {
    position: absolute;
    bottom: 120px;
    right: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* ================================================================
   SECTION STYLES
   ================================================================ */
section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 7rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: .75rem;
    position: relative;
    padding: 0 1.5rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-eyebrow::before {
    right: 100%;
    transform: translateX(50%);
}

.section-eyebrow::after {
    left: 100%;
    transform: translateX(-50%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-title .gold {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* BG Variants */
.bg-navy {
    background: var(--navy);
}

.bg-navy-dark {
    background: var(--navy-dark);
}

.bg-light-grey {
    background: var(--light-grey);
}

.bg-gradient-navy {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
}

.bg-gradient-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
}

/* ================================================================
   FEATURE CARDS — WHY CHOOSE US
   ================================================================ */
.features-section {
    background: var(--light-grey);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, .2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(10, 35, 66, .06), rgba(10, 35, 66, .1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    color: var(--navy);
    transition: var(--transition);
    border: 1px solid rgba(10, 35, 66, .08);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: transparent;
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem;
    font-family: var(--font-primary);
}

.feature-text {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ================================================================
   PRODUCTS SECTION
   ================================================================ */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-card-img {
    position: relative;
    overflow: hidden;
    height: 230px;
    background: var(--light-grey);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

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

.product-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-size: .7rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: var(--radius-full);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 23, 41, .85), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-overlay .btn-quote-overlay {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-weight: 700;
    padding: .6rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: none;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.product-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: .72rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.product-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .6rem;
    font-family: var(--font-primary);
}

.product-desc {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.product-meta-item {
    font-size: .75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: .3rem;
}

.product-meta-item i {
    color: var(--gold);
    font-size: .7rem;
}

.btn-quote-card {
    background: transparent;
    color: var(--navy);
    font-weight: 700;
    padding: .6rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    border: 2px solid var(--navy);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    align-self: flex-start;
}

.btn-quote-card:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent;
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ================================================================
   TRADING PROCESS
   ================================================================ */
.process-section {
    background: var(--navy);
}

.process-step {
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 2rem 1rem;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3rem;
    right: -15%;
    width: 30%;
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, .5), transparent);
}

.process-num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .12);
    border: 2px solid rgba(212, 175, 55, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    transition: var(--transition);
}

.process-step:hover .process-num {
    background: var(--gold);
    color: var(--navy-dark);
    transform: scale(1.1);
    border-color: var(--gold);
}

.process-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.process-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
}

.process-text {
    font-size: .85rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section {
    background: var(--light-grey);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-grey);
    position: relative;
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--gold);
    line-height: .6;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
    opacity: .3;
}

.testimonial-text {
    font-size: .95rem;
    color: var(--text-body);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: .85rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid rgba(212, 175, 55, .3);
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-size: .95rem;
}

.testimonial-company {
    font-size: .8rem;
    color: var(--text-muted);
}

/* ================================================================
   NEWS SECTION
   ================================================================ */
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.news-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: .75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.news-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .75rem;
    line-height: 1.4;
}

.news-excerpt {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.news-link {
    color: var(--gold);
    font-weight: 600;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
}

.news-link:hover {
    color: var(--gold-dark);
    gap: .6rem;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .08) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .06) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* ================================================================
   INDUSTRIES GRID
   ================================================================ */
.industry-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
    transition: var(--transition);
    cursor: default;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, .3);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    transform: scale(1.2);
}

.industry-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--navy);
}

/* ================================================================
   FAQ SECTION
   ================================================================ */
.faq-section {
    background: var(--light-grey);
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
    font-family: var(--font-primary);
}

.faq-question:hover,
.faq-question.open {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.faq-question .faq-icon {
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-question.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}

.faq-answer.open {
    max-height: 300px;
    padding: 1.25rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: .92rem;
    line-height: 1.8;
}

/* ================================================================
   NEWSLETTER
   ================================================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.newsletter-input-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 10rem 1rem 1.5rem;
    border-radius: var(--radius-full);
    border: none;
    font-size: .95rem;
    box-shadow: var(--shadow-lg);
    outline: none;
    font-family: var(--font-body);
}

.newsletter-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    padding: 0 1.5rem;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--navy-dark);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer-main {
    background: var(--navy-dark);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, .15);
}

.footer-brand img {
    height: 70px;
    margin-bottom: 1.25rem;
}

.footer-about {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: .75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links li {
    margin-bottom: .6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, .55);
    font-size: .87rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: .35rem;
}

.footer-links a::before {
    content: '›';
    color: var(--gold);
    font-size: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.footer-contact-item .icon {
    color: var(--gold);
    font-size: 1rem;
    margin-top: .2rem;
    flex-shrink: 0;
}

.footer-contact-item .info {
    font-size: .87rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.6;
}

.footer-contact-item .info strong {
    color: rgba(255, 255, 255, .85);
    display: block;
    margin-bottom: .1rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, .3);
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 1.25rem 0;
    margin-top: 3rem;
}

.footer-bottom-text {
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
}

.footer-bottom-text a {
    color: rgba(212, 175, 55, .7);
}

.footer-bottom-text a:hover {
    color: var(--gold);
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, .5);
}

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: .1s;
}

.animate-delay-2 {
    transition-delay: .2s;
}

.animate-delay-3 {
    transition-delay: .3s;
}

.animate-delay-4 {
    transition-delay: .4s;
}

.animate-delay-5 {
    transition-delay: .5s;
}

/* ================================================================
   PAGE HEADER (Inner Pages)
   ================================================================ */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 9rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .06) 0%, transparent 70%);
}

.page-header-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: .5rem;
}

.page-header-subtitle {
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .3);
}

.breadcrumb-item a {
    color: var(--gold);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, .6);
}

/* ================================================================
   GALLERY PAGE
   ================================================================ */
.gallery-filter {
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--border-grey);
    color: var(--text-muted);
    padding: .5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin: .25rem;
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.masonry-grid {
    columns: 3;
    column-gap: 1.25rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform .5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 23, 41, .9), rgba(6, 23, 41, .3));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay-text {
    color: var(--white);
    font-size: .9rem;
    font-weight: 600;
}

.masonry-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--gold);
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-grey);
    height: 100%;
}

.contact-icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-label {
    font-size: .75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    margin-bottom: .25rem;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.contact-value a {
    color: var(--navy);
}

.contact-value a:hover {
    color: var(--gold);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-grey);
}

.form-floating label {
    color: var(--text-muted);
    font-size: .9rem;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border-grey);
    border-radius: var(--radius-sm);
    padding: .75rem 1rem;
    font-size: .92rem;
    color: var(--text-dark);
    transition: var(--transition);
    font-family: var(--font-body);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(10, 35, 66, .1);
    outline: none;
}

.form-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem;
}

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

.btn-submit {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    font-weight: 700;
    padding: .9rem 2.5rem;
    border-radius: var(--radius-full);
    border: none;
    font-size: .92rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ================================================================
   ADMIN PANEL
   ================================================================ */
.admin-sidebar {
    width: 260px;
    background: var(--navy-dark);
    height: 100vh;
    padding-bottom: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    overflow-y: auto;
    transition: var(--transition-slow);
    border-right: 1px solid rgba(212, 175, 55, .1);
}

.admin-sidebar.collapsed {
    width: 70px;
}

.admin-main {
    margin-left: 260px;
    min-height: 100vh;
    background: var(--off-white);
    transition: var(--transition-slow);
}

.admin-main.collapsed {
    margin-left: 70px;
}

.admin-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-grey);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-sidebar-logo {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, .1);
    margin-bottom: .5rem;
}

.admin-sidebar-logo img {
    height: 45px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem 1.5rem;
    color: rgba(255, 255, 255, .6);
    font-size: .87rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.admin-nav a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: rgba(212, 175, 55, .6);
}

.admin-nav a:hover,
.admin-nav a.active {
    color: var(--white);
    background: rgba(212, 175, 55, .08);
}

.admin-nav a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
}

.admin-nav a.active i {
    color: var(--gold);
}

.admin-nav-section {
    font-size: .65rem;
    color: rgba(255, 255, 255, .25);
    text-transform: uppercase;
    letter-spacing: .15em;
    padding: 1.25rem 1.5rem .4rem;
    font-weight: 700;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
    margin-bottom: 1.5rem;
}

.admin-stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.admin-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.admin-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.admin-stat-label {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: .2rem;
}

.admin-table {
    border-radius: var(--radius);
    overflow: hidden;
}

.admin-table th {
    background: var(--navy);
    color: var(--white);
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600;
    padding: .9rem 1rem;
    border: none;
}

.admin-table td {
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--border-grey);
    font-size: .88rem;
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(10, 35, 66, .02);
}

.badge-status {
    padding: .3rem .8rem;
    border-radius: var(--radius-full);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .06em;
}

.badge-new {
    background: rgba(212, 175, 55, .12);
    color: var(--gold-dark);
}

.badge-active {
    background: rgba(56, 161, 105, .1);
    color: var(--success);
}

.badge-inactive {
    background: rgba(229, 62, 62, .08);
    color: var(--error);
}

/* ================================================================
   COMMODITIES PAGE
   ================================================================ */
.commodity-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-grey);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.commodity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, .3);
}

.commodity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition);
}

.commodity-card:hover .commodity-icon {
    transform: scale(1.2) rotate(5deg);
}

.commodity-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}

.commodity-desc {
    font-size: .84rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Market Ticker */
.market-ticker-wrap {
    background: var(--navy);
    padding: .75rem 0;
    border-top: 2px solid var(--gold);
    overflow: hidden;
}

.ticker-label {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy-dark);
    font-weight: 700;
    font-size: .75rem;
    padding: .25rem .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
    border-radius: var(--radius-full);
    margin-right: 1rem;
    flex-shrink: 0;
}

.ticker-content {
    display: flex;
    gap: 2.5rem;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .8);
    font-size: .82rem;
}

.ticker-symbol {
    color: var(--gold);
    font-weight: 700;
}

.ticker-price {
    color: var(--white);
}

.ticker-change.up {
    color: #4ade80;
}

.ticker-change.down {
    color: #f87171;
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* Countries Map Section */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: .75rem;
}

.country-badge {
    background: var(--white);
    border: 1px solid var(--border-grey);
    border-radius: var(--radius);
    padding: .75rem 1rem;
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .5rem;
    justify-content: center;
}

.country-badge:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(212, 175, 55, .05);
    transform: translateY(-2px);
}

.country-flag {
    font-size: 1.2rem;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199px) {
    .masonry-grid {
        columns: 2;
    }
}

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-stats-inner {
        flex-wrap: wrap;
        padding: 1.5rem;
    }

    .stat-item {
        min-width: 40%;
    }

    .stat-item::after {
        display: none;
    }

    .process-step::after {
        display: none;
    }

    .admin-sidebar {
        transform: translateX(-100%);
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    section {
        padding: 3.5rem 0;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        gap: .75rem;
    }

    .btn-primary-gold,
    .btn-outline-white {
        padding: .7rem 1.4rem;
        font-size: .82rem;
    }

    .masonry-grid {
        columns: 1;
    }

    .hero-stats-inner {
        padding: 1rem;
        gap: .5rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .navbar-top-bar {
        display: none;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-stats-inner {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, .15);
        padding-bottom: .75rem;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}