/* custom.css */
:root {
    --primary: #FF6B35;
    --primary-dark: #E55627;
    --secondary: #2D3047;
    --accent: #00A8E8;
    --light: #F8F9FA;
    --dark: #1A1A2E;
    --gradient: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* تحسينات للقالب */
body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
}

/* أنماط الباقات */
.phoenix-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.package-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #eee;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.package-duration {
    color: #777;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.package-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.5rem 0;
}

.package-price span {
    font-size: 1rem;
    color: #777;
    font-weight: normal;
}

.package-features {
    list-style: none;
    margin: 2rem 0;
    text-align: right;
    padding-right: 0;
}

.package-features li {
    padding: 0.7rem 0;
    position: relative;
    padding-right: 1.8rem;
    border-bottom: 1px solid #eee;
}

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

.package-reach {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/* نموذج الاتصال */
.phoenix-contact-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin: 3rem 0;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-response {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
}

.success-message {
    background: rgba(76, 217, 100, 0.1);
    color: #4CD964;
    padding: 1rem;
    border-radius: 8px;
    border-right: 4px solid #4CD964;
}

.error-message {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 1rem;
    border-radius: 8px;
    border-right: 4px solid var(--primary);
}