/* ===== COLOR THEME ===== */
:root {
    /* Gold Colors */
    --gold-primary: #D4AF37;
    --gold-secondary: #FFD700;
    --gold-light: #F5E6A4;
    --gold-lighter: #F9F0D2;
    --gold-dark: #B8860B;
    
    /* Black Colors */
    --black-primary: #000000;
    --black-secondary: #111111;
    --black-light: #222222;
    --black-lighter: #333333;
    
    /* White Colors */
    --white-primary: #FFFFFF;
    --white-secondary: #F5F5F5;
    --white-dark: #E5E5E5;
    
    /* Accent Colors */
    --accent-red: #C41E3A;
    
    /* Shadows */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black-lighter);
    background: linear-gradient(135deg, var(--white-secondary) 0%, var(--white-primary) 100%);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 0.95rem;
    min-height: 100vh;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--black-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.2rem;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 1.8rem;
    color: var(--black-primary);
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    color: var(--black-secondary);
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    color: var(--black-light);
    font-weight: 500;
}

h5 {
    font-size: 1.1rem;
    color: var(--black-light);
    font-weight: 500;
}

p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--black-lighter);
    font-weight: 400;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
    font-family: 'Poppins', sans-serif;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--white-primary) 0%, var(--white-secondary) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    color: var(--black-primary);
    font-size: 1.8rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.section-title p {
    color: var(--black-lighter);
    max-width: 700px;
    margin: 0.5rem auto 0;
    font-size: 1rem;
}

/* ===== NAVBAR ===== */
header {
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-secondary) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 2px solid var(--gold-primary);
    height: 65px;
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: 180px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(73%) sepia(94%) saturate(452%) hue-rotate(3deg) brightness(101%) contrast(101%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--white-primary);
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 0;
    height: 100%;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.nav-link:hover {
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
    border-radius: 1.5px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link i {
    font-size: 0.8rem;
}

.hamburger {
    display: none;
    font-size: 1.3rem;
    color: var(--gold-primary);
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    transition: var(--transition-normal);
    font-family: 'Poppins', sans-serif;
}

.hamburger:hover {
    transform: scale(1.1);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(17, 17, 17, 0.9)), 
                url('https://thepeacedestinations.com/storage/destinations/9urQCfTxQbg2w9vDF9nIwUvTvMkQe92pr2LytleX.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 65px;
    color: var(--white-primary);
}

.hero-content {
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    color: var(--white-primary);
    background: linear-gradient(
        to bottom,
        var(--gold-light) 0%,
        var(--gold-primary) 50%,
        var(--gold-secondary) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.hero p {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-whatsapp {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    text-align: center;
    min-width: 160px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-secondary);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    background: linear-gradient(135deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    padding: 50px 0;
    border-top: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
}

.badges-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--white-primary);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition-normal);
}

.badge:hover .badge-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.badge h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--gold-primary);
    font-weight: 600;
}

.badge p {
    font-size: 0.95rem;
    color: var(--black-lighter);
    font-weight: 400;
}

/* ===== WHY CHOOSE US - HOME ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--white-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.feature-icon {
    font-size: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--black-primary);
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    color: var(--black-lighter);
    font-weight: 400;
}

/* ===== HAJJ & UMRAH PACKAGES ===== */
.packages-section {
    background: linear-gradient(135deg, var(--white-secondary) 0%, var(--white-primary) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--white-dark);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.package-card.featured {
    border: 3px solid var(--gold-primary);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
}

.package-image {
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-header h3 {
    font-size: 1.4rem;
    color: var(--black-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.package-price {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.package-price span {
    font-size: 0.95rem;
    color: var(--black-lighter);
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--black-lighter);
    font-weight: 400;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.package-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.package-btn:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ===== SIMPLE PROCESS ===== */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--white-dark));
    z-index: 1;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
    margin-bottom: 30px;
}

.process-step .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    border: 3px solid var(--white-primary);
    transition: var(--transition-normal);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.process-step .step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--black-primary);
    font-weight: 600;
}

.process-step .step-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--black-lighter);
    font-weight: 400;
}

/* ===== HOLY SITES ===== */
.holy-sites {
    background: linear-gradient(135deg, var(--white-secondary) 0%, var(--white-primary) 100%);
}

.sites-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.site-card {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--white-dark);
}

.site-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.site-image {
    height: 250px;
    overflow: hidden;
}

.site-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.site-card:hover .site-image img {
    transform: scale(1.05);
}

.site-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.site-content h3 {
    color: var(--black-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.site-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    color: var(--black-lighter);
    font-weight: 400;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    border: 1px solid var(--white-dark);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ===== STRONG CTA ===== */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(17, 17, 17, 0.9)), 
                url('https://images.unsplash.com/photo-1567593810070-7a5c0925344e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 100px 0;
    color: var(--white-primary);
}

.cta-section h2 {
    color: var(--white-primary);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 2rem;
    font-weight: 600;
}

.cta-section p {
    color: var(--gold-light);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-whatsapp {
    flex: 1;
    min-width: 250px;
    justify-content: center;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-secondary) 100%);
    padding: 80px 0 30px;
    border-top: 3px solid var(--gold-primary);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.3rem;
    color: var(--gold-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 400;
}

.footer-links a, .footer-links span {
    color: var(--gold-light);
    text-decoration: none;
    transition: var(--transition-normal);
    font-family: 'Poppins', sans-serif;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-links i {
    color: var(--gold-primary);
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    text-decoration: none;
    transition: var(--transition-normal);
    font-size: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.map-container i {
    font-size: 48px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    font-size: 0.85rem;
}

.copyright p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
    font-weight: 400;
}

/* ===== PAGE OVERLAY ===== */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--white-secondary) 0%, var(--white-primary) 100%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding-top: 65px;
}

.page-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.close-page {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--black-primary);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 24px;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
    z-index: 10001;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-page:hover {
    background-color: var(--gold-primary);
    color: var(--black-primary);
    transform: rotate(90deg) scale(1.1);
}

/* ===== ABOUT US PAGE - SIMPLIFIED ===== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    color: var(--black-primary);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.about-header p {
    font-size: 1.2rem;
    color: var(--gold-primary);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Vision & Mission Section */
.vision-mission-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.vision-card, .mission-card {
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.vision-icon, .mission-icon {
    font-size: 64px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.vision-card h2, .mission-card h2 {
    color: var(--black-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.vision-card h2::after, .mission-card h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.vision-card p, .mission-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black-lighter);
    flex-grow: 1;
    font-weight: 400;
}

/* Accreditations Horizontal Section */
.accreditations-section {
    margin-bottom: 60px;
}

.accreditations-section h2 {
    text-align: center;
    color: var(--black-primary);
    margin-bottom: 40px;
    font-size: 1.8rem;
    font-weight: 600;
}

.accreditations-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
    border-radius: 15px;
    border: 1px solid var(--white-dark);
}

.accreditation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
    padding: 20px;
}

.accreditation-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--white-primary);
    font-size: 32px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.accreditation-item h3 {
    color: var(--black-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.accreditation-item p {
    color: var(--black-lighter);
    font-size: 0.95rem;
    margin-bottom: 0;
    font-weight: 400;
}

/* ===== VIDEO REEL SECTION ===== */
.video-reel-section {
    margin: 60px 0;
    text-align: center;
}

.video-reel-section h2 {
    color: var(--black-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.video-reel-section p {
    color: var(--black-lighter);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-container {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    padding-bottom: 25px;
}

.video-container:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-bottom: 3px solid var(--gold-primary);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-container h3 {
    color: var(--black-primary);
    margin: 20px 25px 10px;
    font-size: 1.3rem;
    font-weight: 600;
}

.video-container p {
    color: var(--black-lighter);
    margin: 0 25px;
    font-size: 0.95rem;
    font-weight: 400;
}

/* Why Choose Us Section - Simplified */
.why-choose-section {
    margin-bottom: 60px;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    color: var(--black-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.why-choose-header p {
    color: var(--black-lighter);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.features-grid-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-simple {
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.feature-simple:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.feature-simple-icon {
    font-size: 48px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-simple h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--black-primary);
    font-weight: 600;
}

.feature-simple p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black-lighter);
    font-weight: 400;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 10px;
    border: 1px solid var(--white-dark);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
}

.stat-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1rem;
    color: var(--black-lighter);
    font-weight: 400;
}

/* ===== WHATSAPP BOOKING MODAL ===== */
.whatsapp-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.95));
    z-index: 10002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.whatsapp-booking-modal.active {
    display: flex;
}

.whatsapp-booking-content {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    border-radius: 15px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    position: relative;
    border-left: 5px solid var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease-out;
}

.whatsapp-header {
    text-align: center;
    margin-bottom: 30px;
}

.whatsapp-icon {
    font-size: 64px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.whatsapp-header h3 {
    color: var(--black-primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.whatsapp-header p {
    color: var(--black-lighter);
    font-size: 1rem;
    font-weight: 400;
}

.whatsapp-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--white-primary);
    border: 2px solid var(--white-dark);
    border-radius: 8px;
    color: var(--black-primary);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-cancel {
    flex: 1;
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--white-dark);
    padding: 12px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-cancel:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
}

.btn-submit-whatsapp {
    flex: 2;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.btn-submit-whatsapp:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.booking-service-info {
    background-color: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid var(--gold-primary);
}

.booking-service-info p {
    margin-bottom: 10px;
    color: var(--black-primary);
    font-size: 0.95rem;
    font-weight: 400;
}

.booking-service-info p:last-child {
    margin-bottom: 0;
}

/* ===== INTERNATIONAL TOURS PAGE ===== */
.international-tours-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
}

.international-tours-header {
    text-align: center;
    margin-bottom: 50px;
}

.international-tours-header h1 {
    color: var(--black-primary);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.international-tours-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.tour-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.category-btn {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    color: var(--black-lighter);
    border: 2px solid var(--white-dark);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.category-btn:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border-color: var(--gold-primary);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.tour-card {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--white-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.tour-image {
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.tour-header h3 {
    color: var(--black-primary);
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.tour-price {
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.tour-details {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.tour-details li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--black-lighter);
    font-weight: 400;
}

.tour-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.tour-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.tour-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.tour-btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
}

.tour-btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.tour-btn-secondary {
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--white-dark);
}

.tour-btn-secondary:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* ===== BOOK A FLIGHT PAGE ===== */
.book-flight-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.book-flight-header {
    text-align: center;
    margin-bottom: 50px;
}

.book-flight-header h1 {
    color: var(--black-primary);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.book-flight-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.flight-search-form {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 60px;
    border-left: 5px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--white-dark);
}

.flight-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.flight-form-header h2 {
    color: var(--black-primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.flight-form-header p {
    color: var(--black-lighter);
    font-size: 1.05rem;
    font-weight: 400;
}

.flight-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 25px;
}

.flight-form-group {
    margin-bottom: 20px;
}

.flight-form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.flight-form-group i {
    color: var(--gold-primary);
}

.flight-form-group input,
.flight-form-group select {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--white-primary);
    border: 2px solid var(--white-dark);
    border-radius: 10px;
    color: var(--black-primary);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    font-family: 'Poppins', sans-serif;
}

.flight-form-group input:focus,
.flight-form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.flight-search-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-search {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.btn-search:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-reset-flight {
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--white-dark);
    padding: 18px 40px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.btn-reset-flight:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.flight-results-section {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--white-dark);
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
}

.results-header h2 {
    color: var(--black-primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.flight-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.flight-card {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    border-radius: 12px;
    padding: 25px;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--white-dark);
}

.flight-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.flight-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--white-dark);
}

.flight-airline {
    display: flex;
    align-items: center;
    gap: 15px;
}

.flight-airline-icon {
    font-size: 32px;
    color: var(--gold-primary);
}

.flight-airline h3 {
    color: var(--black-primary);
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.flight-price {
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.flight-details {
    margin-bottom: 20px;
}

.flight-route {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.flight-city {
    text-align: center;
}

.flight-city h4 {
    color: var(--black-primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.flight-city p {
    color: var(--black-lighter);
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 400;
}

.flight-stops {
    text-align: center;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.flight-timing {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.flight-time {
    text-align: center;
}

.flight-time p {
    color: var(--black-lighter);
    margin-bottom: 5px;
    font-size: 0.95rem;
    font-weight: 400;
}

.flight-time span {
    color: var(--black-primary);
    font-weight: 500;
    font-size: 1.1rem;
}

.flight-duration {
    text-align: center;
    color: var(--gold-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.flight-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--white-dark);
    flex-wrap: wrap;
    gap: 15px;
}

.flight-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.flight-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--black-lighter);
    font-size: 0.9rem;
    font-weight: 400;
}

.flight-feature i {
    color: var(--gold-primary);
}

.flight-book-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.flight-book-btn:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.flight-notice {
    background-color: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    border-left: 4px solid var(--gold-primary);
}

.flight-notice p {
    color: var(--black-primary);
    margin-bottom: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

/* ===== GALLERY PAGE ===== */
.gallery-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 0;
}

.gallery-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-page-header h1 {
    color: var(--black-primary);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.gallery-page-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: linear-gradient(145deg, var(--white-primary) 0%, var(--white-secondary) 100%);
    color: var(--black-lighter);
    border: 2px solid var(--white-dark);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border-color: var(--gold-primary);
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-page-item {
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    position: relative;
    cursor: pointer;
    background-color: var(--white-dark);
    transition: var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--white-dark);
}

.gallery-page-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-page-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    transform: translateY(0);
    transition: transform 0.3s ease;
    opacity: 1;
}

.gallery-page-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p {
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1.4;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-item-gallery {
    text-align: center;
    padding: 30px;
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 10px;
    border: 1px solid var(--white-dark);
    transition: var(--transition-normal);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-item-gallery:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.stat-number-gallery {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-text-gallery {
    font-size: 1rem;
    color: var(--black-lighter);
    font-weight: 400;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(17, 17, 17, 0.98));
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: var(--gold-primary);
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--black-primary);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.lightbox-close:hover {
    background: var(--gold-primary);
    color: var(--black-primary);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.lightbox-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white-primary);
    border: 2px solid rgba(212, 175, 55, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
}

.lightbox-btn:hover {
    background-color: var(--gold-primary);
    color: var(--black-primary);
    border-color: var(--gold-primary);
}

/* ===== CONTACT PAGE ===== */
.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.contact-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page-header h1 {
    color: var(--black-primary);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-page-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--white-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.contact-icon {
    font-size: 56px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    color: var(--black-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--black-lighter);
    margin-bottom: 20px;
    font-size: 1rem;
    flex-grow: 1;
    font-weight: 400;
}

.contact-action-btn {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.call-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
}

.call-btn:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.email-btn {
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--white-dark);
}

.email-btn:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

/* Message Form */
.message-form-section {
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--white-dark);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: var(--black-primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-header p {
    color: var(--black-lighter);
    font-size: 1.05rem;
    font-weight: 400;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-group i {
    color: var(--gold-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--white-primary);
    border: 2px solid var(--white-dark);
    border-radius: 10px;
    color: var(--black-primary);
    font-size: 0.95rem;
    transition: var(--transition-normal);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.form-actions .btn-reset,
.form-actions .btn-submit {
    flex: 1;
    min-width: 200px;
    padding: 15px 30px;
    justify-content: center;
}

.form-actions .btn-reset {
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--white-dark);
}

.form-actions .btn-reset:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
}

.form-actions .btn-submit {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border: none;
}

.form-actions .btn-submit:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.form-note {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(212, 175, 55, 0.08);
    border-radius: 10px;
    border-left: 4px solid var(--gold-primary);
}

.form-note p {
    color: var(--black-primary);
    margin-bottom: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

/* Business Hours */
.business-hours {
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 15px;
    padding: 50px;
    text-align: center;
    border-left: 5px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--white-dark);
}

.business-hours h2 {
    color: var(--black-primary);
    margin-bottom: 40px;
    font-size: 1.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.business-hours h2 i {
    color: var(--gold-primary);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hour-item {
    background-color: rgba(212, 175, 55, 0.08);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--white-dark);
    transition: var(--transition-normal);
}

.hour-item:hover {
    background-color: rgba(212, 175, 55, 0.12);
    transform: translateY(-3px);
}

.hour-item .day {
    color: var(--gold-primary);
    font-weight: 500;
    font-size: 1.05rem;
}

.hour-item .time {
    color: var(--black-primary);
    font-size: 1rem;
    font-weight: 400;
}

/* ===== HAJJ PACKAGES PAGE ===== */
.hajj-packages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.hajj-packages-header {
    text-align: center;
    margin-bottom: 50px;
}

.hajj-packages-header h1 {
    color: var(--black-primary);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.hajj-packages-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.hajj-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.hajj-package-card {
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid var(--white-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hajj-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
}

.hajj-package-card.featured {
    border: 3px solid var(--gold-primary);
}

.hajj-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
}

.hajj-package-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--white-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hajj-package-icon {
    font-size: 80px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hajj-package-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hajj-package-header h3 {
    font-size: 1.4rem;
    color: var(--black-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.hajj-package-price {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.hajj-package-price span {
    font-size: 0.95rem;
    color: var(--black-lighter);
}

.hajj-package-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.hajj-package-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--black-lighter);
    font-weight: 400;
}

.hajj-package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
}

.hajj-package-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.hajj-package-btn:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ===== UMRAH PACKAGE BUILDER PAGE ===== */
.umrah-builder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

.umrah-builder-header {
    text-align: center;
    margin-bottom: 50px;
}

.umrah-builder-header h1 {
    color: var(--black-primary);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.umrah-builder-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.builder-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 50px 0;
    position: relative;
}

.builder-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--white-dark), rgba(212, 175, 55, 0.1));
    z-index: 1;
}

.builder-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
    margin-bottom: 30px;
}

.builder-step.active .step-number {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.builder-step.completed .step-number {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--black-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 15px;
    transition: var(--transition-normal);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--black-primary);
    font-weight: 600;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--black-lighter);
    font-weight: 400;
}

/* Builder Form Sections */
.builder-section {
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 35px;
    border-left: 5px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--white-dark);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 {
    color: var(--black-primary);
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.section-price {
    font-size: 1.4rem;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.option-card {
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 10px;
    padding: 25px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid var(--white-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.option-card.selected {
    border-color: var(--gold-primary);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), rgba(255, 215, 0, 0.05));
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.option-title h3 {
    font-size: 1.2rem;
    color: var(--black-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.option-price {
    font-size: 1.1rem;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.option-details {
    list-style: none;
    margin-top: 15px;
    flex-grow: 1;
}

.option-details li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: var(--black-lighter);
    font-weight: 400;
}

.option-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.option-select-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.95rem;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.option-select-btn:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
}

.option-select-btn.selected {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(145deg, var(--white-primary), var(--white-secondary));
    border-radius: 15px;
    padding: 35px;
    margin-top: 50px;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.summary-header {
    text-align: center;
    margin-bottom: 30px;
}

.summary-header h2 {
    color: var(--black-primary);
    font-size: 1.8rem;
    font-weight: 600;
}

.summary-details {
    background-color: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    padding: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    align-items: center;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.summary-label {
    color: var(--black-lighter);
    font-size: 1rem;
    font-weight: 400;
}

.summary-value {
    color: var(--black-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: right;
}

.total-price {
    font-size: 2rem !important;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text !important;
    font-weight: 600 !important;
}

.builder-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-reset {
    background-color: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--white-dark);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.95rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-reset:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-submit {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white-primary);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
    font-size: 0.95rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid var(--white-primary);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 12px;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .nav-link i {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    body {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    header {
        height: 60px;
    }
    
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }
    
    .logo-img {
        height: 55px;
        width: 160px;
    }
    
    .hamburger {
        display: block;
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--black-primary) 0%, var(--black-secondary) 100%);
        width: 100%;
        height: calc(100vh - 60px);
        text-align: left;
        padding: 20px;
        transition: 0.4s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        overflow-y: auto;
        gap: 0;
        border-top: 2px solid var(--gold-primary);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    .nav-link {
        padding: 12px 0;
        height: auto;
        font-size: 0.9rem;
        color: var(--white-primary);
        width: 100%;
        gap: 8px;
        font-weight: 500;
    }
    
    .nav-link i {
        font-size: 0.9rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero {
        padding-top: 60px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn-primary,
    .hero-btns .btn-secondary,
    .hero-btns .btn-whatsapp {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
    }
    
    .page-overlay {
        padding-top: 60px;
    }
    
    .process-steps::before,
    .builder-steps::before {
        display: none;
    }
    
    .process-step,
    .builder-step {
        min-width: 100%;
        margin-bottom: 30px;
    }
    
    .process-step .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .builder-step .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .badges-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .badge {
        max-width: 250px;
    }
    
    .badge h3 {
        font-size: 1.5rem;
    }
    
    .badge p {
        font-size: 0.9rem;
    }
    
    .features-grid,
    .packages-grid,
    .sites-container,
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .package-card,
    .site-card,
    .tour-card {
        padding: 20px;
    }
    
    .feature-card h3,
    .package-header h3,
    .site-content h3,
    .tour-header h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p,
    .package-features li,
    .site-content p,
    .tour-details li {
        font-size: 0.9rem;
    }
    
    .vision-mission-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-card,
    .mission-card {
        padding: 30px;
    }
    
    .vision-card h2,
    .mission-card h2 {
        font-size: 1.5rem;
    }
    
    .vision-card p,
    .mission-card p {
        font-size: 0.95rem;
    }
    
    .accreditations-horizontal {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .accreditation-item {
        min-width: 100%;
        padding: 15px;
    }
    
    .features-grid-simple {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-simple {
        padding: 25px;
    }
    
    .feature-simple h3 {
        font-size: 1.2rem;
    }
    
    .feature-simple p {
        font-size: 0.95rem;
    }
    
    .stats-section,
    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item,
    .stat-item-gallery {
        padding: 20px;
    }
    
    .stat-number,
    .stat-number-gallery {
        font-size: 2rem;
    }
    
    .stat-text,
    .stat-text-gallery {
        font-size: 0.9rem;
    }
    
    .tour-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .tour-btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .flight-search-form,
    .flight-results-section,
    .message-form-section,
    .business-hours {
        padding: 30px;
    }
    
    .flight-form-row {
        grid-template-columns: 1fr;
    }
    
    .flight-results-grid {
        grid-template-columns: 1fr;
    }
    
    .flight-card {
        padding: 20px;
    }
    
    .flight-card-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .flight-card-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .flight-features {
        justify-content: center;
    }
    
    .flight-book-btn {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .gallery-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-page-item {
        height: 300px;
    }
    
    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-info-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-info-card p {
        font-size: 0.95rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-actions .btn-reset,
    .form-actions .btn-submit {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .hour-item {
        padding: 20px;
    }
    
    .hajj-packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hajj-package-card {
        padding: 20px;
    }
    
    .hajj-package-header h3 {
        font-size: 1.2rem;
    }
    
    .hajj-package-features li {
        font-size: 0.9rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .option-card {
        padding: 20px;
    }
    
    .option-title h3 {
        font-size: 1.1rem;
    }
    
    .option-details li {
        font-size: 0.9rem;
    }
    
    .builder-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .builder-actions .btn-reset,
    .builder-actions .btn-submit {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-whatsapp {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .flight-search-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .flight-search-actions .btn-search,
    .flight-search-actions .btn-reset-flight {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .whatsapp-booking-content {
        padding: 30px 20px;
    }
    
    .whatsapp-form .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .whatsapp-form .btn-cancel,
    .whatsapp-form .btn-submit-whatsapp {
        width: 100%;
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
    }
    
    .footer-links li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    body {
        font-size: 0.85rem;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 50px;
        width: 140px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.3rem;
    }
    
    .btn-primary, .btn-secondary, .btn-whatsapp,
    .tour-btn, .flight-book-btn, .package-btn,
    .hajj-package-btn, .contact-action-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: auto;
    }
    
    .stats-section,
    .gallery-stats {
        grid-template-columns: 1fr;
    }
    
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-page-item {
        height: 250px;
    }
    
    .whatsapp-booking-content {
        padding: 20px 15px;
    }
}

@media (max-width: 360px) {
    .stats-section,
    .gallery-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold-primary);
}

.text-black {
    color: var(--black-primary);
}

.bg-gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.bg-black {
    background: linear-gradient(135deg, var(--black-primary), var(--black-secondary));
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

/* ===== LOADING STATE ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--white-primary);
    border-top: 2px solid var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--white-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold-primary), var(--gold-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--gold-secondary), var(--gold-primary));
}