/* ============================================ */
/* INVESTOR PAGE STYLES                         */
/* ============================================ */

/* Hero Section */
.investor-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.investor-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.investor-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.investor-hero-bg .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.85) 0%, rgba(233, 30, 155, 0.75) 100%);
}

.investor-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.investor-hero-content .hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.investor-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.investor-hero-content .hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.investor-hero-content .hero-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: #29ABE2;
}

/* Quick Navigation */
.investor-quicknav {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 70px;
    z-index: 90;
}

.quicknav-grid {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quicknav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
}

.quicknav-item:hover {
    background: #f0f7ff;
    color: #29ABE2;
}

.quicknav-item.highlight {
    background: linear-gradient(135deg, #29ABE2, #E91E9B);
    color: white;
}

.quicknav-item.highlight:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(41, 171, 226, 0.4);
}

.quicknav-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.quicknav-item:hover .quicknav-icon {
    background: #29ABE2;
    color: white;
}

.quicknav-item.highlight .quicknav-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Overview Section */
.overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.overview-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.overview-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.overview-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overview-overlay p {
    opacity: 0.9;
    font-size: 1rem;
}

.overview-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.overview-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.card-icon.blue {
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.15), rgba(41, 171, 226, 0.05));
    color: #29ABE2;
}

.card-icon.pink {
    background: linear-gradient(135deg, rgba(233, 30, 155, 0.15), rgba(233, 30, 155, 0.05));
    color: #E91E9B;
}

.card-icon.gradient {
    background: linear-gradient(135deg, #29ABE2, #E91E9B);
    color: white;
}

.overview-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #222;
}

.overview-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Partnership Highlight */
.partnership-highlight {
    background: linear-gradient(135deg, #f8fbff 0%, #fff5fa 100%);
    border-radius: 20px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.highlight-content h3 {
    font-size: 1.5rem;
    color: #222;
    margin-bottom: 1rem;
}

.highlight-content p {
    color: #555;
    line-height: 1.7;
}

.highlight-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #29ABE2, #E91E9B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
}

/* Opportunities Grid */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.opportunity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.opportunity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.opportunity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.opportunity-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #29ABE2, #E91E9B);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.opportunity-content {
    padding: 1.5rem;
}

.opportunity-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #222;
}

.opportunity-content > p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.opportunity-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opportunity-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.opportunity-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #29ABE2, #E91E9B);
    border-radius: 50%;
}

/* Investor Grid Layout */
.investor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.investor-grid.reverse {
    direction: rtl;
}

.investor-grid.reverse > * {
    direction: ltr;
}

.investor-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

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

.image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, #29ABE2, #E91E9B);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.image-badge.pink {
    background: linear-gradient(135deg, #E91E9B, #FF6B6B);
}

.investor-content .section-tag {
    margin-bottom: 1rem;
}

.investor-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.investor-content .lead {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.investment-model {
    margin-bottom: 2rem;
}

.investment-model h4 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 1rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 1rem;
    color: #444;
}

.check-list .check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.15), rgba(41, 171, 226, 0.05));
    color: #29ABE2;
    border-radius: 50%;
}

.check-list.pink .check-icon,
.check-list .check-icon.pink {
    background: linear-gradient(135deg, rgba(233, 30, 155, 0.15), rgba(233, 30, 155, 0.05));
    color: #E91E9B;
}

.suitable-for {
    margin-bottom: 2rem;
}

.suitable-for h4 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    background: #f0f7ff;
    color: #29ABE2;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag.pink {
    background: #fff0f8;
    color: #E91E9B;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-pink {
    background: linear-gradient(135deg, #E91E9B, #FF6B6B);
    color: white;
    border: none;
}

.btn-pink:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 155, 0.4);
}

/* Distribution Section */
.distribution-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.distribution-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.distribution-map img {
    width: 100%;
    height: auto;
}

.map-markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #29ABE2, #E91E9B);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.marker-label {
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #222;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.marker.thailand {
    top: 45%;
    left: 35%;
}

.marker.laos {
    top: 35%;
    left: 50%;
}

.marker.vietnam {
    top: 50%;
    left: 65%;
}

.marker.myanmar {
    top: 30%;
    left: 25%;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.distribution-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.distribution-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.distribution-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.dist-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(41, 171, 226, 0.15), rgba(233, 30, 155, 0.05));
    color: #29ABE2;
    border-radius: 12px;
}

.distribution-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #222;
}

.distribution-card p {
    font-size: 0.9rem;
    color: #666;
}

.cta-center {
    text-align: center;
    padding-top: 2rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
    min-width: 120px;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #29ABE2, #E91E9B);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(41, 171, 226, 0.4);
}

.step-content h4 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.process-connector {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #29ABE2, #E91E9B);
    margin-top: 28px;
    flex-shrink: 0;
}

.process-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #444;
    font-weight: 500;
}

.feature-item svg {
    color: #29ABE2;
}

/* Apply Section */
.apply-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.apply-info .section-tag {
    margin-bottom: 1rem;
}

.apply-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.apply-info .lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.apply-requirements {
    margin-bottom: 2rem;
}

.apply-requirements h4 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 1rem;
}

.apply-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apply-requirements li {
    padding: 0.5rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.apply-requirements li::before {
    content: '✓';
    color: #29ABE2;
    font-weight: 600;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #444;
    font-size: 1rem;
}

.contact-item svg {
    color: #29ABE2;
}

/* Apply Form */
.apply-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.apply-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #29ABE2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.15);
}

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

.form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Strategic Statement */
.strategic-statement {
    background: linear-gradient(135deg, #29ABE2, #E91E9B);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

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

.statement-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.statement-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-main {
        height: 300px;
    }

    .overview-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .overview-card {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .partnership-highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .investor-grid.reverse {
        direction: ltr;
    }

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

    .apply-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .investor-hero {
        min-height: 70vh;
    }

    .quicknav-grid {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        flex-wrap: nowrap;
    }

    .quicknav-item {
        padding: 0.75rem 1rem;
    }

    .overview-card {
        flex: 1 1 100%;
    }

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

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }

    .process-step {
        max-width: 100%;
    }

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

    .form-actions {
        flex-direction: column;
    }

    .highlight-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .investor-hero-content {
        padding: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .apply-form-wrapper {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
