@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f8f9fc;
    line-height: 1.8;
}

/* ============ Navbar ============ */
.navbar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: white !important;
    transition: transform 0.3s;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 600;
    margin: 0 10px;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #ffd700;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* ============ Hero Section ============ */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920') center/cover;
    opacity: 0.1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: 800;
    font-size: 3.5rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    animation: fadeInDown 1s;
}

.hero-section .lead {
    font-size: 1.4rem;
    font-weight: 400;
    animation: fadeInUp 1s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============ Buttons ============ */
.btn-custom {
    padding: 15px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border: none;
}

.btn-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
}

/* ============ Service Cards ============ */
.service-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    overflow: hidden;
    background: white;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.service-card .card-body {
    padding: 2.5rem;
}

.service-card i {
    transition: all 0.3s;
}

.service-card:hover i {
    transform: scale(1.2) rotate(5deg);
}

.service-card h4 {
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.service-card .card-text {
    color: #6c757d;
    font-size: 1rem;
}

.service-card ul {
    text-align: right;
    padding-right: 1.5rem;
}

.service-card ul li {
    margin-bottom: 0.8rem;
    color: #495057;
}

/* ============ About Section ============ */
.about-image {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.about-image:hover {
    transform: scale(1.05);
}

/* ============ Packages Section ============ */
.package-card {
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
}

.package-card .card-header {
    border-radius: 15px 15px 0 0 !important;
    padding: 1.5rem;
    font-weight: 700;
}

.package-card .card-body h3 {
    font-weight: 800;
    font-size: 2rem;
}

/* ============ Booking Container ============ */
.booking-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* ============ Step Indicator ============ */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e9ecef;
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step i {
    background: white;
    color: #ced4da;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    display: inline-block;
    border: 3px solid #e9ecef;
    transition: all 0.3s;
}

.step.active i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: scale(1.1);
}

.step.completed i {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.step p {
    margin-top: 15px;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.9rem;
}

.step.active p {
    color: #667eea;
    font-weight: 700;
}

/* ============ Form Styling ============ */
.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 20px;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.form-control-lg {
    padding: 15px 25px;
    font-size: 1.1rem;
}

/* ============ Radio/Checkbox Cards ============ */
.btn-check:checked + label {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-color: #667eea !important;
    transform: scale(1.05);
}

/* ============ Address Cards ============ */
.address-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.address-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============ FAQ Accordion ============ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.accordion-button {
    background: white;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border-radius: 12px !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    color: #6c757d;
}

/* ============ Footer ============ */
.footer-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0 30px 0;
    margin-top: 80px;
}

.footer-section h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(-5px);
}

.footer-section .fab, .footer-section .fas {
    transition: all 0.3s;
}

.footer-section a:hover .fab,
.footer-section a:hover .fas {
    transform: scale(1.2);
}

.footer-section hr {
    opacity: 0.3;
}

/* ============ Alerts ============ */
.alert {
    border-radius: 12px;
    border: none;
    padding: 1.2rem;
    font-weight: 600;
}

.alert-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.alert-danger {
    background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
    color: white;
}

.alert-warning {
    background: linear-gradient(135deg, #f2994a 0%, #f2c94c 100%);
    color: white;
}

.alert-info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .booking-container {
        padding: 25px;
    }
    
    .step-indicator {
        flex-wrap: wrap;
    }
    
    .step {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .step-indicator::before {
        display: none;
    }
}

/* ============ Animations ============ */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.btn-custom:hover {
    animation: pulse 0.5s;
}

/* ============ Verification Inputs ============ */
.verification-input {
    width: 60px;
    height: 70px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    border: 3px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s;
}

.verification-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: scale(1.1);
}