/* Modern Reset & Variables */
:root {
    /* Colors */
    --primary-gold: #D4AF37;
    --primary-gold-dim: #b8962e;
    --primary-green: #2E8B57;
    --primary-navy: #002244;
    --bg-light: #F5F5F7;
    --bg-white: #FFFFFF;
    --text-main: #1d1d1f;
    --text-muted: #6b7280;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --color-border: rgba(0, 34, 68, 0.08);

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Spacing Scale (8px base) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    --space-5xl: 120px;

    /* Typography Scale */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 32px;
    --text-4xl: 40px;
    --text-5xl: 48px;
    --text-6xl: 56px;

    /* Line Heights */
    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-navy);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-navy);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 34, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 34, 68, 0.4);
    background: #003366;
}

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

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

.section-padding {
    padding: var(--space-4xl) 0;
}

/* Common Section Styles */
.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    margin-bottom: var(--space-md);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

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

.logo-icon svg {
    height: 50px;
    width: 50px;
}

/* Initial rotation for the ellipses in the logo definition is static in SVG attrs.
   We can add slow continuous rotation for the "Motion" effect. */
#orbit-gold {
    transform-origin: 200px 180px;
    animation: spin 10s linear infinite;
}

#orbit-green {
    transform-origin: 200px 180px;
    animation: spin-reverse 15s linear infinite;
}

/* Hero section orbit animations */
#orbit-gold-hero {
    transform-origin: 200px 180px;
    animation: spin 12s linear infinite;
}

#orbit-green-hero {
    transform-origin: 200px 180px;
    animation: spin-reverse 18s linear infinite;
}

.brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-navy);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 180px 0 var(--space-4xl);
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 50%),
        radial-gradient(circle at bottom left, rgba(46, 139, 87, 0.05), transparent 50%);
}

.hero-content {
    max-width: 640px;
    animation: fadeIn 1s ease-out;
}

.hero-label {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: var(--space-md);
    display: block;
}

.hero h1 {
    font-size: var(--text-6xl);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-lg);
    color: var(--primary-navy);
}

.hero p {
    font-size: var(--text-xl);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    max-width: 520px;
    line-height: var(--leading-relaxed);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
}

.hero-visual {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
}

/* Large abstract logo in background */
.hero-visual svg {
    width: 100%;
    height: 100%;
    filter: blur(1px);
}

/* Trust Bar */
.trust-bar {
    background: var(--primary-navy);
    padding: var(--space-lg) 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    color: #fff;
}

.trust-value {
    display: block;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: var(--space-xs);
}

.trust-bar .trust-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .trust-items {
        gap: var(--space-xl);
    }

    .trust-item {
        flex: 0 0 45%;
    }
}

/* Stats Section */
.stats-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.stat-card.stat-featured {
    background: var(--primary-navy);
    color: #fff;
    border-color: var(--primary-navy);
}

.stat-card.stat-featured .stat-number {
    color: var(--primary-gold);
}

.stat-card.stat-featured .stat-desc {
    color: rgba(255, 255, 255, 0.6);
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-unit {
    font-size: var(--text-3xl);
}

.stat-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: var(--space-sm);
}

.stat-card.stat-featured .stat-title {
    color: #fff;
}

.stat-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-normal);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Section */
.products-section {
    background: var(--bg-white);
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.tab-btn {
    padding: var(--space-md) var(--space-xl);
    border: 2px solid var(--color-border);
    background: transparent;
    border-radius: 50px;
    font-size: var(--text-base);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.tab-btn:hover {
    border-color: var(--primary-navy);
}

.tab-btn.active {
    background: var(--primary-navy);
    border-color: var(--primary-navy);
    color: #fff;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

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

.product-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: var(--space-xl);
    border: 1px solid var(--color-border);
    position: relative;
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--primary-gold);
    color: var(--primary-navy);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
}

.product-card h4 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
    color: var(--primary-navy);
}

.product-specs {
    margin-bottom: var(--space-lg);
}

.product-specs li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--text-sm);
}

.product-specs li span:first-child {
    color: var(--text-muted);
}

.product-specs li span:last-child {
    font-weight: 500;
    color: var(--text-main);
}

.btn-sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
}

@media (max-width: 992px) {
    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid,
    .products-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--space-3xl);
    align-items: center;
}

.why-us-content h2 {
    margin-bottom: var(--space-md);
}

.why-us-content .lead {
    font-size: var(--text-lg);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    line-height: var(--leading-relaxed);
}

.differentiators {
    display: grid;
    gap: var(--space-md);
}

.diff-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.diff-item:hover {
    box-shadow: var(--shadow-soft);
    transform: translateX(4px);
}

.diff-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(0, 34, 68, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
}

.diff-icon svg {
    width: 24px;
    height: 24px;
}

.diff-text h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--primary-navy);
}

.diff-text p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
}

.why-us-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    background: var(--primary-navy);
    border-radius: 24px;
    padding: var(--space-2xl);
    display: grid;
    gap: var(--space-lg);
}

.visual-stat {
    text-align: center;
    padding: var(--space-md);
}

.visual-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: var(--space-xs);
}

.visual-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-visual {
        order: -1;
    }

    .visual-card {
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
}

@media (max-width: 576px) {
    .visual-card {
        grid-template-columns: 1fr;
    }
}

/* Process Section */
.process-section {
    padding: var(--space-4xl) 0;
    background: var(--primary-navy);
    color: #fff;
}

.process-section .section-header h2 {
    color: #fff;
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin: var(--space-3xl) 0;
}

.process-step {
    flex: 0 0 200px;
    text-align: center;
}

.step-number {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: var(--space-md);
    line-height: 1;
}

.process-step h4 {
    font-size: var(--text-lg);
    color: #fff;
    margin-bottom: var(--space-sm);
}

.process-step p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: var(--leading-relaxed);
}

.process-connector {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), rgba(212, 175, 55, 0.3));
    margin-top: 32px;
}

.process-cta {
    text-align: center;
}

.btn-gold {
    background: var(--primary-gold);
    color: var(--primary-navy);
    padding: var(--space-md) var(--space-xl);
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-gold:hover {
    background: #c9a431;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }

    .process-step {
        flex: none;
        width: 100%;
        max-width: 300px;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        flex: none;
        background: linear-gradient(180deg, var(--primary-gold), rgba(212, 175, 55, 0.3));
        margin-top: 0;
    }
}

/* Features/Services Section */
.services {
    text-align: center;
}

.section-header {
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover .icon-box {
    transform: scale(1.05);
}

.service-card .icon-box {
    transition: transform 0.3s ease;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: var(--bg-light);
}

.icon-box svg {
    width: 28px;
    height: 28px;
}

.icon-agri {
    color: var(--primary-green);
    background: rgba(46, 139, 87, 0.1);
}

.icon-bullion {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.icon-logistics {
    color: var(--primary-navy);
    background: rgba(0, 34, 68, 0.1);
}

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

.service-card p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Introduction/About Section */
.about {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.gst-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
}

.gst-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.gst-code {
    font-family: monospace;
    font-size: 18px;
    color: var(--text-main);
    font-weight: 600;
}

/* Certifications Section */
.certifications-section {
    background: var(--bg-light);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.cert-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-navy);
    color: var(--primary-gold);
    font-size: var(--text-sm);
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: var(--space-md);
}

.cert-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
    color: var(--primary-navy);
}

.cert-code {
    font-family: monospace;
    font-size: var(--text-sm);
    color: var(--primary-navy);
    background: var(--bg-light);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 4px;
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.cert-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-normal);
}

@media (max-width: 992px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

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

.contact-details {
    display: grid;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--primary-navy);
}

.contact-item address,
.contact-item p,
.contact-item a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    font-style: normal;
    line-height: var(--leading-relaxed);
}

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

.contact-form-wrap {
    background: var(--bg-light);
    padding: var(--space-2xl);
    border-radius: 24px;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: var(--text-base);
    font-family: inherit;
    background: var(--bg-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(0, 34, 68, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.btn-full {
    width: 100%;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: var(--primary-navy);
    color: #fff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: #fff;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 24px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 24px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 42px;
    }

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

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin-bottom: 24px;
    }

    .nav-link {
        font-size: 18px;
        font-weight: 600;
    }

    .hero {
        padding-top: 100px;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-visual {
        opacity: 0.1;
        right: -300px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Expertise / Market Content Section */
.expertise-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.expertise-row:last-child {
    margin-bottom: 0;
}

.expertise-row.reverse {
    flex-direction: row-reverse;
}

.expertise-content {
    flex: 1;
}

.expertise-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.expertise-content p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.expertise-visual {
    flex: 1;
    height: 360px;
    background: var(--bg-light);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.03);
}

.tag-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 16px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.feature-list li svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .expertise-row, .expertise-row.reverse {
        flex-direction: column;
        gap: 40px;
    }
    .expertise-visual {
        width: 100%;
    }
}

/* Ticker Tape */
.ticker-wrap {
    width: 100%;
    background: #001122;
    color: #fff;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 91px;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
}

.ticker {
    display: inline-block;
    animation: ticker-slide 60s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ticker-label {
    color: #86868b;
    margin-right: 8px;
}

.ticker-value {
    color: #fff;
    font-family: 'Inter', monospace;
    font-weight: 600;
}

.ticker-change.up {
    color: #4CAF50;
    margin-left: 8px;
    font-size: 12px;
}

.ticker-change.down {
    color: #FF453A;
    margin-left: 8px;
    font-size: 12px;
}

@keyframes ticker-slide {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Scroll Animations */
.animate-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card.animate-target {
    transition-delay: calc(var(--card-index, 0) * 0.1s);
}

.expertise-row.animate-target:nth-child(2) {
    transition-delay: 0.15s;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-navy);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0, 34, 68, 0.3);
}

.back-to-top:hover {
    background: #003366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 34, 68, 0.4);
}

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

.back-to-top svg {
    width: 20px;
    height: 20px;
}
