/* ===============================================
   EVENTS/FAQ SECTION - DARK NEON TYPOGRAPHY
   Font: Sora / Space Grotesk (fallback: Inter, system)
   Prefix: vx-
   =============================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ===============================================
   CSS CUSTOM PROPERTIES
   =============================================== */
:root {
    --vx-font-primary: 'Sora', 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;

    /* Text Colors */
    --vx-text-white: rgba(255, 255, 255, 0.92);
    --vx-text-muted: rgba(255, 255, 255, 0.62);

    /* Gradient Colors */
    --vx-gradient-heading: linear-gradient(135deg, #ffffff 0%, #e8d5ff 50%, #c9a8ff 100%);
    --vx-gradient-cta: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);

    /* Glow Colors */
    --vx-glow-purple: rgba(168, 85, 247, 0.5);
    --vx-shadow-deep: rgba(88, 28, 135, 0.8);

    /* Accent */
    --vx-accent-purple: #a855f7;
    --vx-accent-pink: #ec4899;
}

/* ===============================================
   VX UTILITY CLASSES - TYPOGRAPHY
   =============================================== */

/* Heading H2 - Section Titles (Events, FAQ) */
.vx-h2 {
    font-family: var(--vx-font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.06em;
    line-height: 1.1;

    /* Gradient Text */
    background: var(--vx-gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Glow + Deep Shadow */
    text-shadow:
        0 0 30px var(--vx-glow-purple),
        0 4px 20px var(--vx-shadow-deep);
    filter: drop-shadow(0 0 20px var(--vx-glow-purple)) drop-shadow(0 6px 25px var(--vx-shadow-deep));

    /* Fallback for older browsers */
    color: #ffffff;
}

/* Heading H3 - Card Titles */
.vx-h3 {
    font-family: var(--vx-font-primary);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.25;
    color: var(--vx-text-white);
    margin: 0;
}

/* Meta Text - Source, Location */
.vx-meta {
    font-family: var(--vx-font-primary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--vx-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vx-meta::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--vx-accent-purple);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--vx-accent-purple);
}

.vx-meta i {
    color: var(--vx-accent-purple);
    text-shadow: 0 0 10px var(--vx-accent-purple);
}

/* CTA Link - Register Now */
.vx-link {
    font-family: var(--vx-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;

    /* Gradient Text */
    background: var(--vx-gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vx-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vx-gradient-cta);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.vx-link:hover::after {
    width: 100%;
}

.vx-link i,
.vx-link .arrow {
    transition: transform 0.3s ease;
    /* Reset gradient for icon */
    -webkit-text-fill-color: var(--vx-accent-pink);
}

.vx-link:hover i,
.vx-link:hover .arrow {
    transform: translateX(3px);
}

/* ===============================================
   APPLY VX TYPOGRAPHY TO EXISTING CLASSES
   =============================================== */

/* Events Section Heading */
.ico_event_section .heading_text,
.ico_heading_block .heading_text {
    font-family: var(--vx-font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.06em;
    line-height: 1.1;

    /* Gradient Text */
    background: var(--vx-gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Multi-layer shadow for depth */
    filter: drop-shadow(0 0 25px var(--vx-glow-purple)) drop-shadow(0 4px 20px var(--vx-shadow-deep));
}

/* FAQ Section Title */
.faq-section .faq-title {
    font-family: var(--vx-font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 2rem;

    /* Gradient Text */
    background: var(--vx-gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Glow Effect */
    filter: drop-shadow(0 0 25px var(--vx-glow-purple)) drop-shadow(0 4px 20px var(--vx-shadow-deep));
}

/* Event Card Titles */
.event_title,
.featured_title {
    font-family: var(--vx-font-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.25;
    color: var(--vx-text-white);
}

.event_title {
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.featured_title {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
}

/* Event Meta - Location/Source */
.event_meta,
.event_location {
    font-family: var(--vx-font-primary);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--vx-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event_meta::before,
.event_location::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--vx-accent-purple);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--vx-accent-purple);
    flex-shrink: 0;
}

.event_meta i,
.event_location i {
    color: var(--vx-accent-purple);
    text-shadow: 0 0 8px var(--vx-accent-purple);
}

/* Register Now Link */
.register_now_link {
    font-family: var(--vx-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;

    /* Gradient Text */
    background: var(--vx-gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.register_now_link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vx-gradient-cta);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.register_now_link:hover::after {
    width: 100%;
}

.register_now_link i {
    -webkit-text-fill-color: var(--vx-accent-pink);
    transition: transform 0.3s ease;
}

.register_now_link:hover i {
    transform: translateX(3px);
}

/* Course Labels */
.course_label {
    font-family: var(--vx-font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f0abfc;
}

.course_title_big {
    font-family: var(--vx-font-primary);
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    font-style: italic;
    letter-spacing: 0.04em;
    line-height: 1;
    color: white;
    text-shadow:
        0 0 30px rgba(168, 85, 247, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Thumbnail Text */
.thumb_title {
    font-family: var(--vx-font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--vx-text-white);
}

.icon_box {
    font-family: var(--vx-font-primary);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* XM Promo */
.promo_text {
    font-family: var(--vx-font-primary);
    font-size: 0.62rem;
    font-weight: 500;
}

.big_number {
    font-family: var(--vx-font-primary);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.suffix {
    font-family: var(--vx-font-primary);
    font-weight: 700;
}

/* Live Stream */
.live_text {
    font-family: var(--vx-font-primary);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.xau_title {
    font-family: var(--vx-font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.trade_label {
    font-family: var(--vx-font-primary);
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.trade_sub {
    font-family: var(--vx-font-primary);
    font-size: 0.52rem;
    font-weight: 500;
    font-style: italic;
}

/* Event Date Badge */
.event_date_badge {
    font-family: var(--vx-font-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ===============================================
   FAQ SPECIFIC TYPOGRAPHY ENHANCEMENTS
   =============================================== */

.faq-section .faq-question,
.faq-section .faq-item button,
.faq-section .accordion-button {
    font-family: var(--vx-font-primary);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--vx-text-white);
}

.faq-section .faq-answer,
.faq-section .faq-item .answer,
.faq-section .accordion-body {
    font-family: var(--vx-font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--vx-text-muted);
}

/* FAQ Tab Buttons */
.faq-tabs .tab-btn,
.faq-section .faq-tab-btn {
    font-family: var(--vx-font-primary);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ===============================================
   EVENTS SECTION - IMAGE-BASED CARDS
   =============================================== */

/* Event Thumbnail with Real Image */
.event_thumb {
    width: 180px;
    min-width: 180px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.thumb_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.event_link:hover .thumb_img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Glass Morphism Event Cards */
.event_link {
    display: flex;
    gap: 1rem;
    background: rgba(15, 12, 45, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(100, 70, 180, 0.25);
    border-radius: 16px;
    padding: 0.75rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.event_link:hover {
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateX(6px);
    box-shadow:
        0 8px 32px rgba(168, 85, 247, 0.25),
        0 0 0 1px rgba(168, 85, 247, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(25, 20, 60, 0.8);
}

/* Featured Card with Real Image */
.event_card_featured {
    background: rgba(15, 12, 45, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 70, 180, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(168, 85, 247, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured_image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.featured_bg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.featured_logo {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.wing_icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.85);
}

.featured_text_overlay {
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    z-index: 3;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.featured_content {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(20, 15, 50, 0.95), rgba(15, 10, 40, 1));
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Event Date Badge */
.event_date_badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(100, 50, 150, 0.9), rgba(130, 60, 180, 0.9));
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--vx-font-primary);
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

/* Event List */
.event_loop_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: space-between;
}

/* Responsive Images */
@media (max-width: 768px) {
    .event_thumb {
        width: 100%;
        height: 140px;
    }

    .event_link {
        flex-direction: column;
    }

    .featured_image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .event_thumb {
        height: 120px;
    }
}

/* ===============================================
   KNOWLEDGE SECTION - DARK NEON STYLE
   =============================================== */

.knowledge-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
}

.knowledge-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Knowledge Block - Glass Morphism Card */
.knowledge-block {
    background: rgba(15, 12, 45, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(100, 70, 180, 0.25);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.knowledge-block:hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow:
        0 15px 50px rgba(168, 85, 247, 0.15),
        0 0 0 1px rgba(168, 85, 247, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

/* Block Content Layout */
.block-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.block-text {
    flex: 1;
}

.block-text .vx-h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.block-subtitle {
    margin-bottom: 1.5rem;
}

.block-subtitle.vx-meta::before {
    display: none;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem 2rem;
}

.feature-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--vx-font-primary);
    font-size: 0.9rem;
    color: var(--vx-text-white);
}

.feature-check i {
    color: var(--vx-accent-purple);
    font-size: 0.85rem;
    text-shadow: 0 0 8px var(--vx-accent-purple);
}

/* Visual Card Image */
.block-visual {
    flex-shrink: 0;
}

.visual-card-img {
    width: 160px;
    height: 180px;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.knowledge-block:hover .visual-card-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* CTA Button */
.block-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--vx-font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.block-cta-btn span {
    background: var(--vx-gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.block-cta-btn i {
    color: var(--vx-accent-pink);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.block-cta-btn:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(236, 72, 153, 0.35));
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.3);
}

.block-cta-btn:hover i:first-child {
    transform: translateX(-3px);
}

.block-cta-btn:hover i:last-child {
    transform: translateX(3px);
}

/* Responsive Knowledge Section */
@media (max-width: 768px) {
    .block-content {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .block-visual {
        order: -1;
    }

    .visual-card-img {
        width: 140px;
        height: 160px;
    }

    .knowledge-block {
        padding: 1.5rem;
    }

    .block-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===============================================
   TEAM PROFILE SECTION - TRADER PLATFORM STYLE
   =============================================== */

.team-profile-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    /* Completely transparent - no background difference */
    background: transparent;
}

/* Background - Hidden by default, use pure CSS effects instead */
.team-bg-wrapper {
    display: none;
    /* Hide the background image completely */
}

.team-bg-img {
    display: none;
}

.team-bg-overlay {
    display: none;
}

/* Container positioning */
.team-profile-section .container {
    position: relative;
    z-index: 1;
}

/* Title */
.team-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards Wrapper */
.team-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

/* Team Card - Glass Morphism Trader Style */
.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.card-glow-pink {
    box-shadow:
        0 0 60px rgba(236, 72, 153, 0.3),
        inset 0 0 60px rgba(236, 72, 153, 0.05);
}

.card-glow-purple {
    box-shadow:
        0 0 60px rgba(168, 85, 247, 0.3),
        inset 0 0 60px rgba(168, 85, 247, 0.05);
}

.team-card:hover .card-glow {
    opacity: 1;
}

/* Card Inner - Main Container */
.card-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 2rem;
    background: rgba(15, 12, 45, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(100, 70, 180, 0.25);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.team-card:hover .card-inner {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(20, 15, 50, 0.85);
}

/* Card Header */
.team-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(100, 70, 180, 0.2);
}

.header-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.achievements-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.3));
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.services-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.3));
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.team-card .card-header h3 {
    font-size: 1.3rem;
}

/* Card Features */
.card-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.team-card .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(20, 15, 50, 0.5);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(100, 70, 180, 0.15);
    transition: all 0.3s ease;
}

.team-card .feature-item:hover {
    background: rgba(30, 25, 70, 0.6);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateX(5px);
}

.feature-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.3));
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.feature-icon i {
    font-size: 0.75rem;
    color: var(--vx-accent-purple);
    text-shadow: 0 0 8px var(--vx-accent-purple);
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    font-family: var(--vx-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--vx-text-white);
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-family: var(--vx-font-primary);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--vx-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* CTA Buttons */
.team-card .card-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--vx-font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.team-card .card-cta-btn span {
    transition: transform 0.3s ease;
}

.team-card .card-cta-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.team-card .card-cta-btn:hover i {
    transform: translateX(4px);
}

/* Pink CTA */
.cta-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.3));
    border-color: rgba(236, 72, 153, 0.4);
    color: #ec4899;
}

.cta-pink:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.35), rgba(219, 39, 119, 0.45));
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.3);
    color: #f472b6;
}

/* Purple CTA */
.cta-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.3));
    border-color: rgba(168, 85, 247, 0.4);
    color: #a855f7;
}

.cta-purple:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.35), rgba(139, 92, 246, 0.45));
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
    color: #c084fc;
}

/* Responsive Team Section */
@media (max-width: 992px) {
    .team-cards-wrapper {
        grid-template-columns: 1fr;
    }

    .team-profile-section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .card-inner {
        padding: 1.5rem;
    }

    .team-card .feature-item {
        padding: 0.8rem;
    }

    .header-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .team-card .card-header h3 {
        font-size: 1.1rem;
    }
}