/* =============================================
   New Rich Asset - Global Distribution Partner
   Main Stylesheet
   ============================================= */

/* === Variables === */
:root {
    --deep-navy: #001d3d;
    --navy: #003566;
    --gold: #c9a227;
    --gold-light: #e8d5a3;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* === Navigation === */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 29, 61, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 5%;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 28px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--deep-navy);
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold);
    padding: 8px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Brand Meaning */
.brand-meaning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px auto 35px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.3);
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.meaning-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meaning-word {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.meaning-equals {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.meaning-definition {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.meaning-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.5rem;
    font-weight: 200;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--deep-navy);
    padding: 18px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.3);
}

.hero-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* === Stats Bar === */
.stats-bar {
    background: var(--white);
    padding: 60px 5%;
    border-bottom: 1px solid var(--light-gray);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    line-height: 1;
    margin-bottom: 8px;
}

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

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === About Section === */
.about {
    padding: 120px 5%;
    background: var(--off-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    color: var(--deep-navy);
    margin-bottom: 24px;
}

.about-content h2 em {
    font-style: italic;
    color: var(--gold);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--deep-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.feature-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(201, 162, 39, 0.05) 40px,
            rgba(201, 162, 39, 0.05) 41px
        );
}

.about-image-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: var(--white);
}

.about-image-content h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.about-image-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
}

.experience-badge .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

/* === Solutions Section === */
.solutions {
    padding: 120px 5%;
    background: var(--white);
}

/* === Section Header (Shared) === */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--deep-navy);
    margin-bottom: 16px;
}

.section-header h2 em {
    font-style: italic;
    color: var(--gold);
}

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

.solutions-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.solution-card {
    padding: 50px 35px;
    background: var(--off-white);
    border-right: 1px solid var(--light-gray);
    transition: all 0.4s ease;
    position: relative;
}

.solution-card:last-child {
    border-right: none;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.solution-card:hover {
    background: var(--deep-navy);
}

.solution-card:hover .solution-step,
.solution-card:hover h3,
.solution-card:hover p {
    color: var(--white);
}

.solution-card:hover .solution-step {
    color: var(--gold);
}

.solution-step {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--light-gray);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.solution-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.4s ease;
}

/* === Distribution Section === */
.distribution {
    padding: 120px 5%;
    background: var(--off-white);
}

.distribution-diagram {
    max-width: 900px;
    margin: 0 auto;
}

.diagram-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.diagram-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diagram-product {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    padding: 16px 32px;
    border-radius: 50px;
}

.diagram-product svg {
    width: 28px;
    height: 28px;
    color: var(--navy);
}

.diagram-product span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-navy);
}

.diagram-line-down {
    width: 2px;
    height: 40px;
    background: var(--gold);
}

.diagram-center {
    text-align: center;
    margin-bottom: 10px;
}

.diagram-hub {
    background: var(--deep-navy);
    padding: 30px 60px;
    display: inline-block;
}

.hub-title {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.hub-subtitle {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

.diagram-description {
    margin-top: 20px;
    max-width: 500px;
}

.diagram-description p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.diagram-lines {
    width: 100%;
    max-width: 800px;
}

.branch-svg {
    width: 100%;
    height: 60px;
    color: var(--gold);
}

.diagram-channels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    gap: 15px;
}

.channel-item {
    flex: 1;
    text-align: center;
}

.channel-box {
    background: var(--deep-navy);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.channel-box:hover {
    background: var(--navy);
    transform: translateY(-3px);
}

.channel-box svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.channel-box span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--white);
}

.channel-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 10px;
}

.diagram-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

.branch-svg-up {
    width: 100%;
    height: 60px;
    color: var(--gold);
}

.diagram-enduser {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 2px solid var(--gold);
    padding: 20px 40px;
    border-radius: 50px;
}

.diagram-enduser svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.diagram-enduser span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-navy);
}

.diagram-enduser p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* === Network Section === */
.network {
    padding: 120px 5%;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(201, 162, 39, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(201, 162, 39, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.network-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.network .section-header h2 {
    color: var(--white);
}

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

.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.network-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.network-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.network-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.network-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.network-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* === Contact Section === */
.contact {
    padding: 120px 5%;
    background: var(--off-white);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 24px;
}

.contact-info h2 em {
    font-style: italic;
    color: var(--gold);
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 24px;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--deep-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.contact-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 1rem;
    color: var(--deep-navy);
    margin: 0;
}

.contact-text a {
    color: var(--deep-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form {
    background: var(--white);
    padding: 50px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    border: 1px solid var(--light-gray);
    background: var(--off-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: var(--deep-navy);
    color: var(--white);
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--deep-navy);
}

/* === Footer === */
footer {
    background: var(--deep-navy);
    padding: 60px 5% 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-address {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

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

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

/* === Responsive - Tablet === */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .solution-card {
        border-right: none;
        border-bottom: 1px solid var(--light-gray);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

/* === Responsive - Mobile === */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .brand-meaning {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .meaning-divider {
        display: none;
    }

    .meaning-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

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

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

    .diagram-channels {
        flex-wrap: wrap;
        gap: 10px;
    }

    .channel-item {
        flex: 0 0 calc(50% - 5px);
    }

    .channel-item:last-child {
        flex: 0 0 100%;
    }

    .diagram-hub {
        padding: 20px 40px;
    }

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

    .branch-svg, .branch-svg-up {
        display: none;
    }

    .diagram-lines {
        display: none;
    }

    .diagram-channels {
        margin-top: 30px;
    }

    .diagram-enduser {
        margin-top: 30px;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* === Mobile Menu Button === */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}
