/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    padding: 1rem 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: #87CEEB;
    transform: rotate(-45deg);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.logo:hover i {
    transform: rotate(-45deg) translateX(5px);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    display: block;
}

.nav-link:hover {
    color: #87CEEB;
    transform: translateY(-2px);
}

/* Packages Header Styles */
.packages-header {
    background: linear-gradient(rgba(9, 11, 35, 0.6), rgba(0, 100, 232, 0.6)),
                url('../assets/images/packages-header.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 70px;
}

.packages-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.packages-header p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Hajj & Umrah Section Styles */
.hajj-umrah-section {
    padding: 4rem 2rem;
    background: linear-gradient(to right, rgba(245, 247, 250, 0.9), rgba(245, 247, 250, 0.9)),
                url('../assets/images/islamic-pattern.jpg');
    background-size: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.hajj-umrah-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hajj-umrah-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hajj-umrah-info h2 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.package-type {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.package-type h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-type h3 i {
    color: #87CEEB;
}

.package-type ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-type ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-type ul li i {
    color: #4CAF50;
}

.important-note {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.important-note p {
    color: #e65100;
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-note ul li {
    margin-bottom: 0.5rem;
    color: #795548;
    padding-left: 20px;
    position: relative;
}

.important-note ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e65100;
}

/* Packages Grid Styles */
.packages-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-content {
    padding: 1.5rem;
}

.package-content h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.duration {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features {
    margin-bottom: 1rem;
}

.package-features p {
    margin-bottom: 0.5rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-features i {
    color: #1e3c72;
}

.price {
    font-size: 1.25rem;
    color: #1e3c72;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.btn-book {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #1e3c72;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #2a5298;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    color: #1e3c72;
    padding: 4rem 2rem 2rem 2rem;
    margin-top: 4rem;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #1e3c72, #87CEEB);
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a4a4a;
}

.footer-section i {
    color: #1e3c72;
    font-size: 1.2rem;
    background: #e4e9f2;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #1e3c72;
    background: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.social-link:hover {
    background: #1e3c72;
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 5px 15px rgba(30,60,114,0.3);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(30,60,114,0.1);
    color: #4a4a4a;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: white;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background: linear-gradient(to bottom, #1e3c72, #2a5298);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .packages-header h1 {
        font-size: 2rem;
    }

    .packages-header p {
        font-size: 1rem;
    }

    .hajj-umrah-content {
        grid-template-columns: 1fr;
    }

    .hajj-umrah-info h2 {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
} 