/* Custom Stylesheet for Hajj & Umrah Services Website */
:root {
    --primary-white: #ffffff;
    --soft-beige: #f8f5f0;
    --deep-green: #0a5c36;
    --gold-accent: #d4af37;
    --light-gold: #f4e9c9;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --light-shadow: rgba(0, 0, 0, 0.08);
    --medium-shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: var(--soft-beige);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--deep-green);
}

/* Header & Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px var(--light-shadow);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-green) !important;
}

.navbar-brand span {
    color: var(--gold-accent);
}

.nav-link {
    font-weight: 500;
    color: var(--deep-green) !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-accent) !important;
}

.btn-gold {
    background-color: var(--gold-accent);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-gold:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    color: white;
}


/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)),
        url('https://www.hotelsinmakkah.com/images/hotels/uploaded-image-1760524850315.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--deep-green);
    transform: translateY(-2px);
}

/* Section Common Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--gold-accent);
}

section {
    padding: 80px 0;
}


/* SECTION */
.bn-about-section {
    background: #ffffff;
    padding: 100px 0;
}

/* CONTENT */
.bn-about-content {
    padding-right: 30px;
}

.bn-about-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.bn-about-title {
    font-size: 40px;
    font-weight: 700;
    color: #0f3d2e;
    margin-bottom: 20px;
}

.bn-about-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* LIST */
.bn-about-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 35px;
}

.bn-about-list li {
    font-size: 15px;
    color: #333;
    margin-bottom: 10px;
}

.bn-about-list li i {
    color: #d4af37;
    margin-right: 8px;
}

/* BUTTON */
.bn-about-btn {
    display: inline-block;
    background: #0f3d2e;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.25);
}

.bn-about-btn:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

/* IMAGE */
.bn-about-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.bn-about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.bn-about-image:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .bn-about-content {
        padding-right: 0;
    }

    .bn-about-title {
        font-size: 32px;
    }
}


/* Why Choose Us */
.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 15px var(--light-shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--light-gold);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.feature-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Packages */
.package-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--light-shadow);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-header {
    background-color: var(--deep-green);
    color: white;
    padding: 20px;
    text-align: center;
}

.package-header h4 {
    color: white;
    margin: 0;
}

.package-body {
    padding: 25px;
}

.package-feature {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #eee;
}

.package-price {
    font-size: 1.8rem;
    color: var(--deep-green);
    font-weight: 700;
    margin: 20px 0;
    text-align: center;
}

/* Hajj Services */
.hajj-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.hajj-timeline:after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--light-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--light-shadow);
    position: relative;
}

.timeline-content h4 {
    color: var(--deep-green);
    margin-bottom: 10px;
}

.timeline-item:nth-child(odd) .timeline-content:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--gold-accent);
}

.timeline-item:nth-child(even) .timeline-content:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    background-color: white;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--gold-accent);
}

/* Services */
.service-box {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--light-shadow);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-box:hover {
    transform: translateY(-5px);
    border-color: var(--gold-accent);
}

.service-icon {
    font-size: 2.2rem;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

/* About */
.about-content {
    padding-right: 30px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 15px;
    height: 100%;
    border-left: 4px solid var(--gold-accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: var(--deep-green);
}

.stars {
    color: var(--gold-accent);
    margin-bottom: 10px;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(rgba(10, 92, 54, 0.9), rgba(10, 92, 54, 0.95)),
        url('https://www.hotelsinmakkah.com/images/hotels/july-umrah-packages-3-exclusive-opt-travel-guide-umrah-destination.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Contact */
.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--light-shadow);
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.contact-info-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--light-shadow);
    height: 100%;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-right: 10px;
    width: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background-color: var(--deep-green);
    color: white;
    padding: 70px 0 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--gold-accent);
}

.footer-heading {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold-accent);
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--gold-accent);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hajj-timeline:after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content:after,
    .timeline-item:nth-child(even) .timeline-content:after {
        left: -10px;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* SECTION */
.bn-package-section {
    background: #f9f9f9;
    padding: 100px 0;
}

/* HEADER */
.bn-package-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f3d2e;
}

.bn-package-divider {
    width: 70px;
    height: 3px;
    background: #d4af37;
    margin: 15px auto;
    display: block;
}

.bn-package-subtitle {
    color: #555;
    font-size: 16px;
}

/* CARD */
.bn-package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.bn-package-card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.bn-package-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.bn-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.bn-package-card:hover img {
    transform: scale(1.08);
}

/* BADGE */
.bn-package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0f3d2e;
    color: #fff;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 30px;
}

.bn-package-badge.gold {
    background: #d4af37;
    color: #000;
}

.bn-package-badge.dark {
    background: #000;
}

/* CONTENT */
.bn-package-content {
    padding: 25px;
}

.bn-package-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0f3d2e;
}

/* FEATURES */
.bn-package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.bn-package-features li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.bn-package-features i {
    color: #d4af37;
    margin-right: 8px;
}

/* FOOTER */
.bn-package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bn-package-price {
    font-size: 20px;
    font-weight: 700;
    color: #0f3d2e;
}

.bn-package-btn {
    background: #d4af37;
    color: #000;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.bn-package-btn:hover {
    background: #0f3d2e;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bn-package-title {
        font-size: 32px;
    }
}
/* SECTION */
.bn-services-section {
    background: radial-gradient(circle at top, #0f3d2e, #071a14);
    padding: 100px 0;
    color: #ffffff;
}

/* HEADER */
.bn-services-title {
    font-size: 42px;
    font-weight: 700;
}

.bn-services-divider {
    width: 70px;
    height: 3px;
    background: #d4af37;
    margin: 15px auto;
    display: block;
}

.bn-services-subtitle {
    color: #cfd8d3;
    font-size: 16px;
    max-width: 600px;
    margin: auto;
}

/* CARD */
.bn-service-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* ICON */
.bn-service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* TEXT */
.bn-service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.bn-service-text {
    font-size: 14px;
    color: #cfd8d3;
    line-height: 1.6;
}

/* HOVER */
.bn-service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 35px 80px rgba(212, 175, 55, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bn-services-title {
        font-size: 32px;
    }
}
