/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #fefefe;
    color: #333;
    line-height: 1.6;
}

.main-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Premium Tab Container */
.premium-tab {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.tab-container {
    background: white;
    border-radius: 24px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.tab-container::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

/* Tab Content Layout */
.tab-content {
    display: flex;
    flex-wrap: wrap;
    padding: 50px;
    gap: 60px;
}

.content-left, .content-right {
    flex: 1;
    min-width: 300px;
}

/* Premium Badge */
.premium-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    color: #7a5800;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(248, 181, 0, 0.2);
}

.premium-badge i {
    margin-right: 8px;
    font-size: 16px;
}

/* Main Heading */
.main-heading {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.description {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 20px;
    color: #667eea;
}

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2d3748;
}

.feature-content p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    margin-top: 40px;
}

.cta-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 20px;
    font-weight: 500;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    margin-bottom: 16px;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.contact-button:active {
    transform: translateY(0);
}

.button-hover-effect {
  
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
     pointer-events: none;
}

.contact-button:hover .button-hover-effect {
    left: 100%;
}

.button-text {
    margin-right: 12px;
    letter-spacing: 0.3px;
}

.button-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-button:hover .button-icon {
    transform: translateX(5px);
}

.cta-note {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #718096;
}

.cta-note i {
    margin-right: 8px;
    color: #48bb78;
}

/* Right Content - Image */
.content-right {
    display: flex;
    align-items: center;
}

.image-container {
    width: 100%;
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.premium-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.image-wrapper:hover .premium-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: #f6ad55;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

/* Trust Badges */
.trust-badges {
    padding: 40px 60px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.trust-title {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #718096;
    margin-bottom: 25px;
    font-weight: 600;
}

.logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

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

.logo-placeholder i {
    font-size: 1.8rem;
    color: #4a5568;
}

.logo-placeholder span {
    font-weight: 600;
    color: #2d3748;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tab-content {
        padding: 50px;
        gap: 50px;
    }
    
    .main-heading {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .tab-content {
        flex-direction: column;
    }
    
    .content-left, .content-right {
        width: 100%;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tab-content {
        padding: 30px;
        gap: 40px;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .contact-button {
        
        padding: 18px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-badges {
        padding: 30px;
    }
    
    .logos {
        gap: 20px;
    }
    
    .logo-placeholder {
        padding: 10px 16px;
    }
}

@media (max-width: 480px) {
    .tab-content {
        padding: 25px;
    }
    
    .main-heading {
        font-size: 1.9rem;
    }
    
    .premium-badge {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .feature {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .floating-badge {
        top: 10px;
        right: 10px;
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    .trust-badges {
        padding: 25px 15px;
    }
}













/* =========================
   CONTACT BUTTON GROUP
========================= */

.contact-button-group {
    display: flex;
    gap: 18px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* SECONDARY BUTTON STYLE */
.contact-secondary-button {
    background: transparent;
    color: #0084ff;
    border: 2px solid #0084ff;
}

.contact-secondary-button .button-text {
    color: #0084ff;
}

/* Hover effect for secondary */
.contact-secondary-button:hover {
    background: #0084ff;
}

.contact-secondary-button:hover .button-text {
    color: #ffffff;
}
