/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(120deg, #f4f4f4 0%, #e0e7ff 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: block;
}

/* Navigation */
.navigation {
    background-color: #2563eb;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.navigation a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.navigation a:hover {
    background-color: #1d4ed8;
}

.navigation a.active {
    background-color: #1d4ed8;
}

/* Contact Hero Section */
.contact-hero {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-hero h1 {
    color: #1e293b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero p {
    color: #475569;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Methods Section */
.contact-methods {
    margin-bottom: 3rem;
}

.contact-methods h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #2563eb;
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.whatsapp-card .contact-icon {
    background: #25d366;
}

.phone-card .contact-icon {
    background: #2563eb;
}

.email-card .contact-icon {
    background: #7c3aed;
}

.contact-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    color: #475569;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    text-align: center;
    color: white;
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.phone-btn {
    background: #2563eb;
}

.phone-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.email-btn {
    background: #7c3aed;
}

.email-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

/* Contact Info Section */
.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-info h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #475569;
    font-size: 1rem;
}

/* Portal Access Section */
.portal-access {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.portal-access h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.portal-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.portal-info h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portal-info p {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.portal-steps {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.portal-steps li {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portal-steps strong {
    color: #1e293b;
}

.portal-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.portal-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.portal-tip {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.portal-tip i {
    color: #f59e0b;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.portal-tip p {
    margin: 0;
    color: #92400e;
    font-size: 1rem;
    line-height: 1.5;
}

.portal-tip strong {
    color: #78350f;
}

.portal-cta {
    text-align: center;
}

.portal-button {
    display: inline-block;
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.portal-button:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.portal-button i {
    margin-right: 0.5rem;
}

.portal-visual {
    text-align: center;
    padding: 2rem;
}

.portal-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.portal-visual p {
    color: #475569;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.portal-steps-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.step-item span:last-child {
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

.step-arrow {
    color: #2563eb;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0.5rem;
}

/* Plans Section */
.plans-section {
    margin-bottom: 3rem;
}

.plans-section h2 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.plan-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #2563eb;
}

.plan-card.featured {
    border-color: #2563eb;
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.plan-image {
    text-align: center;
    margin-bottom: 1rem;
}

.plan-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.plan-img:hover {
    transform: scale(1.05);
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features ul {
    list-style: none;
    padding: 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.plan-features i {
    color: #10b981;
    font-size: 1.1rem;
}

.plan-cta {
    text-align: center;
}

.plan-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.daily-btn {
    background: #f59e0b;
    color: white;
}

.daily-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.weekly-btn {
    background: #2563eb;
    color: white;
}

.weekly-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.monthly-btn {
    background: #7c3aed;
    color: white;
}

.monthly-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

/* Sections */
section {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

section h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

section h3 {
    color: #334155;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

.about-text i {
    color: #2563eb;
    font-size: 1.2rem;
    min-width: 20px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: #2563eb;
    color: white;
    padding: 3rem 2rem;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Lists */
ul {
    list-style-position: inside;
    margin: 1rem 0;
}

li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
    text-align: center;
    margin: 2rem 0;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1rem;
}

.primary-btn {
    background: white;
    color: #2563eb;
}

.primary-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo-img {
    width: 40px;
    height: auto;
    border-radius: 6px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.payment-icon {
    color: #f59e0b;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #334155;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .container {
        padding: 10px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .portal-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portal-visual {
        order: -1;
    }
    
    .portal-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .portal-steps-visual {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .portal-tip {
        flex-direction: column;
        text-align: center;
    }
    
    .portal-steps-visual {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .step-arrow {
        display: none;
    }
}