/* ============================================================
   VENUE ABODE — About Page Styles
   ============================================================ */

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.about-hero {
    background-position: center center !important;
    background-size: cover !important;
}

.about-hero .va-page-hero-title em {
    color: var(--va-primary);
    font-style: italic;
}

/* ═══════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.about-section-title em {
    color: var(--va-primary);
    font-style: italic;
}

.about-text-content {
    font-size: 0.95rem;
    color: var(--va-gray-600);
    line-height: 1.8;
}

/* Visual Cards */
.about-visual-wrapper {
    position: relative;
    height: 480px;
}

.about-promise-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 5rem;
    bottom: 5rem;
    background: 
        linear-gradient(
            160deg,
            rgba(15, 23, 42, 0.53) 0%,
            rgba(30, 41, 59, 0.39) 100%
        ),
        url('../images/about2.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 44, 44, 0.2);
}

.about-promise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--va-primary);
    background-position: center center;
}

.about-promise-card p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--va-white);
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 500;
    transition: all 0.3s;
}

.about-promise-card:hover p {
    transform: translateX(8px);
}

.about-promise-card small {
    font-size: 12px;
    color: var(--va-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.about-promise-card:hover small {
    letter-spacing: 0.15em;
}

.about-accent-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    background: linear-gradient(135deg, var(--va-primary) 0%, var(--va-primary-dark) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(255, 44, 44, 0.3);
}

.about-accent-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 16px 40px rgba(255, 44, 44, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.about-accent-card .accent-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--va-white);
    line-height: 1;
    transition: all 0.3s;
}

.about-accent-card:hover .accent-num {
    transform: scale(1.1);
}

.about-accent-card .accent-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

/* Stats Cards */
.about-stat-card {
    border: 1px solid var(--va-primary-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(255, 44, 44, 0.1);
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.6s;
}

.about-stat-card:hover::before {
    left: 100%;
}


.about-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--va-primary);
    box-shadow: 0 8px 20px rgba(255, 44, 44, 0.25);
}

.about-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--va-primary);
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-stat-card:hover .stat-number {
    transform: scale(1.15);
    text-shadow: 0 4px 12px rgba(255, 44, 44, 0.3);
}

.about-stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--va-gray-600);
    margin-top: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.about-stat-card:hover .stat-label {
    color: var(--va-primary-dark);
    font-weight: 600;
}

/* ═══════════════════════════════════════
   MISSION SECTION
═══════════════════════════════════════════ */
.mission-section-title em {
    color: var(--va-primary);
    font-style: italic;
}

.mission-pillar-card {
    border-left: 3px solid var(--va-primary);
    background: var(--va-white);
}

.mission-pillar-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--va-secondary-dark);
    margin-bottom: 0.5rem;
}

.mission-pillar-card p {
    font-size: 0.95rem;
    color: var(--va-gray-600);
    line-height: 1.7;
    margin: 0;
}

.mission-statement {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--va-secondary-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.mission-text-content {
    font-size: 0.95rem;
    color: var(--va-gray-600);
    line-height: 1.8;
}

/* ═══════════════════════════════════════
   VISION SECTION
═══════════════════════════════════════════ */
.vision-section {
    background: var(--va-secondary-dark);
    position: relative;
    overflow: hidden;
}

.vision-gradient-bg {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 44, 44, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.vision-badge {
    background: rgba(255, 44, 44, 0.15);
    color: var(--va-primary);
    border-color: rgba(255, 44, 44, 0.3);
}

.vision-title {
    color: var(--va-white);
}

.vision-title em {
    color: var(--va-primary);
    font-style: italic;
}

.vision-subtitle {
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 44, 44, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    /* background: linear-gradient(90deg, var(--va-primary), var(--va-primary-light)); */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vision-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    /* background: radial-gradient(circle, rgba(255, 44, 44, 0.1) 0%, transparent 70%); */
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-card:hover::after {
    width: 300px;
    height: 300px;
}

.vision-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--va-primary);
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 44, 44, 0.2);
}

.vision-card .vision-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--va-primary);
    line-height: 1;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.vision-card:hover .vision-number {
    color: rgba(255, 44, 44, 0.5);
    transform: scale(1.1) translateX(8px);
}

.vision-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--va-white);
    margin-bottom: 0.7rem;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.vision-card:hover h4 {
    color: var(--va-primary-light);
    transform: translateX(4px);
}

.vision-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.vision-card:hover p {
    color: rgba(255, 255, 255, 0.75);
}

.vision-quote-wrapper {
    border-top: 1px solid rgba(255, 44, 44, 0.2);
    transition: all 0.3s;
}

.vision-quote-wrapper:hover {
    border-top-color: rgba(255, 44, 44, 0.5);
}

.vision-quote-line {
    width: 3px;
    background: linear-gradient(180deg, var(--va-primary), var(--va-primary-dark));
    flex-shrink: 0;
    min-height: 80px;
    border-radius: 2px;
    transition: all 0.4s;
    box-shadow: 0 0 12px rgba(255, 44, 44, 0.4);
}

.vision-quote-wrapper:hover .vision-quote-line {
    width: 5px;
    box-shadow: 0 0 20px rgba(255, 44, 44, 0.6);
}

.vision-quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s;
}

.vision-quote-wrapper:hover .vision-quote-text {
    color: var(--va-white);
    transform: translateX(8px);
}

/* ═══════════════════════════════════════
   WHY CHOOSE SECTION
═══════════════════════════════════════════ */
.why-section-title em {
    color: var(--va-primary);
    font-style: italic;
}

.why-card {
    background: var(--va-white);
    border: 2px solid var(--va-primary-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 44, 44, 0.08);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--va-primary), var(--va-primary-light));
    opacity: 0.3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover::before {
    opacity: 1;
    height: 5px;
}

.why-card:hover {
    background: var(--va-secondary-dark);
    border-color: var(--va-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 44, 44, 0.2);
}

.why-card .why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--va-primary-50) 0%, var(--va-primary-100) 100%);
    color: var(--va-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(255, 44, 44, 0.15);
}

.why-card .why-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--va-primary), var(--va-primary-light));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.why-card:hover .why-icon {
    background: var(--va-primary);
    color: var(--va-gray-100);
    /* transform: scale(1.1) rotate(5deg); */
    box-shadow: 0 8px 24px rgba(255, 44, 44, 0.3);
}

.why-card:hover .why-icon::before {
    opacity: 1;
}

.why-card .why-icon i {
    position: relative;
    z-index: 1;
}

.why-card .why-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--va-secondary-dark);
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.why-card:hover .why-title {
    color: var(--va-white);
}

.why-card .why-desc {
    font-size: 0.95rem;
    color: var(--va-gray-600);
    line-height: 1.75;
    margin: 0;
    transition: color 0.3s;
}

.why-card:hover .why-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
    background: var(--va-primary);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--va-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.cta-section .btn-cta {
    background: var(--va-white);
    color: var(--va-primary);
    border-color: var(--va-white);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section .btn-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--va-secondary-dark);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: -1;
}

.cta-section .btn-cta:hover::before {
    width: 400px;
    height: 400px;
}

.cta-section .btn-cta:hover {
    color: var(--va-white);
    border-color: var(--va-secondary-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.cta-section .btn-cta i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section .btn-cta:hover i {
    transform: translateX(5px) rotate(15deg);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
    .about-visual-wrapper {
        height: 320px;
    }

    .about-promise-card {
        right: 3rem;
        bottom: 3rem;
    }

    .about-promise-card p {
        font-size: 1.1rem;
    }

    .about-accent-card {
        width: 180px;
    }

    .about-accent-card .accent-num {
        font-size: 1.6rem;
    }

    .vision-gradient-bg {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 767px) {
    .about-visual-wrapper {
        height: 280px;
        margin-top: 2rem;
    }

    .about-promise-card {
        right: 2rem;
        bottom: 2rem;
        padding: 1.5rem !important;
    }

    .about-promise-card p {
        font-size: 1rem;
    }

    .about-accent-card {
        width: 150px;
        padding: 1rem !important;
    }

    .about-accent-card .accent-num {
        font-size: 1.4rem;
    }

    .about-accent-card .accent-label {
        font-size: 10px;
    }

    .mission-statement {
        font-size: 1.1rem;
    }

    .vision-card .vision-number {
        font-size: 2.5rem;
    }

    .vision-quote-text {
        font-size: 1.1rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }
}
