/* Custom Styles for Almashriq Travel & Tours */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #001F3F;
  --navy-light: #002b59;
  --gold: #D4AF37;
  --gold-light: #e8cc6e;
  --gold-dark: #b8961f;
  --white: #ffffff;
  --offwhite: #F8F7F4;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--offwhite);
  color: var(--gray-800);
  overflow-x: hidden;
}

.font-serif { font-family: 'Playfair Display', Georgia, serif; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0, 31, 63, 0.95);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.navbar.scrolled { background: rgba(0, 31, 63, 0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-icon {
  width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.25rem; color: var(--navy);
}
.nav-logo-text { color: var(--white); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: color 0.3s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.iata-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(212, 175, 55, 0.12); border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.4rem 1rem; border-radius: 50px; color: var(--gold);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px;
}
.iata-badge i { width: 16px; height: 16px; }
.mobile-toggle {
  display: none; background: none; border: none; color: var(--white);
  cursor: pointer; padding: 0.5rem;
}
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--navy); border-top: 1px solid rgba(212,175,55,0.2);
  padding: 1rem 1.5rem; flex-direction: column; gap: 0.75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); text-decoration: none; padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.95rem;
}

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,31,63,0.7) 0%, rgba(0,31,63,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 2rem 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3);
  padding: 0.5rem 1.25rem; border-radius: 50px; color: var(--gold);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); padding: 1rem 2rem; border-radius: 12px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,175,55,0.4); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 1rem 2rem; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 2px solid var(--gold); transition: all 0.3s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { background: rgba(212,175,55,0.1); transform: translateY(-2px); }

/* Feature Bar */
.feature-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(0,31,63,0.85); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212,175,55,0.2);
}
.feature-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.feature-item {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  padding: 1.25rem 1rem; border-right: 1px solid rgba(212,175,55,0.15);
  transition: background 0.3s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(212,175,55,0.08); }
.feature-icon {
  width: 40px; height: 40px; background: rgba(212,175,55,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.feature-text h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; }
.feature-text p { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin-top: 2px; }

/* Section Common */
.section { padding: 5rem 1.5rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(212,175,55,0.1); color: var(--gold); border: 1px solid rgba(212,175,55,0.25);
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1rem;
}
.section-subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.container { max-width: 1280px; margin: 0 auto; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(212,175,55,0.2); transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.service-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(0,31,63,0.12); border-color: var(--gold); }
.service-img { width: 100%; height: 220px; object-fit: cover; }
.service-body { padding: 1.75rem; }
.service-body h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-body p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
  background: rgba(212,175,55,0.08); color: var(--gold-dark);
  padding: 0.3rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 500;
}

/* Why Choose Us */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-image { border-radius: 20px; overflow: hidden; position: relative; }
.why-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; }
.why-image-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); padding: 0.75rem 1.5rem; border-radius: 12px;
  font-weight: 700; font-size: 0.9rem;
}
.why-content h2 { font-family: 'Playfair Display', serif; font-size: 2.25rem; color: var(--navy); margin-bottom: 1rem; }
.why-content > p { color: var(--gray-600); line-height: 1.7; margin-bottom: 2rem; }
.benefit-list { display: flex; flex-direction: column; gap: 1.25rem; }
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-icon {
  width: 36px; height: 36px; min-width: 36px; background: rgba(212,175,55,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.benefit-item h4 { color: var(--navy); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.benefit-item p { color: var(--gray-600); font-size: 0.85rem; line-height: 1.6; }

/* Office Section */
.office-section { background: var(--offwhite); }
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.map-wrapper { border-radius: 16px; overflow: hidden; border: 1px solid var(--gray-200); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.map-wrapper iframe { width: 100%; height: 400px; border: none; }
.map-link {
  display: flex; align-items: center; gap: 0.5rem; padding: 1rem 1.5rem;
  background: var(--white); color: var(--gold-dark); text-decoration: none;
  font-weight: 600; font-size: 0.9rem; transition: background 0.3s;
}
.map-link:hover { background: rgba(212,175,55,0.05); }
.office-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 0.5rem; }
.office-info .office-subtitle { color: var(--gray-600); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-card {
  background: var(--white); border-radius: 16px; padding: 1.5rem;
  border: 1px solid var(--gray-200); margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.contact-card h4 { color: var(--navy); font-weight: 600; margin-bottom: 1rem; font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-list li { display: flex; align-items: center; gap: 0.75rem; }
.contact-list .contact-icon {
  width: 36px; height: 36px; background: rgba(212,175,55,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.contact-list .contact-details { display: flex; flex-direction: column; }
.contact-list .contact-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.contact-list .contact-phone { color: var(--gray-600); font-size: 0.85rem; }
.contact-list .contact-phone a { color: var(--gold-dark); text-decoration: none; font-weight: 500; }
.hours-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(34,197,94,0.1); color: #16a34a; padding: 0.5rem 1rem;
  border-radius: 50px; font-weight: 600; font-size: 0.8rem; margin-top: 0.5rem;
}
.hours-badge .dot { width: 8px; height: 8px; background: #16a34a; border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 4rem 1.5rem 0; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer h3 { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 1.25rem; }
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; display: flex; align-items: center; gap: 0.5rem; }
.footer-links a:hover { color: var(--gold); }
.footer-form { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-form input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 0.75rem 1rem; border-radius: 10px; color: var(--white);
  font-size: 0.9rem; outline: none; transition: border-color 0.3s;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-form input:focus { border-color: var(--gold); }
.footer-form button {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); padding: 0.75rem; border: none; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: all 0.3s;
}
.footer-form button:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(212,175,55,0.3); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; font-size: 0.8rem;
}
.social-icons { display: flex; gap: 0.75rem; }
.social-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all 0.3s; text-decoration: none;
}
.social-icon:hover { background: var(--gold); color: var(--navy); }

/* Active Nav Link */
.nav-links a.active-link { color: var(--gold); }
.nav-links a.active-link::after { width: 100%; }

/* Page Hero (inner pages) */
.page-hero {
  position: relative; padding: 10rem 1.5rem 5rem; text-align: center;
  overflow: hidden; min-height: 400px; display: flex; align-items: center; justify-content: center;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,31,63,0.75) 0%, rgba(0,31,63,0.9) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero-content h1 {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800;
  color: var(--white); margin-bottom: 1rem; line-height: 1.2;
}
.page-hero-content h1 span { color: var(--gold); }
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.7; }

/* Highlight Grid (Umrah services) */
.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.highlight-card {
  background: var(--white); border-radius: 16px; padding: 2rem;
  border: 1px solid var(--gray-200); text-align: center;
  transition: all 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,31,63,0.08); border-color: var(--gold); }
.highlight-icon {
  width: 56px; height: 56px; background: rgba(212,175,55,0.1);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin: 0 auto 1rem;
}
.highlight-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.15rem; margin-bottom: 0.5rem; }
.highlight-card p { color: var(--gray-600); font-size: 0.85rem; line-height: 1.6; }

/* Pricing Grid */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.pricing-card {
  background: var(--offwhite); border-radius: 20px; padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200); transition: all 0.3s; position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,31,63,0.1); }
.pricing-featured {
  background: var(--navy); border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0,31,63,0.2);
}
.pricing-featured .pricing-tier,
.pricing-featured h3 { color: var(--white); }
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-featured .pricing-features i { color: var(--gold); }
.pricing-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); padding: 0.35rem 1.25rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; white-space: nowrap;
}
.pricing-tier { color: var(--gold); font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
.pricing-stars { color: var(--gold); margin-bottom: 1rem; display: flex; gap: 0.25rem; }
.pricing-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--navy); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--gray-600); }
.pricing-features i { color: var(--gold); flex-shrink: 0; }

/* Destination Grid (Services page) */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.dest-card {
  background: var(--white); border-radius: 16px; padding: 2rem; text-align: center;
  border: 1px solid var(--gray-200); transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,31,63,0.08); border-color: var(--gold); }
.dest-flag { font-size: 2.5rem; margin-bottom: 0.75rem; }
.dest-card h3 { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 1.15rem; margin-bottom: 0.35rem; }
.dest-card p { color: var(--gray-600); font-size: 0.8rem; margin-bottom: 0.5rem; }
.dest-airlines { color: var(--gray-400); font-size: 0.75rem; margin-bottom: 1.25rem; }
.dest-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(212,175,55,0.1); color: var(--gold-dark);
  padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; text-decoration: none; transition: all 0.3s;
}
.dest-btn:hover { background: var(--gold); color: var(--navy); }

/* Airlines Strip */
.airlines-strip {
  background: var(--white); border-radius: 16px; padding: 2rem;
  text-align: center; border: 1px solid var(--gray-200);
}
.airlines-strip p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 1rem; }
.airline-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.airline-tags span {
  background: rgba(0,31,63,0.05); color: var(--navy); padding: 0.4rem 1rem;
  border-radius: 50px; font-size: 0.8rem; font-weight: 500;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 1.5rem; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid, .why-grid, .office-grid, .footer-grid { grid-template-columns: 1fr; }
  .highlight-grid, .pricing-grid, .dest-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .page-hero-content h1 { font-size: 2.25rem; }
  .feature-bar-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.15); }
  .feature-item:last-child { border-bottom: none; }
  .why-image img { height: 350px; }
}

@media (max-width: 768px) {
  .nav-links, .iata-badge { display: none; }
  .mobile-toggle { display: block; }

  /* === HERO: COMPLETE MOBILE REDESIGN === */
  .hero {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 60px; /* navbar height */
  }

  /* Main hero area */
  .hero-content {
    padding: 3rem 1.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.9rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
  }
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
  }
  .hero p {
    font-size: 0.8rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }

  /* Full-width stacked buttons */
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.6rem;
  }
  .btn-gold, .btn-outline {
    padding: 0.8rem 1.25rem;
    font-size: 0.82rem;
    justify-content: center;
    border-radius: 12px;
    width: 100%;
  }

  /* Feature bar: compact 3-column row */
  .feature-bar {
    position: relative;
    bottom: auto;
  }
  .feature-bar-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .feature-item {
    flex-direction: column;
    text-align: center;
    padding: 0.9rem 0.5rem;
    gap: 0.4rem;
    border-right: 1px solid rgba(212,175,55,0.1);
    border-bottom: none;
  }
  .feature-item:last-child { border-right: none; }
  .feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    margin: 0 auto;
  }
  .feature-icon svg { width: 14px; height: 14px; }
  .feature-text h4 { font-size: 0.6rem; letter-spacing: 0.3px; }
  .feature-text p { display: none; } /* Hide subtitles on mobile for cleaner look */

  /* Page hero (inner pages) */
  .page-hero {
    padding: 6rem 1.25rem 2.5rem;
    min-height: auto;
  }
  .page-hero-content h1 { font-size: 1.5rem; }
  .page-hero-content p { font-size: 0.85rem; }

  /* General mobile */
  .section { padding: 3rem 1rem; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.88rem; }
  .section-header { margin-bottom: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .highlight-grid, .pricing-grid, .dest-grid { grid-template-columns: 1fr; }
  .why-grid { gap: 2rem; }
  .office-grid { gap: 2rem; }
  .why-content h2 { font-size: 1.5rem; }
  .pricing-card { padding: 2rem 1.5rem; }
  .cta-section { padding: 3rem 1.25rem; }
  .cta-section h2 { font-size: 1.5rem !important; }
  .service-img { height: 180px; }
  .map-wrapper iframe { height: 280px; }
}

/* Extra small devices (iPhone SE, Galaxy Fold, etc.) */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.3rem; }
  .hero p { font-size: 0.75rem; }
  .hero-badge { font-size: 0.6rem; padding: 0.3rem 0.75rem; }
  .btn-gold, .btn-outline { padding: 0.7rem 1rem; font-size: 0.78rem; }
  .nav-logo-icon { width: 36px; height: 36px; font-size: 1rem; border-radius: 10px; }
  .nav-logo-text { font-size: 0.95rem; }
  .feature-text h4 { font-size: 0.55rem; }
  .feature-icon { width: 26px; height: 26px; }
  .page-hero-content h1 { font-size: 1.3rem; }
}
