/* ========================================
   GOLD & SILVER SOURCERS TANZANIA
   Professional Corporate Stylesheet
   ======================================== */

/* ========================================
   CSS VARIABLES & THEME
   ======================================== */
:root {
    /* Primary Colors */
    --navy-primary: #0F172A;
    --navy-light: #1E293B;
    --navy-dark: #020617;

    /* Metallic Colors */
    --gold-primary: #C5A059;
    --gold-light: #E5D4A1;
    --gold-dark: #9A7B3F;
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, #E5D4A1 50%, #C5A059 100%);

    --silver-primary: #94A3B8;
    --silver-light: #CBD5E1;
    --silver-dark: #64748B;
    --silver-gradient: linear-gradient(135deg, #94A3B8 0%, #CBD5E1 50%, #94A3B8 100%);

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --cream: #FEFCE8;
    --charcoal: #334155;
    --text-muted: #64748B;

    /* Accent Colors */
    --success: #059669;
    --info: #0284C7;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--navy-primary);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold-primary);
    color: var(--navy-primary);
    padding: 8px 16px;
    z-index: 10000;
    transition: top var(--transition-fast);
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--navy-primary);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

p {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.text-gold { color: var(--gold-primary); }
.text-silver { color: var(--silver-primary); }
.text-muted { color: var(--text-muted); }

a {
    color: var(--gold-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--gold-primary);
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

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

.section-dark {
    background-color: var(--navy-primary);
    color: var(--white);
}

.section-dark h2,
.section-dark p {
    color: var(--white);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy-primary);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy-primary);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gold-dark);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--navy-primary);
    border-radius: 6px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--gold-primary);
    background: rgba(197, 160, 89, 0.08);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 0.9375rem;
    color: var(--navy-primary);
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.nav-dropdown-menu a:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--gold-primary);
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn:focus {
    outline: 3px solid var(--gold-primary);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--navy-primary);
    border-color: var(--gold-primary);
}

.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--navy-primary);
    border-color: var(--silver-dark);
}

.btn-secondary:hover {
    background: var(--navy-primary);
    color: var(--white);
    border-color: var(--navy-primary);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: var(--navy-primary);
}

.btn-outline-silver {
    background: transparent;
    color: var(--silver-primary);
    border-color: var(--silver-primary);
}

.btn-outline-silver:hover {
    background: var(--silver-primary);
    color: var(--navy-primary);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy-primary);
    transition: all var(--transition-medium);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    z-index: 999;
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-mobile .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}

.nav-mobile .nav-link {
    padding: 16px;
    border-bottom: 1px solid var(--off-white);
    font-size: 1.125rem;
}

.nav-mobile .btn {
    margin-top: 24px;
    width: 100%;
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.85) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23C5A059" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23C5A059" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23C5A059" opacity="0.15"/></pattern></defs><rect fill="url(%23grain)" width="100" height="100"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 40px 24px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

.hero h1 span.silver {
    color: var(--silver-light);
}

.hero-description {
    font-size: 1.1875rem;
    color: var(--silver-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header h2 span {
    color: var(--gold-primary);
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========================================
   CARDS & GRIDS
   ======================================== */
.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

/* Card Styles */
.card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(0,0,0,0.05);
}

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

.card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--off-white);
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.gold {
    background: var(--gold-primary);
    color: var(--navy-primary);
}

.card-badge.silver {
    background: var(--silver-primary);
    color: var(--white);
}

.card-badge.featured {
    background: var(--navy-primary);
    color: var(--gold-primary);
}

.card-body {
    padding: 28px;
}

.card-body h3 {
    margin-bottom: 12px;
    font-size: 1.375rem;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 28px;
    border-top: 1px solid var(--off-white);
    background: var(--off-white);
}

.card-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-meta svg {
    width: 16px;
    height: 16px;
}

/* Service Card */
.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold-primary);
    stroke-width: 1.5;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.375rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========================================
   PROCESS STEPS
   ======================================== */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-primary);
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--silver-light);
    margin-bottom: 0;
}

/* ========================================
   STATS
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

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

/* ========================================
   ABOUT / CONTENT SECTIONS
   ======================================== */
.about-grid {
    display: grid;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-highlight {
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
    padding: 28px;
    border-left: 4px solid var(--gold-primary);
    margin: 32px 0;
    border-radius: 0 12px 12px 0;
}

.about-highlight p {
    margin-bottom: 0;
    font-size: 1.0625rem;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197,160,89,0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
    stroke-width: 1.5;
}

.contact-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-text p,
.contact-text a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    color: var(--navy-primary);
}

.form-group label .required {
    color: #DC3545;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--silver-dark);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-row {
    display: grid;
    gap: 20px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy-primary);
    color: var(--white);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: var(--gold-gradient);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: var(--silver-light);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--silver-light);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold-primary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--silver-dark);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all var(--transition-fast);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* ========================================
   PAGE BANNERS
   ======================================== */
.page-banner {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-banner p {
    color: var(--silver-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   LEGAL CONTENT PAGES
   ======================================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 1.625rem;
    margin-top: 48px;
    margin-bottom: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--off-white);
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    color: var(--charcoal);
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* ========================================
   SOURCING TIMELINE
   ======================================== */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-light);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy-primary);
    box-shadow: var(--shadow-md);
}

.timeline-content {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    margin-bottom: 12px;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ========================================
   RESPONSIVE: TABLET
   ======================================== */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
    }

    .hero-buttons .btn {
        min-width: 200px;
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        flex-direction: row;
        justify-content: space-between;
    }

    .process-step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE: DESKTOP
   ======================================== */
@media (min-width: 1024px) {
    .section {
        padding: 100px 0;
    }

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

    .menu-toggle {
        display: none;
    }

    .nav-mobile {
        display: none;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline {
        max-width: 800px;
        margin: 0 auto;
    }

    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .timeline-item {
        padding-left: 0;
        padding-right: 0;
        width: 50%;
    }

    .timeline-item:nth-child(odd) {
        padding-right: 40px;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        padding-left: 40px;
        margin-left: 50%;
    }

    .timeline-number {
        left: auto;
        right: auto;
    }

    .timeline-item:nth-child(odd) .timeline-number {
        right: -28px;
    }

    .timeline-item:nth-child(even) .timeline-number {
        left: -28px;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

*:focus-visible {
    outline: 3px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Print */
@media print {
    .header, .whatsapp-float, .contact-form-wrapper, .menu-toggle {
        display: none;
    }

    .section {
        padding: 20px 0;
    }
}
