/* ========================
   TRADING & SUPPLY CSS
   Same variables as style.css
   ======================== */

/* ---- HERO ---- */
.ts-hero {
    background: linear-gradient(135deg, rgba(10,31,61,0.96) 0%, rgba(26,58,107,0.94) 100%),
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&auto=format&fit=crop&q=60') center/cover no-repeat;
    padding: 120px 20px 60px;
    color: var(--white);
    text-align: center;
    position: relative;
}

.ts-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(212,175,55,0.12) 0%, transparent 55%),
                radial-gradient(circle at 80% 70%, rgba(212,175,55,0.08) 0%, transparent 55%);
    pointer-events: none;
}

.ts-hero-content {
    max-width: 750px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.ts-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 0.88rem;
}

.ts-breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.ts-breadcrumb a:hover { color: var(--secondary); }
.ts-breadcrumb span { color: rgba(255,255,255,0.35); }
.ts-bread-active { color: var(--secondary); font-weight: 600; }

.ts-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    font-family: "Playfair Display", serif;
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ts-hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
}

.ts-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Stats */
.ts-hero-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ts-stat-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 14px;
    padding: 20px 28px;
    min-width: 140px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.ts-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(212,175,55,0.12);
}

.ts-stat-card h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 6px;
    font-family: "Playfair Display", serif;
}

.ts-stat-card p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- TAGS & SECTION HEADS ---- */
.ts-tag {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    color: var(--secondary-dark);
    border: 1px solid rgba(212,175,55,0.35);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.ts-tag.light {
    background: rgba(255,255,255,0.1);
    color: var(--secondary);
    border-color: rgba(212,175,55,0.3);
}

.ts-section-head {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.ts-section-head h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
    display: inline-block;
}

.ts-section-head h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--secondary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.ts-section-head.light h2 { color: var(--white); }
.ts-section-head.light h2::after { background: var(--secondary); }

.ts-section-head p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-top: 14px;
}

.ts-section-head.light p { color: rgba(255,255,255,0.72); }

/* ---- INTRO ---- */
.ts-intro {
    padding: 90px 20px;
    background: var(--white);
}

.ts-intro-container {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ts-intro-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 18px;
    font-family: "Playfair Display", serif;
}

.ts-intro-text h2 span { color: var(--secondary-dark); }

.ts-intro-text p {
    font-size: 0.97rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 14px;
}

.ts-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.ts-pill {
    background: var(--light-bg);
    color: var(--primary);
    border: 1px solid rgba(10,31,61,0.12);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.25s;
    cursor: default;
}

.ts-pill:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.ts-intro-img { position: relative; }

.ts-intro-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.ts-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10,31,61,0.88);
    color: var(--secondary);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid rgba(212,175,55,0.3);
}

/* ---- SERVICES ---- */
.ts-services {
    padding: 90px 20px;
    background: var(--light-bg);
}

.ts-services-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ts-service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 26px;
    border-top: 4px solid var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ts-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.ts-svc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.ts-svc-icon { font-size: 2.2rem; }

.ts-svc-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(212,175,55,0.15);
    font-family: "Playfair Display", serif;
    line-height: 1;
}

.ts-service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

.ts-service-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.ts-service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.ts-service-card ul li {
    font-size: 0.83rem;
    color: var(--text-light);
    padding: 3px 0 3px 18px;
    position: relative;
}

.ts-service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-dark);
    font-weight: 700;
}

.ts-svc-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 2px;
    transition: color 0.25s, border-color 0.25s;
}

.ts-svc-link:hover {
    color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

/* ---- PRODUCT CATEGORIES ---- */
.ts-categories {
    padding: 90px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
}

.ts-categories::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ts-cat-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    position: relative;
    z-index: 1;
}

.ts-cat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: var(--radius);
    padding: 36px 26px;
    text-align: center;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
    cursor: default;
}

.ts-cat-card:hover {
    transform: translateY(-6px);
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.4);
}

.ts-cat-card span {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 14px;
}

.ts-cat-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
    font-family: "Playfair Display", serif;
}

.ts-cat-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0;
}

/* ---- PROCESS ---- */
.ts-process {
    padding: 90px 20px;
    background: var(--white);
}

.ts-process-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ts-step {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 32px 22px;
    text-align: center;
    border-top: 4px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.ts-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--secondary);
}

.ts-step-circle {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    margin: 0 auto 16px;
    font-family: "Playfair Display", serif;
}

.ts-step-body span {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.ts-step-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: "Playfair Display", serif;
}

.ts-step-body p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ---- WHY CHOOSE US ---- */
.ts-why {
    padding: 90px 20px;
    background: var(--light-bg);
}

.ts-why-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ts-why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 26px;
    text-align: center;
    border-top: 4px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s,
                border-color 0.3s, background 0.3s;
}

.ts-why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--secondary);
    background: var(--primary);
}

.ts-why-card:hover h3 { color: var(--secondary); }
.ts-why-card:hover p  { color: rgba(255,255,255,0.82); }

.ts-why-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
}

.ts-why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    transition: color 0.3s;
}

.ts-why-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    transition: color 0.3s;
}

/* ---- TESTIMONIALS ---- */
.ts-testimonials {
    padding: 90px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.ts-testi-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ts-testi-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: var(--radius);
    padding: 32px 26px;
    transition: background 0.3s, transform 0.3s;
}

.ts-testi-card:hover {
    background: rgba(212,175,55,0.08);
    transform: translateY(-5px);
}

.ts-testi-card.featured {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.4);
}

.ts-testi-quote {
    font-size: 2.8rem;
    color: var(--secondary);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 14px;
    font-family: Georgia, serif;
}

.ts-testi-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.72;
    margin-bottom: 22px;
    font-style: italic;
}

.ts-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ts-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.82rem;
    flex-shrink: 0;
}

.ts-testi-author h4 {
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
    font-family: "Poppins", sans-serif;
}

.ts-testi-author span {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
}

.ts-stars { font-size: 0.88rem; }

/* ---- CTA BUTTONS ---- */
.ts-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .ts-services-grid,
    .ts-why-grid,
    .ts-process-grid,
    .ts-testi-grid,
    .ts-cat-grid { grid-template-columns: repeat(2, 1fr); }

    .ts-intro-container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .ts-hero { padding: 90px 16px 50px; }

    .ts-services-grid,
    .ts-why-grid,
    .ts-process-grid,
    .ts-testi-grid,
    .ts-cat-grid { grid-template-columns: 1fr; }

    .ts-hero-stats { gap: 10px; }
    .ts-stat-card { min-width: 120px; padding: 16px 18px; }
    .ts-stat-card h3 { font-size: 1.6rem; }

    .ts-intro-img img { height: 280px; }

    .ts-intro, .ts-services, .ts-categories,
    .ts-process, .ts-why,
    .ts-testimonials { padding: 60px 16px; }

    .ts-hero-btns,
    .ts-cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .ts-stat-card { min-width: 100px; }
    .ts-section-head h2 { font-size: 1.6rem; }
}