/* Page-specific styles for Pricing page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero {
    text-align: center;
    margin-bottom: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 3px solid var(--primary);
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.plan-period {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid #ecf0f1;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    margin-right: 10px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, var(--primary), #5dade2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: white;
}

.btn-secondary {
    background: #95a5a6;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.currency-toggle {
    text-align: center;
    margin-bottom: 40px;
}

.currency-buttons {
    display: inline-flex;
    background: white;
    border-radius: 25px;
    padding: 5px;
    box-shadow: var(--shadow);
}

.currency-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: var(--dark);
    cursor: pointer;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.currency-btn.active {
    background: var(--primary);
    color: white;
}

.beta-benefits-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.benefits-container {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-title {
    font-size: 2.5rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-card {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 15px;
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 40px 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
}

/* ...existing styles... */

.contact-section {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 50px;
}

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

.contact-card {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}

.contact-email {
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.contact-modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.contact-modal-header {
    background: linear-gradient(45deg, var(--primary), #5dade2);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-modal-body {
    padding: 30px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-option {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.contact-option h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-option p {
    color: #7f8c8d;
    margin-bottom: 15px;
}

.email-btn {
    background: var(--success);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.email-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.copy-email-section {
    display: flex;
    gap: 10px;
    align-items: center;
}

.copy-email-section input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    background: white;
    font-family: monospace;
}

.copy-btn {
    background: var(--warning);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #e67e22;
    transform: translateY(-1px);
}

.copy-btn.copied {
    background: var(--success);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-title {
        font-size: 2rem;
    }

    .copy-email-section {
        flex-direction: column;
    }

    .copy-email-section input {
        width: 100%;
    }
}
