/*
Theme Name: Zad Umrah
Theme URI: https://zadumrah.com
Author: زاد للعمرة والزيارة
Author URI: https://zadumrah.com
Description: قالب مخصص لموقع زاد للعمرة والزيارة - رحلات عمرة من الرياض. تصميم أنيق ومتجاوب مع دعم كامل للغة العربية والـ RTL.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zad-umrah
Tags: rtl, arabic, umrah, travel, landing-page, responsive
*/

/* ========================================
   CSS الأصلي من الموقع (مُنظّف ومُحسّن للووردبريس)
   ======================================== */

:root {
    --primary-green: #1a8754;
    --gold: #d4af37;
    --cream: #f8f5f0;
    --dark-blue: #1e3a5f;
    --text-dark: #333333;
    --light-gray: #f5f5f5;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --section-1: #f8f5f0;
    --section-2: #e8f4f1;
    --section-3: #f0f4f8;
    --section-4: #f8f0f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background: transparent;
    backdrop-filter: blur(8px);
    z-index: 100;
    padding: 12px 0;
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin-left: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--gold);
    margin: 0;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 58, 95, 0.85), rgba(26, 135, 84, 0.85)), url('https://www.ahstatic.com/photos/a5f2_ho_00_p_2048x1536.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--gold);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 10px;
}

.hero-feature i {
    color: var(--gold);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    overflow: hidden;
    position: relative;
}

.btn-primary {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 6px 20px rgba(26,135,84,0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
}

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

.btn-secondary:hover {
    background: white;
    color: var(--dark-blue);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-5px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    right: 50%;
    transform: translateX(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-bg-1 { background-color: var(--section-1); }
.section-bg-2 { background-color: var(--section-2); }
.section-bg-3 { background-color: var(--section-3); }
.section-bg-4 { background-color: var(--section-4); }

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    display: inline-block;
    padding: 15px 30px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-green), var(--gold));
    border-radius: 2px;
}

.section-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: block;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-green));
    color: white;
}

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

.feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.feature-card h3 { 
    font-size: 1.5rem; 
    margin-bottom: 15px; 
}

/* Packages, Buses, Hotels Grid */
.packages-grid, .buses-grid, .hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.package-card, .bus-card, .hotel-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover, .bus-card:hover, .hotel-card:hover {
    transform: translateY(-15px);
}

.package-header, .bus-header {
    background: var(--dark-blue);
    color: white;
    padding: 25px;
    text-align: center;
}

.package-body, .bus-body, .hotel-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-features, .bus-features {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.package-features li, .bus-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.package-features li i, .bus-features li i {
    color: var(--primary-green);
    margin-left: 10px;
    margin-top: 3px;
}

.feature-title {
    font-weight: 700;
    display: block;
    color: var(--dark-blue);
}

.bus-image, .hotel-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.hotel-image {
    height: 250px;
}

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

.hotel-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.hotel-info i { color: var(--gold); }

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.hotel-feature {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-green));
}

.booking-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26,135,84,0.2);
}

.form-full {
    grid-column: 1 / -1;
}

/* Contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.contact-card:hover { transform: translateY(-8px); }

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 10px; }

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

.footer-links a:hover { color: var(--gold); }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary-green);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.7rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.3s;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.15);
}

.whatsapp { background: #25D366; }
.phone { background: var(--primary-green); }

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4);}
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255,255,255,0);}
    100% { transform: scale(1);}
}

@keyframes bounce {
    0%,100% { transform: translateY(0) translateX(50%);}
    50% { transform: translateY(-10px) translateX(50%);}
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; }
    .hero { padding: 130px 0 80px; min-height: 90vh; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .btn { width: 100%; max-width: 280px; }
    .booking-form { grid-template-columns: 1fr; }
    .logo-text h1 { font-size: 1.4rem; }
    .logo-icon { width: 45px; height: 45px; font-size: 1.3rem; }
    .floating-btn { width: 55px; height: 55px; font-size: 1.5rem; }
}