/* ========================================
   ULTRA MODERN ABOUT SECTION V2
   Complete UI Design
   ======================================== */

.about-section-ultra-v2 {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #fef3c7 0%, 
        #fce7f3 25%, 
        #ddd6fe 50%, 
        #e0e7ff 75%, 
        #fef3c7 100%);
    background-size: 400% 400%;
    animation: gradientFlow 20s ease infinite;
    overflow: hidden;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========================================
   ANIMATED BACKGROUND
   ======================================== */

.about-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.about-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floatOrb 25s ease-in-out infinite;
}

.orb-purple {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6, #ec4899);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #3b82f6, #06b6d4);
    bottom: -200px;
    right: -200px;
    animation-delay: 8s;
}

.orb-pink {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899, #f59e0b);
    top: 40%;
    right: 10%;
    animation-delay: 16s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(60px, -60px) scale(1.15);
    }
    66% {
        transform: translate(-40px, 40px) scale(0.85);
    }
}

.about-pattern-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

/* ========================================
   MAIN ABOUT CARD
   ======================================== */

.about-main-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 80px 70px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    z-index: 2;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardEntrance 1s ease;
}

@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

/* ========================================
   DECORATIVE ELEMENTS
   ======================================== */

.card-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    opacity: 0.1;
}

.card-decoration.top-left {
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    animation: rotate 20s linear infinite;
}

.card-decoration.top-right {
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    animation: rotate 25s linear infinite reverse;
}

.card-decoration.bottom-left {
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, #10b981, #34d399);
    animation: rotate 30s linear infinite;
}

.card-decoration.bottom-right {
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #f59e0b, #fb923c);
    animation: rotate 22s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   BADGE
   ======================================== */

.about-badge-wrapper {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    animation: fadeInDown 0.8s ease 0.2s both;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 60px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.about-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about-badge-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.about-badge-modern:hover::before {
    left: 100%;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.badge-dot:first-child {
    animation-delay: 0s;
}

.badge-dot:last-child {
    animation-delay: 1s;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.badge-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========================================
   TITLE
   ======================================== */

.about-title-modern {
    text-align: center;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 50px 0;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.title-word {
    display: inline-block;
    margin: 0 8px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: wordFloat 3s ease-in-out infinite;
}

.title-word:nth-child(1) { animation-delay: 0s; }
.title-word:nth-child(2) { animation-delay: 0.2s; }
.title-word:nth-child(4) { animation-delay: 0.4s; }
.title-word:nth-child(5) { animation-delay: 0.6s; }
.title-word:nth-child(6) { animation-delay: 0.8s; }

@keyframes wordFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.title-word::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.title-word:hover::after {
    opacity: 1;
}

.title-break {
    display: block;
    height: 10px;
}

/* ========================================
   DESCRIPTION
   ======================================== */

.about-description-modern {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.description-highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border-left: 4px solid #8b5cf6;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.description-highlight:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.3);
}

.highlight-text {
    flex: 1;
    font-size: 20px;
    line-height: 1.7;
    color: #1a1a2e;
    font-weight: 600;
    margin: 0;
}

.description-main {
    padding: 0 30px;
}

.main-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 40px;
}

/* ========================================
   COMPANY HIGHLIGHT
   ======================================== */

.company-highlight {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 35px;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.4s ease;
}

.company-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4, #10b981);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-highlight:hover::before {
    opacity: 1;
}

.company-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.company-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.company-highlight:hover .company-icon {
    transform: scale(1.1) rotate(5deg);
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 15px 0;
}

.company-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* ========================================
   FEATURE ICONS
   ======================================== */

.about-features-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.feature-icon-item:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icon-circle::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;
}

.feature-icon-item:hover .icon-circle::before {
    left: 100%;
}

.feature-icon-item:nth-child(1) .icon-circle {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.feature-icon-item:nth-child(2) .icon-circle {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.feature-icon-item:nth-child(3) .icon-circle {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.feature-icon-item:nth-child(4) .icon-circle {
    background: linear-gradient(135deg, #f59e0b, #fb923c);
}

.feature-icon-item:hover .icon-circle {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.icon-label {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    text-align: center;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .about-section-ultra-v2 {
        padding: 80px 0;
    }
    
    .about-main-card {
        padding: 60px 40px;
    }
    
    .about-title-modern {
        font-size: 48px;
    }
    
    .highlight-text {
        font-size: 18px;
    }
    
    .main-text {
        font-size: 16px;
    }
    
    .company-name {
        font-size: 24px;
    }
    
    .company-desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .about-section-ultra-v2 {
        padding: 60px 0;
    }
    
    .about-main-card {
        padding: 40px 30px;
        border-radius: 30px;
    }
    
    .about-title-modern {
        font-size: 36px;
    }
    
    .title-word {
        margin: 0 4px;
    }
    
    .description-highlight {
        flex-direction: column;
        padding: 25px;
    }
    
    .highlight-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .highlight-text {
        font-size: 16px;
    }
    
    .description-main {
        padding: 0 15px;
    }
    
    .main-text {
        font-size: 15px;
    }
    
    .company-highlight {
        flex-direction: column;
        padding: 25px;
    }
    
    .company-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .company-name {
        font-size: 22px;
    }
    
    .company-desc {
        font-size: 14px;
    }
    
    .about-features-icons {
        gap: 25px;
        margin-top: 40px;
    }
    
    .icon-circle {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .icon-label {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .about-section-ultra-v2 {
        padding: 50px 0;
    }
    
    .about-main-card {
        padding: 30px 20px;
        border-radius: 25px;
    }
    
    .about-badge-modern {
        padding: 10px 24px;
        font-size: 12px;
    }
    
    .about-title-modern {
        font-size: 28px;
    }
    
    .highlight-text {
        font-size: 15px;
    }
    
    .main-text {
        font-size: 14px;
    }
    
    .company-name {
        font-size: 20px;
    }
    
    .company-desc {
        font-size: 13px;
    }
    
    .about-features-icons {
        gap: 20px;
    }
    
    .icon-circle {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}
