/* ===================================
   MISSION SECTION - MODERN REDESIGN
   =================================== */

/* Base Section Styling */
.mission {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Shapes */
.mission-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #20B2AA 0%, #1FBDC6 100%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4A90E2 0%, #7DAFEB 100%);
    bottom: -150px;
    left: -150px;
    animation-delay: 7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #1FBDC6 0%, #00CED1 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-30px) translateX(30px) rotate(90deg); }
    50% { transform: translateY(0) translateX(-30px) rotate(180deg); }
    75% { transform: translateY(30px) translateX(30px) rotate(270deg); }
}

/* Grid Layout */
.mission-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header.text-left {
    text-align: left;
    margin-bottom: 32px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #20B2AA 0%, #1FBDC6 100%);
    color: white;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(31, 189, 198, 0.3);
}

.section-label i {
    font-size: 14px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.mission-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: #64748b;
    margin-top: 12px;
    max-width: 600px;
}

/* Lead Text */
.lead {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 32px;
    max-width: 620px;
}

/* Values Grid - Modern Card Design */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.value-item {
    position: relative;
    padding: 24px;
    border-radius: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.value-gradient-1::before {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.08) 0%, rgba(31, 189, 198, 0.03) 100%);
}

.value-gradient-2::before {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(125, 175, 235, 0.03) 100%);
}

.value-gradient-3::before {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(167, 139, 250, 0.03) 100%);
}

.value-gradient-4::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(52, 211, 153, 0.03) 100%);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.value-item:hover::before {
    opacity: 1;
}

.value-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.value-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #20B2AA 0%, #1FBDC6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(31, 189, 198, 0.3);
    transition: all 0.4s ease;
}

.value-gradient-2 .value-icon {
    background: linear-gradient(135deg, #4A90E2 0%, #7DAFEB 100%);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.3);
}

.value-gradient-3 .value-icon {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.value-gradient-4 .value-icon {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-badge {
    width: 32px;
    height: 32px;
    background: rgba(31, 189, 198, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1FBDC6;
    font-size: 13px;
    font-weight: 800;
}

.value-content {
    position: relative;
    z-index: 1;
}

.value-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.value-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
}

/* Service Highlights Modern */
.service-highlights-modern {
    margin-bottom: 48px;
    padding: 32px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    color: white;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.highlights-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.highlight-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.05) 0%, rgba(31, 189, 198, 0.02) 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.highlight-modern:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.1) 0%, rgba(31, 189, 198, 0.05) 100%);
}

.highlight-icon-modern {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1FBDC6;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.highlight-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.highlight-info p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

/* CTA Group */
.cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
}

.primary-cta,
.secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(135deg, #20B2AA 0%, #1FBDC6 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(31, 189, 198, 0.4);
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(31, 189, 198, 0.5);
}

.secondary-cta {
    background: white;
    color: #1FBDC6;
    border: 2px solid #1FBDC6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.secondary-cta:hover {
    background: #1FBDC6;
    color: white;
    transform: translateY(-4px);
}

/* Mission Visual - Right Side Card */
.mission-visual {
    position: relative;
}

.visual-card-wrapper {
    position: relative;
    animation: floatSoft 6s ease-in-out infinite;
}

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    border-radius: 100px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    z-index: 10;
    animation: pulse 3s ease-in-out infinite;
}

.floating-badge i {
    color: #FFB800;
    font-size: 14px;
}

.badge-1 {
    top: -15px;
    right: 30px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30px;
    left: -25px;
    animation-delay: 1.5s;
}

.badge-2 i {
    color: #10B981;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Experience Card Modern */
.experience-card-modern {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Card Header with Location */
.card-header-modern {
    margin-bottom: 24px;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.08) 0%, rgba(31, 189, 198, 0.03) 100%);
    border-radius: 14px;
}

.location-badge i {
    font-size: 20px;
    color: #1FBDC6;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.location-code {
    font-size: 13px;
    color: #64748b;
}

/* Team Showcase */
.team-showcase {
    padding: 22px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(125, 175, 235, 0.03) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
}

.team-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.team-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.team-count {
    padding: 5px 12px;
    background: white;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #4A90E2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.team-member {
    position: relative;
    aspect-ratio: 1;
}

.team-member img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.08);
}

.member-status {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 10px;
    height: 10px;
    background: #10B981;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.team-member-more {
    background: linear-gradient(135deg, #20B2AA 0%, #1FBDC6 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 3px 10px rgba(31, 189, 198, 0.3);
}

.team-member-more span {
    font-size: 18px;
    font-weight: 800;
}

.team-member-more small {
    font-size: 10px;
    font-weight: 600;
}

.team-description {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

/* Availability Section */
.availability-section {
    padding: 28px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(167, 139, 250, 0.03) 100%);
    border-radius: 20px;
    margin-bottom: 24px;
}

.availability-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #8B5CF6;
    font-weight: 700;
    font-size: 15px;
}

.availability-header i {
    font-size: 18px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.time-slot {
    padding: 16px 12px;
    background: white;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.time-slot:hover {
    border-color: #8B5CF6;
    transform: translateY(-4px);
}

.time-slot.active {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.time-slot .time {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.8;
}

.time-slot .period {
    display: block;
    font-size: 16px;
    font-weight: 800;
}

/* Contact Modern */
.contact-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-btn-modern {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn-modern:hover {
    border-color: #1FBDC6;
    transform: translateX(6px);
    box-shadow: 0 6px 16px rgba(31, 189, 198, 0.15);
}

.btn-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #20B2AA 0%, #1FBDC6 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.btn-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.btn-label {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.btn-value {
    font-size: 14px;
    color: #1a1a2e;
    font-weight: 700;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .mission-grid {
        gap: 40px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .values-grid {
        gap: 16px;
    }

    .value-item {
        padding: 22px;
    }
}

@media (max-width: 992px) {
    .mission {
        padding: 70px 0;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .highlights-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .floating-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 16px;
    }

    .badge-2 {
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .mission {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .mission-subtitle {
        font-size: 15px;
    }

    .lead {
        font-size: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .value-item {
        padding: 20px;
    }

    .service-highlights-modern {
        padding: 20px;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .primary-cta,
    .secondary-cta {
        width: 100%;
        justify-content: center;
    }

    .experience-card-modern {
        padding: 24px;
    }

    .time-slots {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-showcase {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .mission {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-label {
        font-size: 10px;
        padding: 6px 14px;
    }

    .value-item {
        padding: 18px;
    }

    .value-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .value-item h4 {
        font-size: 16px;
    }

    .experience-card-modern {
        padding: 20px;
        border-radius: 20px;
    }

    .team-showcase,
    .availability-section {
        padding: 16px;
    }

    .contact-btn-modern {
        padding: 14px 16px;
    }

    .btn-value {
        font-size: 13px;
    }

    .floating-badge {
        font-size: 11px;
        padding: 8px 14px;
    }
}

@media (max-width: 360px) {
    .section-header h2 {
        font-size: 24px;
    }

    .mission-subtitle {
        font-size: 14px;
    }

    .lead {
        font-size: 14px;
    }

    .value-item {
        padding: 16px;
    }

    .value-item h4 {
        font-size: 15px;
    }

    .value-item p {
        font-size: 13px;
    }
}
