/* ===============================
   WHY CHOOSE US SECTION STYLES
   =============================== */

.why-choose-section {
    position: relative;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        rgba(248, 250, 252, 0.8) 50%, 
        rgba(243, 244, 246, 0.6) 100%
    );
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(13, 27, 42, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(217, 159, 89, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 150, 199, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header Styles */
.why-choose-section .welcome-flag {
    color: #D19F59;
    font-weight: 600;
}

.why-choose-section .gradient-text {
    background: linear-gradient(135deg, 
        #1f2937 0%,   /* Dark gray */
        #374151 25%,  /* Medium gray */
        #111827 50%,  /* Very dark gray */
        #000000 75%,  /* Black */
        #1f2937 100%  /* Dark gray */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Advantages Content Styles */
.advantages-content {
    position: relative;
    z-index: 2;
}

.advantage-item {
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.4) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-item:hover::before {
    opacity: 1;
}

.advantage-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.advantage-icon {
    position: relative;
    z-index: 2;
}

.advantage-text {
    position: relative;
    z-index: 2;
}

.advantage-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.advantage-text p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

/* Visual Content Styles */
.advantages-visual {
    position: relative;
    z-index: 2;
}

.advantages-visual img {
    max-height: 250px;
    object-fit: cover;
    width: 100%;
}

.main-visual-container {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-visual-container:hover {
    transform: scale(1.02);
}

/* Statistics Cards */
.stat-card {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.stat-card div:first-child {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-card div:last-child {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.gradient-247{
    background: linear-gradient(to bottom right, #ffab0f, #d18904);
}

/* Trust Badge */
.trust-badge {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.trust-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Floating Icons Animation */
.floating-icon {
    animation: float 3s ease-in-out infinite;
    background: #1e3a8a !important; /* Navy blue for visibility */
    color: white !important;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
    z-index: 10;
}

.floating-icon.delay-1000 {
    animation-delay: 1.5s;
    background: #d19f59 !important; /* Golden color for second icon */
    color: white !important;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Animations */
.advantage-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease-out forwards;
}

.advantage-item:nth-child(1) { animation-delay: 0.1s; }
.advantage-item:nth-child(2) { animation-delay: 0.3s; }
.advantage-item:nth-child(3) { animation-delay: 0.5s; }
.advantage-item:nth-child(4) { animation-delay: 0.7s; }

.advantages-visual {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRight 1s ease-out 0.2s forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .advantages-content {
        order: 2;
    }
    
    .advantages-visual {
        order: 1;
        margin-bottom: 3rem;
    }
    
    .advantage-item {
        padding: 1rem;
    }
    
    .advantage-text h3 {
        font-size: 1.375rem;
    }
    
    .advantage-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .advantage-item .flex {
        flex-direction: column;
        text-align: center;
        gap: 0;
    }
    
    .advantage-icon {
        margin-bottom: 1rem;
    }
    
    .stat-card div:first-child {
        font-size: 1.75rem;
    }
    
    .floating-icon {
        display: none;
    }
}

@media (max-width: 640px) {
    .why-choose-section {
        padding: 3rem 0;
    }
    
    .advantage-item {
        padding: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .advantages-visual .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .main-visual-container .p-8 {
        padding: 1.5rem;
    }
}
