/*
Theme Name: Zubayer Tours (Converted)
Theme URI: http://example.com/
Author: Converted by ChatGPT
Author URI: http://example.com/
Description: A WordPress theme converted from a static Zubayer Tours template.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zubayer-tours
Tags: custom-menu, responsive, one-column
*/


/* --- CSS RESET & VARIABLES --- */
:root {
  --primary: #0b6bff;
  --primary-dark: #0056d6;
  --secondary: #f9a826;
  --dark: #0f1724;
  --text: #334155;
  --muted: #64748b;
  --light-bg: #f1f5f9;
  --white: #ffffff;
  --success: #10b981;
  --radius: 12px;
  --max-width: 1280px;
  --header-height: 72px;
  --top-bar-height: 56px;
}

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

html { 
  scroll-behavior: smooth; 
  /* START: CROSS-BROWSER FIXES */
  -webkit-tap-highlight-color: transparent; 
  touch-action: manipulation;
  /* END: CROSS-BROWSER FIXES */
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light-bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: calc(var(--header-height) + var(--top-bar-height)); /* Prevent content hiding behind fixed header */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }


/* --- TYPOGRAPHY REFINEMENTS --- */

/* Base Typography: Poppins for everything by default */
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.65; /* Improved readability for body text */
  color: var(--text); /* Using the --text variable for consistency */
  -webkit-font-smoothing: antialiased; /* Better font rendering on webkit browsers */
}

/* Headings: Playfair Display for a stylish, sophisticated look */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700; /* Bold for impact */
  color: var(--dark); /* Using the --dark variable */
  margin-top: 0;
  margin-bottom: 0.5em; /* Consistent spacing below headings */
}

/* Specific Heading Sizes for better visual hierarchy */
h1 { font-size: 3.5rem; } /* Use in Hero section or main page title */
h2 { font-size: 2.2rem; margin-bottom: 25px; } /* Use for main section headers */
h3 { font-size: 1.6rem; } /* Use for package titles, feature titles */
h4 { font-size: 1.3rem; }

/* Section Header Styling Enhancement */
.section-header h2 {
    font-weight: 700;
    text-transform: uppercase; /* Gives a premium feel */
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 50px;
}

/* Links and Buttons */
a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

/* --- HAJJ & UMRAH --- */
.hajj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Hajj & Umrah Package Card */
.hajj-grid .pkg-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.hajj-grid .pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Card Image */
.hajj-grid .pkg-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s;
}
.hajj-grid .pkg-img img:hover {
  transform: scale(1.05);
}

/* Card Body */
.hajj-grid .pkg-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Title */
.hajj-grid .pkg-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

/* Description */
.hajj-grid .pkg-desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
}

/* Footer: Price & Button */
.hajj-grid .pkg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hajj-grid .pkg-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #e53e3e;
}
.hajj-grid .pkg-footer a.btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  transition: background 0.3s, transform 0.3s;
}
.hajj-grid .pkg-footer a.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hajj-grid {
    grid-template-columns: 1fr;
  }
  .hajj-grid .pkg-img img {
    height: 200px;
  }
  .hajj-grid .pkg-title {
    font-size: 1.2rem;
  }
  .hajj-grid .pkg-desc {
    font-size: 0.9rem;
  }
}

.hero { position: relative; width: 100%; height: 85vh; min-height: 500px; overflow: hidden; }

.hero-slider .swiper-slide img {
  width: 100%;
  height: 85vh;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 10;
  padding: 0 5%;
  text-align: center;
}

.hero-content { color: #fff; max-width: 600px; }

.hero-badge { 
  display: inline-block; 
  background: rgba(255,255,255,0.2); 
  backdrop-filter: blur(5px); 
  padding: 5px 15px; 
  border-radius: 20px; 
  font-size: 0.9rem; 
  font-weight: 600; 
  margin-bottom: 15px; 
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-title { font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }

.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; font-weight: 300; }

.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero { height: 80vh; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-slider .swiper-slide img { height: 80vh; }
}


/*Page Css*/


/* ----- PAGE STYLES ----- */
.page-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.page-banner {
    background: url('<?php echo get_the_post_thumbnail_url(); ?>') center/cover no-repeat;
    padding: 80px 20px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    border-radius: 10px;
}

.page-banner h1 {
    position: relative;
    z-index: 2;
    font-size: 42px;
    margin: 0;
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 25px;
    color: #666;
}

.page-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.page-content h2,
.page-content h3 {
    margin-top: 30px;
    color: var(--primary);
}

.page-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 17px;
}

/* Responsive */
@media(max-width: 768px){
    .page-wrapper {
        margin: 20px 10px;
    }
    .page-banner {
        padding: 60px 20px;
    }
    .page-banner h1 {
        font-size: 32px;
    }
}


/* Media Query for Mobile Optimization */
@media (max-width: 768px) {
  /* Scale down headings on mobile for better fit */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  
  .section-header p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

/* --- ANIMATIONS --- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

/* --- TOP ICON BAR --- */
.top-icons {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: var(--top-bar-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

.brand-section { display: flex; align-items: center; gap: 10px; }
.brand-section img { height: 36px; }
.brand-section span { font-weight: 700; color: var(--dark); font-size: 1.1rem; }

.icons-section { display: flex; gap: 15px; }
.icon-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 500; color: var(--dark);
  padding: 4px 8px; border-radius: 6px;
}
.icon-item:hover { background: #eff6ff; color: var(--primary); }
.icon-item img { width: 24px; height: 24px; object-fit: contain; }

/* --- MAIN HEADER --- */
.site-header {
  position: fixed;
  top: var(--top-bar-height);
  left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  /* START: SAFARI FIX FOR BLUR */
  -webkit-backdrop-filter: blur(10px); 
  /* END: SAFARI FIX FOR BLUR */
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 90;
  transition: top 0.3s;
}

.main-nav { display: flex; gap: 20px; }
.main-nav a {
  font-weight: 600; font-size: 0.95rem; color: var(--dark);
  padding: 8px 12px; border-radius: 6px;
}
.main-nav a:hover, .main-nav a.active { background: #eff6ff; color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 15px; }

.whatsapp-btn-header {
  background: var(--success); color: white;
  padding: 8px 16px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.whatsapp-btn-header:hover { background: #059669; }

.hamburger {
  display: none; background: none; border: none;
  font-size: 1.5rem; color: var(--dark); cursor: pointer;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(0,0,0,0.5); z-index: 200;
  opacity: 0; pointer-events: none; transition: 0.3s;
  /* START: SAFARI FIX FOR SMOOTH SCROLLING */
  -webkit-overflow-scrolling: touch; 
  /* END: SAFARI FIX FOR SMOOTH SCROLLING */
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu-content {
  position: absolute; top: 0; right: -300px;
  width: 280px; height: 100%;
  background: white; padding: 20px;
  display: flex; flex-direction: column; gap: 15px;
  transition: 0.3s; box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}
.mobile-menu.open .mobile-menu-content { right: 0; }

.mobile-menu-header {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 10px;
}
.close-menu { background: none; border: none; font-size: 1.5rem; cursor: pointer; }

.mobile-link {
  font-size: 1.1rem; font-weight: 500; color: var(--dark);
  padding: 10px; border-radius: 8px;
}
.mobile-link:hover { background: #f1f5f9; color: var(--primary); }

/* --- HERO SECTION & SLIDER --- */
.hero {
  position: relative;
  width: 100%;
  height: 85vh; /* Responsive height */
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  margin-top: 0; /* Reset margin because of body padding */
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; /* Key fix: Cover ensures no stretching */
  object-position: center; /* Key fix: Centers the image content */
  opacity: 0; transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }


.hero-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  display: flex; align-items: center; padding: 0 5%;
}

.hero-content {
  max-width: 600px; color: white;
  animation: slideUp 1s ease-out;
}

.hero-badge {
  display: inline-block; background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px); padding: 5px 15px; border-radius: 20px;
  font-size: 0.9rem; font-weight: 600; margin-bottom: 15px;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.9);
  margin-bottom: 30px; font-weight: 300;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; transition: 0.3s; cursor: pointer; border: none;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); }
.btn-outline { background: rgba(255,255,255,0.1); color: white; border: 2px solid white; margin-left: 10px; }
.btn-outline:hover { background: white; color: var(--dark); transform: translateY(-3px); }

/* --- SECTION STYLES --- */
.section {
  padding: 80px 5%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-family: 'Playfair Display', serif; font-size: 2.5rem;
  color: var(--dark); margin-bottom: 10px;
}
.section-header p { color: var(--muted); }

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.about-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.feature-card {
  background: white; padding: 20px; border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- SERVICES --- */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px;
}
.service-card {
  background: white; padding: 30px; border-radius: var(--radius);
  text-align: center; transition: 0.3s;
  border: 1px solid rgba(0,0,0,0.05);
}
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: transparent; }
.service-card img { width: 60px; height: 60px; margin-bottom: 20px; object-fit: contain; }
.service-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-card p { font-size: 0.9rem; color: var(--muted); }

/* --- PACKAGES --- */
/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px 50px;
}

/* Package Card */
.pkg-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #222;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pkg-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.pkg-card img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #ddd;
}

.pkg-info {
  padding: 15px;
  text-align: center;
}

.pkg-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.pkg-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

.pkg-info .pkg-tag {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 8px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s;
}

.pkg-info .pkg-tag:hover {
  background: #128c7e;
}

.modal {
display: none; 
position: fixed; 
z-index: 1000; 
left: 0; top: 0;
width: 100%; height: 100%;
overflow: auto; 
background-color: rgba(0,0,0,0.6);
}
.modal-content {
background-color: #fff;
margin: 10% auto;
padding: 20px;
border-radius: 10px;
max-width: 600px;
position: relative;
}
.modal-content h2 {
margin-bottom: 15px;
}
.modal-content ul {
margin-bottom: 15px;
}
.close {
position: absolute;
top: 10px; right: 15px;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}

/* --- CONTACT ACTION BUTTONS --- */
/* ----------------------------------------------------
   3-BUTTON CONTACT SECTION (WhatsApp + Call + Email)
---------------------------------------------------- */

.contact-section {
  margin: 30px 0;
}

.contact-section h3 {
  margin-bottom: 18px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}

/* Wrapper for 3 buttons */
.triple-call-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Base button */
.triple-btn {
  flex: 1;
  min-width: 180px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 22px;
  border-radius: 50px;

  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;

  transition: 0.3s ease;
  cursor: pointer;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* Call Button */
.call-btn {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(11, 107, 255, 0.25);
}
.call-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(11, 107, 255, 0.35);
}

/* Email Button */
.email-btn {
  background: var(--secondary);
  box-shadow: 0 4px 12px rgba(249, 168, 38, 0.25);
}
.email-btn:hover {
  background: #d88710;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(249, 168, 38, 0.35);
}

/* Icons */
.triple-btn i {
  font-size: 18px;
}

/* Mobile Responsive */





/* Responsive Fixes */
@media screen and (max-width: 768px) {
  .section-header h2 { font-size:1.5rem; }
  .pkg-info h3 { font-size:1rem; }
}
/* --- HAJJ & UMRAH --- */
.hajj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

/* --- STATS --- */
.stats-section {
  background: var(--primary); color: white;
  padding: 60px 5%; margin: 50px 0;
}
.stats-container {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px; text-align: center;
}
.stat-item h3 { font-size: 2.5rem; margin-bottom: 5px; }

/* --- PAYMENTS --- */
.payment-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; align-items: center; margin-top: 30px;
}
.payment-logos img { height: 40px; filter: grayscale(100%); opacity: 0.7; transition: 0.3s; }
.payment-logos img:hover { filter: grayscale(0); opacity: 1; transform: scale(1.1); }

/* --- Contact --- */
@media (max-width: 768px) {
  .triple-call-wrapper {
    flex-direction: column;
  }

  .triple-btn {
    width: 100%;
    font-size: 1rem;
    padding: 16px;
  }
}

/* --- FOOTER --- */
.site-footer {
  background: #0f1724; color: #cbd5e1;
  padding: 80px 5% 30px; margin-top: 50px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; max-width: var(--max-width); margin: 0 auto;
}
.footer-col h4 { color: white; font-size: 1.1rem; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.social-icon:hover { background: var(--primary); color: white; }

.copyright {
  text-align: center; border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px; padding-top: 20px; font-size: 0.9rem;
}

/* --- FLOATING BUTTONS --- */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 60px; height: 60px; background: #25d366; color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 30px; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99; animation: pulse 2s infinite;
}

/* --- RESPONSIVE MEDIA QUERIES (CRITICAL FOR MOBILE) --- */

@media (max-width: 768px) {
  .contact-btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 20px;
  }
}


@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 300px; }
  .about-img img { height: 100%; width: 100%; object-fit: cover; }
}

@media (max-width: 768px) {
  :root { --header-height: 60px; }
  
  /* Header Changes */
  .main-nav, .whatsapp-btn-header { display: none; }
  .hamburger { display: block; }
  .brand-section span { font-size: 0.95rem; }
  .brand-section img { height: 30px; }
  
  /* Top Bar Scrollable */
  .top-icons { overflow-x: auto; justify-content: flex-start; gap: 15px; -webkit-overflow-scrolling: touch; }
  .brand-section { min-width: max-content; margin-right: 15px; }
  .icons-section { min-width: max-content; }

  /* Hero Fixes */
  .hero { height: 80vh; min-height: 500px; }
  .hero-content { margin-top: 0; text-align: center; width: 100%; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-buttons { display: flex; flex-direction: column; gap: 10px; align-items: center; }
  .btn { width: 100%; max-width: 280px; margin: 0; }

  /* Section Adjustments */
  .section { padding: 50px 5%; }
  .section-header h2 { font-size: 2rem; }
  
  /* Grids to Single Column */
  .services-grid, .packages-grid, .hajj-grid { grid-template-columns: 1fr; }
  .feature-card { text-align: center; }
  
  /* Mobile Menu */
  .mobile-menu-content { width: 85%; max-width: 350px; }
}