/* Hero Section */
.hero-wrapper {
    padding-top: 140px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: var(--fs-h1);
    font-weight: 950;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -3px;
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.hero-secondary {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    min-height: 230px;
}

.globe-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition-main);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.globe-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--blue);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.5);
}

.globe-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.globe-chip {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.globe-map {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-map svg {
    width: 100%;
    opacity: 0.8;
    filter: drop-shadow(0 0 20px var(--primary-glow));
}

.globe-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Section Common */
.section-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
}

/* About Grid & Timeline */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.timeline {
    position: relative;
    padding-right: 40px;
    border-right: 2px solid var(--card-border);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 5px;
    right: -51px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-body);
    border: 4px solid var(--blue);
    box-shadow: 0 0 15px var(--blue-glow);
    z-index: 1;
}

.timeline-year {
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.timeline-title {
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.timeline-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 32px;
}

.bento-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-main);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.bento-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue-glow);
    background: var(--surface-gradient);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 174, 239, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card>* {
    position: relative;
    z-index: 1;
}

.bento-large {
    grid-column: span 2;
}

.bento-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: var(--transition-main);
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 99px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: fit-content;
}

.bento-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--blue);
}

.bento-link:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    transform: translateX(-5px);
    box-shadow: 0 10px 20px var(--blue-glow);
}

.bento-link:hover i {
    transform: translateX(-5px);
    color: #fff;
}

.bento-card:hover .bento-icon-wrapper {
    background: var(--blue);
    border-color: var(--blue);
    transform: scale(1.1) rotate(5deg);
}

.bento-icon {
    font-size: 2.22rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary-glow));
    transition: var(--transition-main);
}

.bento-card:hover .bento-icon {
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.bento-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--text-main);
}

.bento-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 500;
}

/* Stats */
.stats-grid {
    display: flex;
    gap: 48px;
    margin-top: 24px;
}

.stat-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 950;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: var(--transition-main);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--blue);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 20px var(--primary-glow);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Shipping Grid */
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ship-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--card-border);
    padding: 48px 40px;
    transition: var(--transition-main);
    text-align: center;
}

.ship-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
}

.ship-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
    display: block;
}

.ship-list {
    list-style: none;
    margin-top: 24px;
    text-align: right;
}

.ship-list li {
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.ship-list li i {
    color: var(--gold);
}

/* Why Choose Us - Premium Bento Layout */
.why-bento {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
}

.why-card:hover {
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.1);
    transform: translateY(-6px);
}

/* Hero Card - spans left column, 2 rows */
.why-hero-card {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(145deg, #0a1628 0%, #0d2145 60%, #0e3060 100%);
    border-color: rgba(14, 165, 233, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 420px;
}

.why-hero-card:hover {
    border-color: var(--blue);
    box-shadow: 0 30px 80px rgba(14, 165, 233, 0.2);
}

.why-hero-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 9rem;
    font-weight: 950;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -5px;
}

.why-hero-icon {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 28px;
}

.why-hero-card h3 {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-hero-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.why-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 16px;
    width: fit-content;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 950;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Small cards */
.why-small-card {
    grid-column: span 1;
}

.why-card-icon {
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition-smooth);
}

.why-card:hover .why-card-icon {
    transform: scale(1.15);
    color: var(--primary);
}

.why-small-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.why-small-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Accent card with gradient border */
.why-accent-card {
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, var(--primary), var(--blue)) border-box;
    border: 1px solid transparent;
}

/* Wide bottom card */
.why-wide-card {
    grid-column: 2 / 4;
    display: flex;
    align-items: center;
    gap: 28px;
}

.why-wide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
}

.why-wide-card .why-card-icon {
    font-size: 3rem;
    flex-shrink: 0;
    margin-bottom: 0;
}

.why-wide-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.why-wide-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .why-bento {
        grid-template-columns: 1fr 1fr;
    }

    .why-hero-card {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 300px;
    }

    .why-wide-card {
        grid-column: 1 / 3;
        flex-direction: row;
    }

    .why-wide-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .why-bento {
        grid-template-columns: 1fr;
    }

    .why-hero-card {
        grid-column: 1;
    }

    .why-small-card {
        grid-column: 1;
    }

    .why-wide-card {
        grid-column: 1;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* How It Works Timeline */
.timeline-container {
    position: relative;
    padding-top: 20px;
}

.timeline-line {
    display: none;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.timeline-items::before {
    content: '';
    position: absolute;
    top: 45px;
    right: 12.5%;
    left: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--blue));
    z-index: 0;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-card);
    border: 2px solid var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 0 6px var(--bg-main), 0 10px 30px rgba(14, 165, 233, 0.15);
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--blue);
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-icon {
    background: var(--blue);
    transform: scale(1.1);
    box-shadow: 0 0 0 6px var(--bg-main), 0 15px 40px rgba(14, 165, 233, 0.3);
}

.timeline-step:hover .step-icon i {
    color: #fff;
}

.timeline-step h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.timeline-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .timeline-items::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .timeline-items {
        grid-template-columns: 1fr;
    }
}


/* Contact Form & Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--card-border);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.map-pane {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid var(--card-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.map-marker {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-grid,
    .bento-grid,
    .features-grid,
    .shipping-grid,
    .team-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .bento-large {
        grid-column: span 1;
    }

    .section-title {
        font-size: 2.5rem;
    }
}