/* ============================================
   AIMEX EVENT CENTER — CORPORATE EVENTS PAGE
   Modern Enterprise Styles
   ============================================ */

/* ============================================
   CORPORATE HERO SECTION
   ============================================ */
.corporate-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

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

.corporate-hero-bg .mesh-bg {
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse at 20% 50%, rgba(204, 9, 155, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 50%, rgba(58, 111, 247, 0.1) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 100%, rgba(204, 9, 155, 0.06) 0%, transparent 50%);
}

.corporate-hero-bg .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.corporate-hero-bg .glow-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-hero-glow);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.corporate-hero-bg .glow-orb-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-blue-glow);
    bottom: 10%;
    right: -5%;
    animation-delay: -2s;
}

.corporate-hero-bg .glow-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-hero-glow);
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -4s;
    opacity: 0.5;
}

.corporate-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    margin: 0 auto;
}

.corporate-hero-title {
    font-family: var(--font-heading), serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.corporate-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

@media (min-width: 640px) {
    .corporate-hero-buttons {
        flex-direction: row;
    }
}

.corporate-hero-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

@media (min-width: 640px) {
    .corporate-hero-stats {
        flex-direction: row;
        gap: 40px;
    }
}

/* ============================================
   TECH & INFRASTRUCTURE BENTO GRID
   ============================================ */
.tech-grid {
    padding: 120px 0;
    position: relative;
}

.tech-bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .tech-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-bento {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tech-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.tech-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 9, 155, 0.3);
    box-shadow: 0 0 30px rgba(204, 9, 155, 0.2);
}

.tech-card-large {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .tech-card-large {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

.tech-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(204, 9, 155, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tech-card:hover .tech-card-glow {
    opacity: 1;
}

.tech-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-signature);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(204, 9, 155, 0.3);
    transition: var(--transition-smooth);
}

.tech-card:hover .tech-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(204, 9, 155, 0.5);
}

.tech-title {
    font-family: var(--font-heading), serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.tech-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.tech-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tech-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(204, 9, 155, 0.15);
    color: var(--accent);
    border: 1px solid rgba(204, 9, 155, 0.2);
}

/* ============================================
   CAPACITY DASHBOARD
   ============================================ */
.capacity-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.glow-orb-capacity {
    width: 500px;
    height: 500px;
    background: var(--gradient-blue-glow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.5;
    position: absolute;
    border-radius: 50%;
}

.capacity-section .container {
    position: relative;
    z-index: 1;
}

.capacity-dashboard {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .capacity-dashboard {
        grid-template-columns: repeat(2, 1fr);
    }
}

.capacity-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: var(--transition-smooth);
}

@media (min-width: 640px) {
    .capacity-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
}

.capacity-card:hover {
    border-color: rgba(204, 9, 155, 0.3);
    box-shadow: 0 0 30px rgba(204, 9, 155, 0.15);
}

.capacity-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.capacity-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-signature);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 0 25px rgba(204, 9, 155, 0.3);
}

/* Circular Progress Chart */
.capacity-chart {
    width: 140px;
    height: 140px;
    position: relative;
}

.chart-ring {
    width: 100%;
    height: 100%;
    position: relative;
}

.chart-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-track {
    fill: none;
    stroke: var(--border-subtle);
    stroke-width: 6;
}

.chart-fill {
    fill: none;
    stroke: url(#gradient);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 264;
    stroke-dashoffset: 264;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.capacity-card.visible .chart-fill {
    stroke-dashoffset: calc(264 - (264 * var(--progress)) / 100);
}

.chart-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-number {
    font-family: var(--font-heading), serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-signature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Capacity Info */
.capacity-info {
    flex: 1;
}

.capacity-name {
    font-family: var(--font-heading), serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.capacity-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.capacity-specs {
    margin: 0;
    padding: 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row dt {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-row dd {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

/* ============================================
   LOGISTICS GRID
   ============================================ */
.logistics-section {
    padding: 120px 0;
    position: relative;
}

.logistics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
}

@media (min-width: 640px) {
    .logistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .logistics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.logistics-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.logistics-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 9, 155, 0.3);
    box-shadow: 0 0 30px rgba(204, 9, 155, 0.2);
}

.logistics-number {
    font-family: var(--font-heading), serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-signature);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 24px;
    line-height: 1;
}

.logistics-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-signature);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(204, 9, 155, 0.3);
}

.logistics-title {
    font-family: var(--font-heading), serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.logistics-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 120px 0;
    position: relative;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-header {
    margin-bottom: 48px;
}

.trust-title {
    font-family: var(--font-heading), serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 16px;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-logo {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.trust-logo:hover {
    border-color: rgba(204, 9, 155, 0.3);
    color: var(--white);
    transform: translateY(-2px);
}

.trust-divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-signature);
    margin: 0 auto 48px;
    border-radius: 2px;
}

.trust-quote {
    position: relative;
    padding: 0 24px;
}

.quote-icon {
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 20px;
}

.trust-quote blockquote {
    margin: 0;
    padding: 0;
}

.trust-quote blockquote p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.trust-quote footer cite {
    display: block;
    font-family: var(--font-heading), serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    font-style: normal;
    margin-bottom: 4px;
}

.trust-quote footer span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.glow-orb-cta {
    width: 400px;
    height: 400px;
    background: var(--gradient-hero-glow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(100px);
    opacity: 0.4;
    position: absolute;
    border-radius: 50%;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-family: var(--font-heading), serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-banner-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

@media (min-width: 640px) {
    .cta-banner-buttons {
        flex-direction: row;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 639px) {
    .corporate-hero {
        padding: 100px 0 60px;
    }

    .capacity-card {
        padding: 28px;
    }

    .capacity-chart {
        width: 120px;
        height: 120px;
    }

    .chart-number {
        font-size: 1.6rem;
    }

    .trust-logos {
        gap: 12px;
    }

    .trust-logo {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

/* Reveal Animation Stagger */
.tech-bento .reveal:nth-child(1) { transition-delay: 0.05s; }
.tech-bento .reveal:nth-child(2) { transition-delay: 0.1s; }
.tech-bento .reveal:nth-child(3) { transition-delay: 0.15s; }
.tech-bento .reveal:nth-child(4) { transition-delay: 0.2s; }
.tech-bento .reveal:nth-child(5) { transition-delay: 0.25s; }

.capacity-dashboard .reveal:nth-child(1) { transition-delay: 0.05s; }
.capacity-dashboard .reveal:nth-child(2) { transition-delay: 0.1s; }
.capacity-dashboard .reveal:nth-child(3) { transition-delay: 0.15s; }
.capacity-dashboard .reveal:nth-child(4) { transition-delay: 0.2s; }

.logistics-grid .reveal:nth-child(1) { transition-delay: 0.05s; }
.logistics-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.logistics-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.logistics-grid .reveal:nth-child(4) { transition-delay: 0.2s; }
.logistics-grid .reveal:nth-child(5) { transition-delay: 0.25s; }
.logistics-grid .reveal:nth-child(6) { transition-delay: 0.3s; }