/* Platinum Carrier Dealer Section Styles */
.platinum-dealer-section {
    background: linear-gradient(135deg, #0a1a35 0%, #1a3a6c 50%, #0a1a35 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.platinum-dealer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 123, 200, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.dealer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.dealer-header {
    text-align: center;
    margin-bottom: 80px;
}

.platinum-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #07c5ff, #0bdef5);
    color: #0a1a35;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
}

.dealer-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #6a9ae3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dealer-subtitle {
    font-size: 1.3rem;
    color: #6a9ae3;
    font-weight: 300;
}

/* Main Content Styles */
.dealer-main {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
}

/* Partnership Info - Centered Logo */
.partnership-info {
    width: 100%;
    display: flex;
    justify-content: center;
}

.carrier-logo-container {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.logo-wrapper {
    margin-bottom: 30px;
}

.carrier-logo {
    max-width: 400px;
    height: auto;
   
    transition: all 0.3s ease;
}

.carrier-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.partnership-status {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4ade80;
    font-weight: 500;
    font-size: 1.1rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4ade80;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Benefits Section */
.benefits-section {
    width: 100%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d5ff, #4effd0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #0a1a35;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.benefit-card h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-card p {
    color: #e6e9f0;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .platinum-dealer-section {
        padding: 60px 0;
    }
    
    .dealer-title {
        font-size: 2.2rem;
    }
    
    .dealer-subtitle {
        font-size: 1.1rem;
    }
    
    .carrier-logo-container {
        padding: 40px 20px;
    }
    
    .carrier-logo {
        max-width: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .dealer-title {
        font-size: 1.8rem;
    }
    
    .carrier-logo {
        max-width: 250px;
    }
    
    .status-indicator {
        font-size: 1rem;
    }
    
    .benefit-card h4 {
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
}