Premium Luxury Travel Agency Theme
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

:root {
    /* Premium Color Palette */
    --primary-gold: #D4AF37;
    --secondary-gold: #F4E4BC;
    --accent-gold: #FFD700;
    --deep-emerald: #0F4C3A;
    --forest-green: #1B5E20;
    --sage-green: #8FBC8F;
    --platinum: #E5E4E2;
    --charcoal: #36454F;
    --ivory: #FFFFF0;
    --cream: #F5F5DC;
    --pure-white: #FFFFFF;
    --shadow-black: rgba(0, 0, 0, 0.1);
    --shadow-gold: rgba(212, 175, 55, 0.2);
    
    /* Premium Gradients */
    --gradient-luxury: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #FFD700 100%);
    --gradient-emerald: linear-gradient(135deg, #0F4C3A 0%, #1B5E20 50%, #8FBC8F 100%);
    --gradient-hero: linear-gradient(135deg, #0F4C3A 0%, #1B5E20 30%, #8FBC8F 70%, #D4AF37 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(15, 76, 58, 0.9) 0%, rgba(27, 94, 32, 0.8) 100%);
    
    /* Premium Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 16px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.3);
    --shadow-emerald: 0 8px 30px rgba(15, 76, 58, 0.3);
    
    /* Premium Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-elegant: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 40px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--pure-white);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Fluid media defaults to prevent overflow on small screens */
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scroll and improve mobile layout */
* {
    box-sizing: border-box;
}

body, html {
    overflow-x: hidden;
    width: 100%;
}

/* Improve touch targets and accessibility */
button, .btn, .nav-link, .cta-button {
    min-height: 44px;
    cursor: pointer;
}

/* Better focus states for accessibility */
button:focus, .btn:focus, .nav-link:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Better table responsiveness */
table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }
    
    /* Stack table columns on very small screens */
    .responsive-table {
        display: block;
    }
    
    .responsive-table thead {
        display: none;
    }
    
    .responsive-table tbody, .responsive-table tr, .responsive-table td {
        display: block;
        width: 100%;
    }
    
    .responsive-table tr {
        border: 1px solid rgba(212, 175, 55, 0.2);
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 8px;
    }
    
    .responsive-table td {
        border: none;
        padding: 8px 0;
        text-align: left !important;
    }
    
    .responsive-table td:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--deep-emerald);
        display: inline-block;
        width: 120px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Premium Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    left: 0;
    right: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    padding-right: 80px; /* Extra space for Book Now button */
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    min-height: 75px;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
    margin-right: 60px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 100px;
    width: auto;
    display: block;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--deep-emerald);
    text-transform: uppercase;
}

.logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary-gold);
    font-weight: 600;
}

.logo:hover .logo-image {
    transform: scale(1.04);
    filter: drop-shadow(0 10px 18px rgba(212, 175, 55, 0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 16px; /* Much tighter gap for better spacing */
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 14px; /* Smaller font for better fit */
    padding: 8px 16px; /* Further reduced padding */
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.03em;
    white-space: nowrap; /* Prevent text wrapping */
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-luxury);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep-emerald);
    transform: translateY(-2px);
}

.cta-button {
    background: var(--gradient-luxury);
    color: var(--pure-white);
    border: none;
    padding: 12px 24px; /* Smaller padding */
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px; /* Smaller font */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 12px; /* Reduced margin */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--shadow-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--deep-emerald);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Premium Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Specific Umrah Hero Styles */
.umrah-hero .hero-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #0F4C3A !important; /* Fallback color */
    background-image: 
        linear-gradient(135deg, rgba(15, 76, 58, 0.85) 0%, rgba(27, 94, 32, 0.75) 50%, rgba(143, 188, 143, 0.7) 100%),
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?auto=format&fit=crop&w=2070&q=80') !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    z-index: 1 !important;
    display: block !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: #0F4C3A; /* Fallback color */
    background-image: 
        linear-gradient(135deg, rgba(15, 76, 58, 0.85) 0%, rgba(27, 94, 32, 0.75) 50%, rgba(143, 188, 143, 0.7) 100%),
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(15, 76, 58, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: heroPattern 20s ease-in-out infinite;
}


@keyframes heroPattern {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 80px);
    padding-top: 100px;
}

.hero-content {
    color: var(--pure-white);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, #F4E4BC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 50%, #9A7B0F 100%);
    color: var(--pure-white);
    box-shadow: 
        0 10px 30px rgba(212, 175, 55, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #E6C547 0%, #D4AF37 50%, #B8941F 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--pure-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

/* Premium Visual Elements */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.kaaba-illustration {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kaaba-structure {
    width: 160px;
    height: 160px;
    background: var(--gradient-luxury);
    border-radius: 12px;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: kaabaFloat 8s ease-in-out infinite;
}

.kaaba-structure::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 190px;
    height: 30px;
    background: var(--gradient-luxury);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.kaaba-structure::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

@keyframes kaabaFloat {
    0%, 100% { 
        transform: translateY(0px) rotateY(0deg); 
    }
    50% { 
        transform: translateY(-30px) rotateY(5deg); 
    }
}

.holy-scripture {
    margin-top: 40px;
    font-family: var(--font-elegant);
    font-size: 1.6rem;
    color: var(--pure-white);
    text-align: center;
    opacity: 0.9;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Premium Sections */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    padding: 0 20px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--deep-emerald);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    position: relative;
    line-height: 1.2;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-luxury);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* Premium Service Cards */
.service-categories {
    background: var(--ivory);
    padding: 60px 0 120px 0; /* Reduced top padding from 120px to 60px */
}

.service-categories .section-header {
    text-align: left;
    margin: 0 auto 50px auto;
    max-width: 1200px;
    margin-top: 0; /* Remove top margin to reduce spacing */
}

.service-categories .section-header h2::after {
    left: 0;
    transform: none;
}

.service-categories .section-header p {
    margin-left: 0;
}

.services-grid {
    margin-top: 60px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
}

/* Desktop: Slider container acts as grid */
.services-slider-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-slider-wrapper {
    display: contents; /* Makes wrapper transparent, children become grid items */
}

/* Second row: 3 cards - occupy columns 1, 2, and 3 */
.services-slider-wrapper .service-card:nth-child(4) {
    grid-column: 1;
}

.services-slider-wrapper .service-card:nth-child(5) {
    grid-column: 2;
}

.services-slider-wrapper .service-card:nth-child(6) {
    grid-column: 3;
}

/* Responsive: For smaller screens, stack all cards */
@media (max-width: 1199px) {
    .services-slider-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .services-slider-wrapper .service-card:nth-child(4),
    .services-slider-wrapper .service-card:nth-child(5),
    .services-slider-wrapper .service-card:nth-child(6) {
        grid-column: auto;
    }
}

.service-card {
    background: var(--pure-white);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-luxury);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-luxury);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--pure-white);
    font-size: 2.5rem;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-emerald);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.service-card p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 300;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
}

.service-features span {
    background: rgba(212, 175, 55, 0.1);
    color: var(--deep-emerald);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Study Consultation - Vertical layout for features */
.study-features {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.study-features span {
    width: 100%;
    text-align: center;
    display: block;
}

/* Services Slider - Mobile Only */
/* Desktop styles are above, mobile overrides below in media query */

/* Services Slider Navigation Dots */
.services-slider-dots {
    display: none; /* Hidden on desktop */
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 0 20px;
}

.service-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.service-dot.active {
    background: var(--deep-emerald);
    transform: scale(1.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.service-dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

/* Premium Package Cards */
.packages-grid, .destinations-grid, .visa-types-grid, .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Enhanced Section Styling */
.umrah-section, .explore-world, .why-choose-us {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.umrah-section::before, .explore-world::before, .why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(15, 76, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.umrah-content, .explore-content, .why-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.umrah-text, .explore-text, .why-text {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 30px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.umrah-text::before, .explore-text::before, .why-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--deep-emerald), var(--primary-gold));
}

.umrah-text h2, .explore-text h2, .why-text h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-emerald);
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.umrah-text h2::after, .explore-text h2::after, .why-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-luxury);
    border-radius: 2px;
}

.umrah-text p, .explore-text p, .why-text p {
    font-size: 1.2rem;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.umrah-features {
    list-style: none;
    margin: 30px 0 40px 0;
    padding: 0;
}

.umrah-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    padding: 16px 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: var(--charcoal);
    font-weight: 400;
}

.umrah-features li:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.umrah-features i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.package-card, .destination-card, .visa-type-card, .program-card {
    background: var(--pure-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.package-card::before, .destination-card::before, .visa-type-card::before, .program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-luxury);
}

.package-card:hover, .destination-card:hover, .visa-type-card:hover, .program-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
}

.package-card.featured {
    border: 2px solid var(--primary-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--gradient-luxury);
    color: var(--pure-white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.03em;
}

.package-price, .destination-price, .visa-price {
    display: flex;
    align-items: baseline;
    margin: 30px 0;
    gap: 8px;
}

.currency, .price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-emerald);
    letter-spacing: 0.02em;
}

.period {
    color: var(--charcoal);
    font-size: 1rem;
    font-weight: 300;
}

.package-features ul, .destination-features, .visa-features ul {
    list-style: none;
    margin: 30px 0;
}

.package-features li, .visa-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: var(--charcoal);
    font-weight: 300;
}

.package-features i, .visa-features i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.btn-outline {
    background: transparent;
    color: var(--deep-emerald);
    border: 2px solid var(--deep-emerald);
    width: 100%;
    justify-content: center;
    margin-top: 30px;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--deep-emerald);
    color: var(--pure-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-emerald);
}

/* Premium Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: var(--pure-white);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-luxury);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: var(--shadow-gold);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px var(--shadow-gold));
}

.step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-emerald);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.step p {
    color: var(--charcoal);
    line-height: 1.6;
    font-weight: 300;
}

/* Premium Contact Section */
.contact-form-section {
    background: #fdfdfd;
    padding: 40px 0 24px 0;
}

.contact-section {
    background: var(--ivory);
    padding: 20px 0 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 24px;
    background: var(--pure-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.contact-method i {
    color: var(--primary-gold);
    font-size: 1.4rem;
    width: 24px;
}

.contact-method a {
    color: var(--deep-emerald);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.contact-method a:hover {
    color: #25D366;
}

/* Premium Forms */
.contact-form, .inquiry-form {
    background: var(--pure-white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.inquiry-form {
    padding-bottom: 80px; /* Extra padding below submit button */
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--deep-emerald);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.02em;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--ivory);
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: var(--pure-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Premium Footer */
.footer {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 50%, #F8F9FA 100%);
    color: var(--charcoal);
    padding: 30px 0 20px;
    position: relative;
    border-top: 3px solid var(--primary-gold);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-luxury);
}

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

.footer-section h3, .footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--deep-emerald);
    letter-spacing: 0.02em;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-section ul li {
    margin: 6px 0;
}

.footer-section ul li a {
    color: var(--charcoal);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--deep-emerald);
    transform: translateX(4px);
}

.footer-section ul li i {
    color: var(--deep-emerald);
    margin-right: 12px;
    width: 20px;
}

/* Footer Logo Styling */
.footer .logo {
    align-items: center;
    text-decoration: none;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.footer .logo:hover {
    transform: translateY(-2px);
}

.footer .logo-image {
    height: 110px;
}

.footer .logo-title {
    color: var(--deep-emerald);
    letter-spacing: 0.25em;
}

.footer .logo-tagline {
    color: var(--primary-gold);
    letter-spacing: 0.4em;
}

/* Footer Contact Details Styling */
.footer .contact-details {
    margin-top: 15px;
}

.footer .contact-details p {
    color: var(--charcoal);
    margin: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .contact-details p i {
    color: var(--deep-emerald);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer .contact-details p a {
    color: var(--deep-emerald);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer .contact-details p a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.footer .footer-section p {
    color: var(--charcoal);
    font-weight: 400;
    line-height: 1.7;
}

.contact-features-section {
    background: #f8f9fb;
    padding: 38px 0;
}

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

.feature-item {
    background: var(--pure-white);
    padding: 22px 18px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.feature-item i {
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--deep-emerald);
    margin-bottom: 8px;
}

.feature-item p {
    color: #6c757d;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .contact-features {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .feature-item {
        padding: 18px 12px;
        border-radius: 14px;
    }
    
    .feature-item i {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .feature-item h4 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
}

.footer-bottom {
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding-top: 15px;
    text-align: center;
    color: var(--charcoal);
    font-weight: 400;
    opacity: 0.9;
}

/* Premium WhatsApp Integration */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
}

.whatsapp-float .whatsapp-button {
    background: #25D366;
    color: white;
    padding: 20px 24px;
    border-radius: 60px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 3s ease-in-out infinite;
    font-size: 16px;
    letter-spacing: 0.03em;
}

.whatsapp-float .whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
}

/* Premium Testimonials */
.testimonials {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonials h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--deep-emerald);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 0.02em;
}

.testimonial {
    background: var(--ivory);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 24px;
    border-left: 6px solid var(--primary-gold);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-soft);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--primary-gold);
    opacity: 0.3;
}

.testimonial p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
    font-weight: 300;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--deep-emerald);
    font-size: 1rem;
}

/* Premium FAQ Styles */
.faq-section {
    background: var(--ivory);
    padding: 32px 0 12px 0;
}

.faq-section h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--deep-emerald);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.02em;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pure-white);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--ivory);
}

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--deep-emerald);
    letter-spacing: 0.02em;
}

.faq-answer {
    padding: 0 30px 0;
    color: var(--charcoal);
    line-height: 1.7;
    font-weight: 300;
    font-size: 1.05rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 30px 30px;
    opacity: 1;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Premium Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 24px;
    background: var(--pure-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.4rem;
    width: 24px;
}

.contact-item span {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1.05rem;
}

/* Enhanced Responsive Design */
@media (max-width: 1440px) {
    .nav-container {
        padding-right: 70px; /* For 1440px screens */
    }
    
    .logo {
        margin-right: 50px; /* Reduced gap for 1440px */
    }
    
    .nav-menu {
        gap: 14px; /* Tighter spacing for 1440px */
    }
    
    .nav-link {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .cta-button {
        padding: 11px 22px;
        font-size: 13px;
        margin-left: 10px;
    }
}

@media (max-width: 1280px) {
    .nav-container {
        padding-right: 60px; /* Reduced for 1280px screens */
    }
    
    .logo {
        margin-right: 40px; /* Reduced gap for 1280px */
    }
    
    .nav-menu {
        gap: 12px; /* Much tighter spacing for 1280px */
    }
    
    .nav-link {
        font-size: 13px;
        padding: 5px 10px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
        margin-left: 8px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 18px 30px;
        padding-right: 50px; /* Extra padding to avoid scrollbar overlap */
    }
    
    .hero-container {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .nav-menu {
        gap: 10px; /* Much tighter for tablets */
    }
    
    .nav-link {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1000px;
        margin: 60px auto 0;
    }
    
    .cta-button {
        margin-left: 8px;
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Fix form spacing on tablets */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 20px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Improve button touch targets */
    .btn, .cta-button {
        min-height: 48px;
        padding: 14px 28px;
    }
}

@media (max-width: 992px) {
    .nav-container {
        padding-right: 50px; /* Extra padding to avoid scrollbar overlap */
    }
    
    .logo {
        margin-right: 20px; /* Reduced gap for medium screens */
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
        margin: 60px auto 0;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .nav-menu {
        gap: 8px; /* Very tight for medium screens */
    }
    
    .nav-link {
        font-size: 11px;
        padding: 4px 6px;
    }
    
    .cta-button {
        margin-left: 4px;
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    /* Hide footer content sections, keep only footer-bottom (copyright and social icons) */
    .footer-content {
        display: none !important;
    }
    
    .footer {
        padding: 20px 0 !important;
    }
    
    .footer-bottom {
        padding-top: 0 !important;
        border-top: none !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 999;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
        display: block;
        text-align: center;
        width: 100%;
        max-width: 200px;
        min-height: 48px; /* Touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cta-button {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .logo {
        display: inline-flex !important;
        visibility: visible !important;
    }
    
    .logo-text {
        display: flex !important;
        visibility: visible !important;
    }
    
    .logo-title {
        display: block !important;
        visibility: visible !important;
        font-size: 0.7rem !important;
    }
    
    .logo-tagline {
        display: block !important;
        visibility: visible !important;
        font-size: 0.5rem !important;
    }
    
    .nav-container {
        padding: 10px 20px !important;
    }
    
    .hero-container {
        text-align: center;
        gap: 40px;
        padding-top: 120px;
        min-height: calc(100vh - 80px);
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-background {
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 30px;
    }
    
    /* Services Slider - Mobile Only */
    .services-grid {
        overflow: hidden;
        position: relative;
    }
    
    .services-slider-container {
        display: block;
        position: relative;
        width: 100%;
        grid-template-columns: none;
        gap: 0;
    }
    
    /* Override desktop grid layout for mobile slider */
    .services-slider-container {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        padding-bottom: 20px !important;
        overflow: visible !important;
    }
    
    .services-slider-wrapper {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        overflow: hidden !important;
        margin-bottom: 10px !important;
    }
    
    .services-slider-wrapper .service-card {
        width: 100% !important;
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(100%) !important;
        transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s !important;
        margin: 0 auto !important;
        padding: 30px 20px !important;
        grid-column: auto !important;
        box-sizing: border-box !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }
    
    .services-slider-wrapper .service-card.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* Show first card by default (before JS loads) - only if no active class exists */
    .services-slider-wrapper:not(:has(.active)) .service-card:first-child {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
        position: relative !important;
    }
    
    /* Ensure wrapper has proper height */
    .services-slider-wrapper {
        min-height: 450px !important;
    }
    
    .services-slider-wrapper .service-card .service-icon {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 80px !important;
        height: 80px !important;
        font-size: 2rem !important;
        margin-bottom: 20px !important;
    }
    
    .services-slider-wrapper .service-card h3 {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .services-slider-wrapper .service-card p {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    
    .services-slider-wrapper .service-card .service-features {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-top: 15px !important;
    }
    
    .services-slider-wrapper .service-card .service-features span {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Show first card by default if it has active class */
    .services-slider-wrapper .service-card.active:first-child,
    .services-slider-wrapper .service-card:first-child.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
        display: block !important;
    }
    
    .services-slider-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
        margin-bottom: 20px;
        padding: 15px 20px;
        visibility: visible !important;
        width: 100%;
        box-sizing: border-box;
        overflow: visible !important;
    }
    
    .service-dot {
        display: block !important;
        visibility: visible !important;
        flex-shrink: 0;
        width: 14px !important;
        height: 14px !important;
        min-width: 14px !important;
        min-height: 14px !important;
    }
    
    .packages-grid, .destinations-grid, .visa-types-grid, .programs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .package-card, .destination-card, .visa-type-card, .program-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .step {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .contact-form, .inquiry-form {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .inquiry-form {
        padding-bottom: 60px; /* Extra padding below submit button on mobile */
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float .whatsapp-button span {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
        margin: 40px auto 0;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 25px 20px;
        text-align: center;
        margin: 0;
    }
    
    .section-header {
        padding: 0 20px;
        margin-bottom: 30px;
    }
    
    .umrah-section, .explore-world, .why-choose-us {
        padding: 30px 0 !important;
    }

    .contact-form-section {
        padding: 30px 0 12px 0 !important;
    }
    
    .faq-section {
        padding: 30px 0 15px 0 !important;
    }
    
    .contact-section {
        padding: 15px 0 60px 0 !important;
    }

    .contact-features-section {
        padding: 24px 0 !important;
    }
    
    .service-categories {
        padding: 40px 0 80px 0 !important; /* Reduced padding on tablet */
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .faq-section h2 {
        font-size: 2.5rem;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-item {
        margin: 0 10px 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer {
        padding: 0 20px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
        max-height: 400px;
        opacity: 1;
    }

.faq-actions {
    display: flex;
    justify-content: center;
}

/* Mobile View More Controls */
.mobile-view-more {
    display: none;
    width: auto;
    min-width: 220px;
    margin: 20px auto 0;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 0.85rem 1.5rem;
}

.mobile-view-more.btn-secondary {
    background: var(--deep-emerald);
    border-color: var(--deep-emerald);
    color: var(--pure-white);
    box-shadow: 0 8px 20px rgba(26, 86, 64, 0.25);
}

.mobile-view-more.btn-secondary:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--pure-white);
}

.mobile-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-view-more {
        display: inline-flex;
    }

    .faq-section .mobile-view-more {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
    }
}
    
    .umrah-content, .explore-content, .why-content, .inquiry-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .umrah-text, .explore-text, .why-text {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .umrah-text h2, .explore-text h2, .why-text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .umrah-features li {
        padding: 12px 16px;
        margin: 15px 0;
        font-size: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .contact-method {
        margin: 15px 10px;
        padding: 20px;
    }
    
    .testimonials {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .testimonial {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    /* Improve form spacing on mobile */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 20px;
        font-size: 16px; /* Prevent zoom on iOS */
        border-radius: 12px;
    }
    
    /* Better button spacing */
    .btn {
        padding: 16px 24px;
        font-size: 16px;
        min-height: 48px;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding-top: 100px;
        min-height: calc(100vh - 60px);
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 15px 15px;
        min-height: 60px;
    }
    
    .logo {
        margin-right: 15px;
    }
    
    .logo-image {
        height: 75px;
    }
    
    .logo-text {
        display: flex !important;
    }
    
    .logo-title {
        font-size: 0.75rem !important;
    }
    
    .logo-tagline {
        font-size: 0.5rem !important;
    }
    
    .package-card, .destination-card, .visa-type-card, .program-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .contact-form, .inquiry-form {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .inquiry-form {
        padding-bottom: 50px; /* Extra padding below submit button on small screens */
    }
    
    .section-header {
        padding: 0 15px;
        margin-bottom: 25px;
    }
    
    .umrah-section, .explore-world, .why-choose-us {
        padding: 25px 0 !important;
    }

    .contact-form-section {
        padding: 25px 0 10px 0 !important;
    }
    
    .faq-section {
        padding: 25px 0 10px 0 !important;
    }
    
    .contact-section {
        padding: 10px 0 50px 0 !important;
    }

    .contact-features-section {
        padding: 20px 0 !important;
    }
    
    .testimonials {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .service-categories {
        padding: 30px 0 60px 0 !important; /* Reduced padding on mobile */
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-item {
        margin: 0 5px 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 25px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 240px;
        min-height: 48px;
    }
    
    .service-card {
        padding: 20px 15px;
        margin: 0;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .services-grid {
        padding: 0 15px;
        gap: 20px;
        max-width: 350px;
        margin: 30px auto 0;
    }
    
    .testimonials {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .testimonial {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 12px 20px;
        min-height: 44px;
    }
    
    .packages-grid, .destinations-grid, .visa-types-grid, .programs-grid {
        gap: 20px;
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .process-steps {
        gap: 20px;
        padding: 0 15px;
    }
    
    .step {
        padding: 25px 15px;
        margin: 0 5px;
    }
    
    .contact-content {
        padding: 0 15px;
    }
    
    .contact-method {
        margin: 10px 5px;
        padding: 15px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float .whatsapp-button {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    /* Extra small spacing improvements */
    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .package-features ul, .destination-features, .visa-features ul {
        margin: 20px 0;
    }
    
    .package-features li, .visa-features li {
        margin: 12px 0;
        font-size: 0.95rem;
    }
    
    .umrah-text, .explore-text, .why-text {
        padding: 30px 20px;
        margin: 0 5px;
    }
    
    .umrah-text h2, .explore-text h2, .why-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .umrah-features li {
        padding: 10px 12px;
        margin: 12px 0;
        font-size: 0.95rem;
    }
}