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

body {
    font-family: 'Tajawal', sans-serif;
    background: #f8f9fa;
    color: #1a1a2e;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {
    color: #46a0b2;
    font-size: 24px;
}
nav a {
    color: #1a1a2e;
    text-decoration: none;
    margin-right: 25px;
    font-weight: 700;
    transition: 0.3s;
}
nav a:hover {
    color: #46a0b2;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #46a0b2 0%, #2d7d8c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}
.hero h2 span {
    color: #ffe066;
}
.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}
.hero-buttons .btn {
    margin: 0 10px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: #ffe066;
    color: #1a1a2e;
}
.btn-primary:hover {
    background: #ffd633;
    transform: scale(1.05);
}
.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* FEATURES */
.features {
    padding: 60px 0;
    background: white;
}
.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.feature {
    text-align: center;
    padding: 20px;
}
.feature .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}
.feature h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.feature p {
    color: #666;
}

/* PACKAGES */
.packages {
    padding: 60px 0;
}
.packages h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.card .price {
    font-size: 28px;
    font-weight: 800;
    color: #46a0b2;
    margin-bottom: 15px;
}
.card ul {
    list-style: none;
    text-align: right;
    padding: 0;
    margin-bottom: 25px;
}
.card ul li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
}
.card .btn {
    background: #46a0b2;
    color: white;
}
.card .btn:hover {
    background: #3a8a9a;
}
.card.featured {
    border: 3px solid #ffe066;
    transform: scale(1.03);
}
.card.featured:hover {
    transform: scale(1.06);
}

/* CONTACT PAGE */
.contact-page {
    padding: 60px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.contact-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
}
.contact-info p {
    color: #666;
    margin-bottom: 25px;
}
.info-card {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
}
.info-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}
.info-card a {
    color: #46a0b2;
    text-decoration: none;
}
.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #46a0b2;
    outline: none;
    box-shadow: 0 0 0 4px rgba(70,160,178,0.1);
}
.contact-form button {
    width: 100%;
    padding: 15px;
    background: #46a0b2;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form button:hover {
    background: #3a8a9a;
}
.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.message {
    padding: 12px;
    border-radius: 12px;
    margin-top: 15px;
    text-align: center;
    font-weight: 700;
    display: none;
}
.message.success {
    display: block;
    background: #d4edda;
    color: #155724;
}
.message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}
.message.loading {
    display: block;
    background: #fff3cd;
    color: #856404;
}

/* FOOTER */
footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 30px 0;
    text-align: center;
}
footer .social-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}
footer .social-links a:hover {
    color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 10px;
    }
    nav a {
        margin: 0 10px;
        font-size: 14px;
    }
    .hero h2 {
        font-size: 28px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .cards {
        grid-template-columns: 1fr;
    }
    .card.featured {
        transform: none;
    }
    .card.featured:hover {
        transform: translateY(-5px);
    }
}