/* Trial Page Specific Styles */
:root {
    --gradient-primary: linear-gradient(145deg, #1e3799, #4c7bff);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.16);
    --transition-base: all 0.3s ease;
}

.checkout-container {
    min-height: 100vh;
    background: #f8faff;
    padding: 0;
}

.checkout-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 1rem 2rem;
    transition: var(--transition-base);
}

.checkout-header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-header .logo img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.checkout-header .logo:hover img {
    transform: scale(1.05);
}

.checkout-header .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.checkout-header .logo-text span {
    background: linear-gradient(135deg, #4c7bff, #2d5fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Add header navigation breadcrumb */
.checkout-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
    font-size: 0.95rem;
}

.checkout-nav a {
    color: #4c7bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkout-nav a:hover {
    color: #2d5fff;
}

.checkout-nav i {
    font-size: 0.85rem;
    margin: 0 0.5rem;
}

/* Adjust main content padding */
.checkout-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2.5rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.plan-header h1 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 700;
}

.plan-description {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.plan-price.trial {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.plan-price.trial .original-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.plan-price.trial .final-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.plan-price.trial .final-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.trial-badge {
    display: inline-flex;
    align-items: center;
    background: #00c853;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.2);
}

.trial-badge i {
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-details, .checkout-form {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.features-list {
    margin: 2rem 0;
}

.features-list h2 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.features-list ul {
    display: grid;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.features-list li i {
    color: #48bb78;
    font-size: 1.2rem;
}

.trial-form h2 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.price-tag {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 2px dashed #4c7bff;
}

.price-tag .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #48bb78;
    display: block;
    margin-bottom: 0.5rem;
}

.price-tag .period {
    color: #4a5568;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-base);
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #4c7bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 123, 255, 0.1);
}

.submit-button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    width: 100%;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button i {
    font-size: 1.2rem;
}

.contact-section {
    padding: 2rem;
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 3rem;
    color: #4c7bff;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.contact-header h2 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-header p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-button i {
    font-size: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.button-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.button-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-button.email {
    background: linear-gradient(135deg, #4c7bff, #2d5fff);
    color: white;
}

.contact-button.whatsapp {
    background: linear-gradient(135deg, #25d366, #128C7E);
    color: white;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #f7fafc;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-note i {
    color: #4c7bff;
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.contact-note p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-button {
        padding: 1rem;
    }
    
    .contact-button i {
        font-size: 1.25rem;
        width: 2rem;
        height: 2rem;
    }
    
    .button-title {
        font-size: 1rem;
    }
    
    .button-desc {
        font-size: 0.85rem;
    }
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #718096;
}

.badge i {
    color: #4c7bff;
    font-size: 1.2rem;
}

.trial-notice {
    margin-top: 2rem;
    padding: 1rem;
    background: #ebf8ff;
    border-radius: 8px;
    color: #2c5282;
}

.trial-notice i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-container {
        padding: 0;
    }
    
    .checkout-header {
        padding: 0.75rem 1rem;
    }
    
    .checkout-header .logo img {
        width: 28px;
        height: 28px;
    }
    
    .checkout-header .logo-text {
        font-size: 1.25rem;
    }
    
    .checkout-nav {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .checkout-content {
        padding: 1rem;
    }
    
    .plan-header h1 {
        font-size: 2rem;
    }
    
    .support-options {
        flex-direction: column;
    }
    
    .security-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add header shadow on scroll */
.checkout-header.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.guarantee-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 30px 0;
}

.guarantee-banner i {
    font-size: 2rem;
    color: #ffd700;
}

.guarantee-banner p {
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .plan-header h1 {
        font-size: 2rem;
    }
    
    .premium-trial {
        padding: 20px;
    }
    
    .trial-badge {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Support Section Enhancements */
.support-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}

.support-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.support-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.support-button.email {
    background: #f1f3f9;
    color: var(--dark-blue);
}

.support-button.whatsapp {
    background: #25d366;
    color: white;
}

.support-button:hover {
    transform: translateY(-2px);
}
