/* ===================================================
   WIDGET FALLBACK STYLES (Extracted from home_new.php)
   These styles are used for widget fallback UI  
   =================================================== */

/* Review Platforms / Client Logos Section */
.review-platforms-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.client-logos {
    padding: 0;
}

.client-logo-item {
    padding: 15px;
    border-radius: 12px;
    background: white;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 120px;
}

.client-logo-item:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.client-logo-item img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .client-logo-item {
        min-width: 100px;
        min-height: 100px;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .client-logo-item {
        min-width: 80px;
        min-height: 80px;
        padding: 10px;
    }
}

/* IATA Certification Section Styles */
.iata-certification-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f3f4f7 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.iata-certification-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 141, 94, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.iata-certification-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 65, 49, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.iata-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.iata-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #664131;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.iata-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.iata-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #a88d5e, #e59756);
    border-radius: 2px;
}

/* Content Grid */
.iata-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.iata-info-card {
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(168, 141, 94, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.iata-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a88d5e, #e59756);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.iata-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(168, 141, 94, 0.15);
}

.iata-info-card:hover::before {
    opacity: 1;
}

.iata-badge {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #a88d5e, #e59756);
    color: white;
    box-shadow: 0 8px 20px rgba(168, 141, 94, 0.3);
}

.iata-badge.arc {
    background: linear-gradient(135deg, #664131, #a88d5e);
    box-shadow: 0 8px 20px rgba(102, 65, 49, 0.3);
}

.iata-badge.asta {
    background: linear-gradient(135deg, #e59756, #a88d5e);
    box-shadow: 0 8px 20px rgba(229, 151, 86, 0.3);
}

.iata-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #664131;
    margin-bottom: 1rem;
}

.iata-info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.iata-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature::before {
    content: '';
    width: 2px;
    height: 2px;
    background: #a88d5e;
    border-radius: 50%;
}

/* Logos Section */
.iata-logos-section {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 2;
}

.iata-logos-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #664131;
    margin-bottom: 2rem;
}

.iata-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.iata-logo-item {
    text-align: center;
    transition: all 0.4s ease;
}

.iata-logo-item:hover {
    transform: translateY(-5px);
}

.logo-box {
    background: linear-gradient(135deg, #f8f9fa, #f0f0f0);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #a88d5e;
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.iata-logo-item:hover .logo-box {
    background: linear-gradient(135deg, #a88d5e, #e59756);
    border-color: #a88d5e;
    color: white;
    box-shadow: 0 8px 20px rgba(168, 141, 94, 0.3);
}

.iata-logo-item span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #664131;
}

/* Trust Statement */
.iata-trust-statement {
    background: linear-gradient(135deg, #664131 0%, #a88d5e 50%, #e59756 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.iata-trust-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.iata-trust-statement p {
    color: white;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .iata-certification-section {
        padding: 4rem 0;
    }

    .iata-content-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .iata-info-card {
        padding: 2rem;
    }

    .iata-header h2 {
        font-size: 2rem;
    }

    .iata-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .iata-certification-section {
        padding: 3rem 0;
    }

    .iata-content-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .iata-header h2 {
        font-size: 1.6rem;
    }

    .iata-subtitle {
        font-size: 1rem;
    }

    .iata-info-card {
        padding: 1.75rem;
    }

    .iata-badge {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .iata-info-card h3 {
        font-size: 1.2rem;
    }

    .iata-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .logo-box {
        font-size: 2rem;
    }

    .iata-trust-statement {
        padding: 2rem;
    }

    .iata-trust-statement p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .iata-certification-section {
        padding: 2rem 0;
    }

    .iata-header {
        margin-bottom: 2.5rem;
    }

    .iata-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .iata-subtitle {
        font-size: 0.9rem;
    }

    .iata-subtitle::after {
        width: 80px;
    }

    .iata-content-grid {
        margin-bottom: 2rem;
    }

    .iata-info-card {
        padding: 1.5rem;
    }

    .iata-badge {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .iata-info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .iata-info-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .iata-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .logo-box {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .iata-logo-item span {
        font-size: 0.75rem;
    }

    .iata-logos-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .iata-logos-title {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }

    .iata-trust-statement {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .iata-trust-statement p {
        font-size: 0.95rem;
    }
}
