/*
Theme Name: Uqaab Tour Guide
Theme URI: https://uqaabguides.com
Author: Uqaab Tour Guide Team
Author URI: https://uqaabguides.com
Description: Premium WordPress theme for Islamic Tours, Umrah Packages, and Heritage Journeys.
Version: 1.2.0
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: uqaab-guides
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, theme-options
*/

/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
  --primary-blue: #0040d9;
  --primary-blue-hover: #0035b8;
  --loader-blue: #0040d9;
  --accent-gold: #0040d9;
  --accent-gold-hover: #0035b8;
  --accent-whatsapp: #25D366;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --text-light: #f9fafb;
  --white: #ffffff;

  --font-serif: 'Inter', system-ui, -apple-system, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #f9fafb;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   TAKEOFF LOADER STYLING
   ========================================================================== */
/* Bypass loader class (added to html tag if hash present in URL) */
.bypass-loader #loader-container {
  display: none !important;
}
.bypass-loader #main-content {
  display: flex !important;
  opacity: 1 !important;
}

#loader-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--loader-blue);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s, background-color 0.4s ease;
}

#loader-container.stage-4 {
  background-color: var(--white);
}

#loader-container.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

/* Airplane styling & animations */
.airplane-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(35vh);
  /* Start directly at the bottom */
  width: 220px;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s;
  z-index: 10;
}

.airplane-svg {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

/* Airplane engine humming / vibrating effect */
#loader-container.stage-active .airplane-svg {
  animation: hum 0.15s infinite alternate;
}

@keyframes hum {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(1px, 1px) scale(0.99);
  }
}

/* Rising curve wrapper & details */
.rising-curve-wrapper {
  position: absolute;
  top: 100vh;
  /* Start completely below viewport */
  left: 0;
  width: 100%;
  transform: translateY(0);
  z-index: 3;
  display: flex;
  flex-direction: column;
  transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.rising-curve-svg {
  width: 100%;
  height: 60vh;
  display: block;
  flex-shrink: 0;
}

.rising-curve-fill {
  width: 100%;
  height: 160vh;
  /* Solid white background follow-up */
  background: var(--white);
  margin-top: -2px;
  /* ensure overlap without thin lines showing */
  flex-shrink: 0;
}

/* LOADER TIMELINE STAGES (Applied via JS) */

/* Stage 1: Initial curve rises slightly, airplane sits on the peak */
#loader-container.stage-1 .rising-curve-wrapper {
  transform: translateY(-15vh);
}

#loader-container.stage-1 .airplane-wrapper {
  transform: translate(-50%, -50%) translateY(35vh);
}

/* Stage 2: Plane rises sitting on the peak */
#loader-container.stage-2 .rising-curve-wrapper {
  transform: translateY(-40vh);
}

#loader-container.stage-2 .airplane-wrapper {
  transform: translate(-50%, -50%) translateY(10vh);
}

/* Stage 3: Plane rises higher with the peak */
#loader-container.stage-3 .rising-curve-wrapper {
  transform: translateY(-75vh);
}

#loader-container.stage-3 .airplane-wrapper {
  transform: translate(-50%, -50%) translateY(-25vh);
}

/* Stage 4: Takeoff! Plane shoots off-screen, curve fully covers viewport */
#loader-container.stage-4 .rising-curve-wrapper {
  transform: translateY(-165vh);
  transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#loader-container.stage-4 .airplane-wrapper {
  transform: translate(-50%, -50%) translateY(-110vh) scale(0.7);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.5, 0, 0.1, 1), opacity 0.8s;
}

/* ==========================================================================
   MAIN CONTENT STYLING (HERO SECTION)
   ========================================================================== */
#main-content {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: clip;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

#main-content.visible {
  opacity: 1;
}

/* Hero blurred background */
.hero-bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  overflow: hidden;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) contrast(1.05);
  transform: scale(1.02);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(11, 47, 143, 0.35) 0%,
      rgba(3, 7, 18, 0.8) 100%);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.main-header {
  width: 100%;
  position: sticky;
  top: -2px;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
  padding: 0 !important;
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  transition: padding 0.3s ease;
}

.main-header.scrolled {
  background-color: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.logo-icon-svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon-svg {
  transform: scale(1.08) rotate(-2deg);
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-tagline {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #e2c293;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1;
  background: linear-gradient(90deg, #e2c293, #f7dfb9, #c5a880);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.admin-bar .main-header {
  top: 32px !important;
}

@media screen and (max-width: 782px) {
  body.admin-bar .main-header {
    top: 46px !important;
  }
}

.nav-menu,
ul.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-menu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav-menu li::before,
.nav-menu li::after {
  display: none !important;
  content: "" !important;
}

.nav-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-smooth);
  padding: 0.25rem 0;
  text-decoration: none;
  display: inline-block;
}

.nav-menu a:hover,
.nav-menu li.current-menu-item > a,
.nav-menu li.active > a {
  color: #ffffff !important;
}

.nav-menu a.active {
  color: #ffffff !important;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.5px;
}

.btn-primary-gold {
  background-color: var(--accent-gold);
  color: var(--white);
  border: 1px solid var(--accent-gold);
}

.btn-primary-gold:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 64, 217, 0.3);
}

.btn-primary-blue {
  background-color: var(--primary-blue);
  color: var(--white);
  border: 1px solid var(--primary-blue);
}

.btn-primary-blue:hover {
  background-color: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 64, 217, 0.3);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO MAIN CONTENT & TYPOGRAPHY
   ========================================================================== */
.hero-section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 4rem 6rem 4rem;
  z-index: 10;
  position: relative;
}

.hero-cta-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.blue-divider {
  width: 280px;
  height: 2px;
  background: linear-gradient(to right, var(--primary-blue) 70%, transparent 100%);
  margin-bottom: 2rem;
}

.hero-quick-cards-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  padding: 0;
  z-index: 20;
}

.hero-quick-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.quick-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: var(--transition-smooth);
  display: block;
}

.quick-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.quick-card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.quick-card-title {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.quick-card-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  line-height: 1.5;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-main-content {
  max-width: 650px;
  text-align: left;
}

/* ==========================================================================
   HERO IMAGES GALLERY (COLLAGE)
   ========================================================================== */
.hero-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.hero-cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1.45 / 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  display: block;
}

.hero-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-cat-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(3, 7, 18, 0.1) 0%, 
    rgba(3, 7, 18, 0.4) 50%, 
    rgba(3, 7, 18, 0.85) 100%);
  transition: opacity 0.3s ease;
}

.hero-cat-title {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.hero-cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.hero-cat-card:hover img {
  transform: scale(1.05);
}


.subtitle-badge {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title .highlight {
  background: linear-gradient(to right, var(--white) 20%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-divider {
  width: 280px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-gold) 70%, transparent 100%);
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 550px;
}

/* ==========================================================================
   STATS GROUP
   ========================================================================== */
.stats-group {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.stat-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-gold);
}

.stat-icon {
  width: 22px;
  height: 22px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3px;
  margin-top: 1px;
}

/* ==========================================================================
   BOTTOM ACTION BAR (Matching reference image)
   ========================================================================== */
/* ==========================================================================
   MAIN FOOTER STYLING
   ========================================================================== */
.main-footer {
  background-color: #1b223c;
  color: #98a2b3;
  padding: 5rem 4rem 3rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 100;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.3fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-links-list a {
  font-size: 0.95rem;
  color: #98a2b3;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links-list a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: #98a2b3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
}

.social-icon-btn:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: #667085;
}

.newsletter-input:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.newsletter-btn {
  width: 100%;
  font-weight: 600;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}

/* Floating WhatsApp Widget Styling */
.floating-whatsapp-widget {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 60px;
  height: 60px;
  background-color: var(--accent-whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.floating-whatsapp-widget svg {
  width: 32px;
  height: 32px;
}

.floating-whatsapp-widget:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   SMOOTH ENTRANCE ANIMATIONS (Post Loader)
   ========================================================================== */
.hidden {
  display: none !important;
}

.animate-fade-in,
.animate-slide-up-1,
.animate-slide-up-2,
.animate-slide-up-3,
.animate-slide-up-4,
.animate-slide-up-5 {
  opacity: 0;
}

#main-content.visible .animate-fade-in {
  animation: fadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

#main-content.visible .animate-slide-up-1 {
  animation: slideUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.1s forwards;
}

#main-content.visible .animate-slide-up-2 {
  animation: slideUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.25s forwards;
}

#main-content.visible .animate-slide-up-3 {
  animation: slideUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}

#main-content.visible .animate-slide-up-4 {
  animation: slideUp 1s cubic-bezier(0.25, 1, 0.5, 1) 0.55s forwards;
}

#main-content.visible .animate-slide-up-5 {
  animation: slideUpBar 1.2s cubic-bezier(0.25, 1, 0.5, 1) 0.65s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpBar {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .main-header {
    padding: 1.5rem 2.5rem;
  }

  .hero-section {
    padding: 2rem 2.5rem 3rem 2.5rem;
  }

  .bottom-action-bar {
    padding: 1.5rem 2.5rem;
  }

  .floating-whatsapp {
    right: 2.5rem;
  }
}

@media (max-width: 992px) {
  /* nav-menu visibility handled by mobile drawer CSS below */

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-gallery {
    height: 400px;
    max-width: 550px;
    margin: 2rem auto 0 auto;
  }

  .hero-title {
    font-size: 3.2rem;
  }

  .hero-quick-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .core-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .faq-contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-cta-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .stats-group {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .stat-item {
    width: 100%;
  }

  .hero-section {
    padding: 1.5rem 1.5rem 3rem 1.5rem;
  }

  .hero-gallery {
    height: 320px;
    margin-top: 1.5rem;
  }

  .hero-quick-cards {
    grid-template-columns: 1fr;
  }

  .services-preview-grid {
    grid-template-columns: 1fr;
  }

  .core-services-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-us-section {
    padding: 4rem 1.5rem;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-section {
    padding: 4rem 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-section {
    padding: 4rem 1.5rem;
  }

  .faq-contact-section {
    padding: 4rem 1.5rem;
  }

  .booking-form {
    padding: 2.25rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .main-header {
    padding: 1.5rem 1.5rem;
  }

  .main-footer {
    padding: 4rem 1.5rem 2rem 1.5rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .floating-whatsapp-widget {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp-widget svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   SERVICES & PACKAGES PAGE BANNERS
   ========================================================================== */
.page-banner-section {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 10;
  margin-top: -92px;
  padding-top: 92px;
}

.banner-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.banner-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.45) contrast(1.05);
  transform: scale(1.06);
}

.banner-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(11, 47, 143, 0.45) 0%,
      rgba(3, 7, 18, 0.85) 100%);
}

.banner-content {
  max-width: 800px;
  padding: 0 2rem;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.banner-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   SERVICES CONTENT LAYOUT
   ========================================================================== */
.services-section {
  width: 100%;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Services Detail Page Layout Styles */
.services-content-section {
  padding: 6rem 4rem;
  background-color: var(--white);
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #e2e8f0;
}

.services-content-section:nth-of-type(even) {
  background-color: #f8fafc;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
  width: 100%;
}

.services-content-section:nth-of-type(even) .services-container {
  flex-direction: row-reverse;
}

.services-left-col,
.services-right-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.crescent-icon-wrapper,
.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 64, 217, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.crescent-svg,
.service-svg-icon {
  width: 28px;
  height: 28px;
}

.services-sub-title {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.services-description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.services-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 1.05rem;
  color: #334155;
  font-weight: 500;
}

.services-list .check-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  border: 4px solid rgba(0, 64, 217, 0.15);
  color: transparent;
  flex-shrink: 0;
}

.service-image-card {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.service-image-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 64, 217, 0.08);
}

.service-main-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-preview-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 64, 217, 0.06);
  border-color: rgba(0, 64, 217, 0.15);
}

.service-preview-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--primary-blue);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.service-preview-icon {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
}

.service-preview-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-preview-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-preview-price {
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid #f3f4f6;
  padding-top: 1.25rem;
  margin-top: auto;
  margin-bottom: 1rem;
}

.service-preview-price .price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-left: 0.25rem;
}

.service-preview-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.service-preview-features li {
  font-size: 0.82rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.25rem;
  display: flex;
  align-items: center;
}

.service-preview-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

/* Subsection 2: Core Services Grid */
.core-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.core-service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.core-service-icon-wrapper {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.core-service-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.core-service-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   PACKAGES CARD GRID LAYOUT
   ========================================================================== */
.packages-grid-section {
  width: 100%;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.packages-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.package-card {
  background-color: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(11, 47, 143, 0.15);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .card-image {
  transform: scale(1.04);
}

.location-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 0.45rem 0.9rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.location-badge svg {
  width: 13px;
  height: 13px;
  color: var(--primary-blue);
}

.price-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background-color: var(--loader-blue);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.card-rating {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.detail-icon {
  width: 16px;
  height: 16px;
  color: var(--primary-blue);
}

.card-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.highlights-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}

.card-highlights ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.card-highlights li {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1rem;
}

.card-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: 700;
}

/* Custom Tour Banner styling */
.custom-tour-banner {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(11, 47, 143, 0.95) 0%, rgba(3, 7, 18, 0.95) 100%);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 4rem;
  color: var(--white);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.custom-banner-title {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
}

.custom-banner-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.5rem 0;
}

/* ==========================================================================
   SERVICES & PACKAGES RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
  .services-container,
  .services-content-section:nth-of-type(even) .services-container {
    flex-direction: column !important;
    gap: 3.5rem;
  }

  .services-left-col,
  .services-right-col {
    width: 100%;
  }

  .service-image-card {
    max-width: 100%;
  }

  .packages-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 2.6rem;
  }

  .banner-description {
    font-size: 1rem;
  }

  .page-banner-section {
    height: 300px;
  }

  .services-content-section,
  .packages-grid-section {
    padding: 4rem 1.5rem;
  }

  .services-sub-title {
    font-size: 2rem;
  }

  .packages-container {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   DESTINATIONS PAGE STYLING
   ========================================================================== */
.destinations-grid-section {
  width: 100%;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.destinations-container {
  max-width: 1200px;
  margin: 0 auto;
}

.destinations-header-block {
  text-align: center;
  margin-bottom: 4rem;
}

.destinations-main-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.destinations-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  height: 400px;
  border: 1px solid #f3f4f6;
  transition: var(--transition-smooth);
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
}

.destination-card-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.destination-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.destination-card:hover .destination-card-image {
  transform: scale(1.06);
}

.destination-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(3, 7, 18, 0.1) 0%,
      rgba(3, 7, 18, 0.4) 50%,
      rgba(3, 7, 18, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  z-index: 2;
}

.destination-location-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 0.45rem 0.9rem;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.destination-location-badge svg {
  width: 13px;
  height: 13px;
  color: var(--primary-blue);
}

.destination-card-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.destination-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.destination-card-btn {
  align-self: flex-start;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
  transition: var(--transition-smooth);
}

.destination-card-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-card-btn {
  color: var(--white);
}

.destination-card:hover .destination-card-btn svg {
  transform: translateX(4px);
}

/* Featured Destinations Grid (2 columns on destinations page) */
.featured-destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

/* Destination Card Tags (Pills inside card) */
.destination-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.destination-card-tag {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Destination Card Footer */
.destination-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  margin-top: auto;
  width: 100%;
}

.destination-card-tours-count {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.destination-card-tours-count svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

/* More Destinations Section styling */
.more-destinations-section {
  padding: 6rem 0;
  background-color: #f9fafb;
}

.more-destinations-title {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3.5rem;
  letter-spacing: -0.5px;
}

.more-destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.more-destination-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.more-destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(11, 47, 143, 0.1);
}

.more-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.more-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.more-destination-card:hover .more-card-image {
  transform: scale(1.04);
}

.more-card-tours-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(11, 47, 143, 0.2);
}

.more-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.more-card-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.more-card-location svg {
  width: 14px;
  height: 14px;
  color: var(--primary-blue);
}

.more-card-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.more-card-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.more-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.more-card-tag {
  background-color: #f3f4f6;
  color: var(--text-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .featured-destinations-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .more-destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 576px) {
  .more-destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   WHY CHOOSE US SECTION STYLING
   ========================================================================== */
.why-choose-us-section {
  width: 100%;
  background-color: #f3f4f6;
  color: var(--text-dark);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.why-choose-us-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background-color: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  text-align: left;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 64, 217, 0.05);
  border-color: rgba(0, 64, 217, 0.1);
}

.benefit-icon-wrapper {
  font-size: 2.6rem;
  margin-bottom: 1.25rem;
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.benefit-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   HOW IT WORKS SECTION STYLING
   ========================================================================== */
.how-it-works-section {
  width: 100%;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.how-it-works-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
  margin-top: 4rem;
  position: relative;
}

.roadmap-step {
  background-color: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.roadmap-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 64, 217, 0.05);
  border-color: rgba(0, 64, 217, 0.15);
}

.step-number {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 15px rgba(0, 64, 217, 0.2);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ==========================================================================
   TESTIMONIALS SECTION STYLING
   ========================================================================== */
.testimonials-section {
  width: 100%;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: #f4f7fe;
  border: 1px solid #eef2ff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition-smooth);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 64, 217, 0.04);
  border-color: rgba(0, 64, 217, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--primary-blue);
  color: var(--white);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.author-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quote-icon-wrapper {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
}

.quote-icon {
  width: 40px;
  height: 40px;
  color: rgba(0, 64, 217, 0.15);
}

.testimonial-stars {
  color: var(--primary-blue);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 0;
  flex-grow: 1;
}

/* ==========================================================================
   FAQ & CONTACT SECTION STYLING
   ========================================================================== */
/* ==========================================================================
   FAQ & CONTACT SECTION STYLING
   ========================================================================== */
.faq-section {
  width: 100%;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.faq-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* FAQ Standalone Styles */
.faq-accordion-full {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: #f4f7fe;
  border: 1px solid #eef2ff;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item[open] {
  border-color: rgba(0, 64, 217, 0.25);
  box-shadow: 0 10px 25px rgba(0, 64, 217, 0.03);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: translateY(2px) rotate(-135deg);
  border-color: var(--primary-blue);
}

.faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

/* Contact Redesign Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-card {
  background-color: #f4f7fe;
  border: 1px solid #eef2ff;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(0, 64, 217, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.info-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-card-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #64748b;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2ff;
  line-height: 0;
}

.contact-form-column {
  background-color: var(--white);
  border: 1px solid #eef2ff;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.025);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.form-input {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  background-color: var(--white);
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(0, 64, 217, 0.08);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Responsive adjustments for FAQ & Contact */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .faq-section, .contact-section {
    padding: 4rem 1.5rem;
  }
  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-form-column {
    padding: 2.25rem 1.5rem;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   GALLERY PAGE STYLING
   ========================================================================== */
.gallery-grid-section {
  width: 100%;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid #f3f4f6;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(11, 47, 143, 0.1);
}

/* Make some grid items span 2 columns or rows for asymmetry */
.gallery-item.span-2-col {
  grid-column: span 2;
}

.gallery-item.span-2-row {
  grid-row: span 2;
}

.gallery-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(11, 47, 143, 0.85) 0%,
      rgba(3, 7, 18, 0.4) 60%,
      rgba(3, 7, 18, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gallery-item-category {
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Create Memories Section styling */
.memories-section {
  padding: 6rem 2rem;
  background-color: #f9fafb;
  text-align: center;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
}

.memories-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.memories-title {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  margin: 0;
}

.memories-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0;
}

/* ==========================================================================
   BLOG PAGE STYLING
   ========================================================================== */
.blog-grid-section {
  width: 100%;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  background-color: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  border-color: rgba(11, 47, 143, 0.15);
}

.blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.04);
}

.blog-category-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  letter-spacing: 0.5px;
  z-index: 3;
}

.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-meta-icon {
  width: 14px;
  height: 14px;
  color: var(--primary-blue);
}

.blog-title {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--primary-blue);
}

.blog-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-readmore {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}

.blog-readmore svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-readmore {
  color: var(--accent-gold);
}

.blog-card:hover .blog-readmore svg {
  transform: translateX(4px);
}

/* Blog Card Footer and Author */
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid #f3f4f6;
  width: 100%;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-author-icon {
  width: 15px;
  height: 15px;
  color: var(--primary-blue);
}

/* ==========================================================================
   NEW PAGES RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
  .destinations-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
    gap: 2rem;
  }

  .destination-card {
    height: 420px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .gallery-item.span-2-col {
    grid-column: span 1;
    /* reset span on mobile/tablet */
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {

  .destinations-grid-section,
  .gallery-grid-section,
  .blog-grid-section {
    padding: 4rem 1.5rem;
  }

  .destinations-main-title {
    font-size: 2rem;
  }

  .destination-card {
    height: 380px;
  }

  .destination-card-title {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   CHINA TOUR PAGE STYLING
   ========================================================================== */
.china-tour-section {
  width: 100%;
  background-color: var(--white);
  color: var(--text-dark);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.china-tour-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

/* Left Column: Flyer poster styling */
.tour-poster-card {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
  text-align: center;
  position: sticky;
  top: 2rem;
}

.flyer-brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #b45309;
  margin-bottom: 1.5rem;
}

.flyer-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #78350f;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.flyer-divider {
  width: 80px;
  height: 2px;
  background-color: var(--accent-gold);
  margin: 0 auto 1.5rem auto;
}

.flyer-highlights {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.flyer-highlights li {
  font-size: 0.9rem;
  font-weight: 600;
  color: #451a03;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.flyer-highlights li svg {
  width: 16px;
  height: 16px;
  color: #d97706;
  flex-shrink: 0;
}

.flyer-speaker {
  background-color: var(--white);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #fef3c7;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.speaker-img-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-info {
  display: flex;
  flex-direction: column;
}

.speaker-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speaker-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.flyer-dates-banner {
  background-color: #d97706;
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
}

/* Right Columns: Day-by-Day Itinerary */
.itinerary-day-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.itinerary-day-box {
  background-color: var(--white);
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.itinerary-day-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: rgba(217, 119, 6, 0.15);
}

.day-box-header {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-weight: 700;
}

.day-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 0.15rem;
}

.day-heading {
  font-size: 1.1rem;
  font-family: var(--font-serif);
}

.day-box-content {
  padding: 1.5rem;
}

.day-activities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.day-activities-list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
  position: relative;
  padding-left: 1.5rem;
}

.day-activities-list li::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d97706;
}

/* Responsive Styling for China Tour */
@media (max-width: 1200px) {
  .china-tour-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .tour-poster-card {
    grid-column: span 2;
    position: relative;
    top: 0;
    max-width: 650px;
    margin: 0 auto 2rem auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .china-tour-section {
    padding: 4rem 1.5rem;
  }

  .china-tour-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .tour-poster-card {
    grid-column: span 1;
    padding: 2rem 1.5rem;
  }

  .flyer-title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   QUICK CARDS SECTION STYLING (Before Services)
   ========================================================================== */
.quick-cards-section {
  width: 100%;
  background-color: var(--white);
  padding: 5rem 4rem 2rem 4rem;
  position: relative;
  z-index: 10;
}

.quick-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.quick-card-item {
  background-color: #f4f6fc; /* Soft blue-ish light background matching the image */
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(0, 64, 217, 0.02);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.quick-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 64, 217, 0.05);
  background-color: var(--white);
  border-color: rgba(0, 64, 217, 0.10);
}

.quick-card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #0c3396; /* Dark blue background from the image */
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.quick-card-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.quick-card-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.quick-card-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  flex-grow: 1;
}

.quick-card-link {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s ease, gap 0.3s ease;
}

.quick-card-item:hover .quick-card-link {
  color: var(--primary-blue-hover);
  gap: 0.5rem;
}

/* ==========================================================================
   SERVICES SECTION RESTRUCTURE (8 Cards Grid)
   ========================================================================== */
.services-section-new {
  width: 100%;
  background-color: #f8fafc; /* Very light cool background from the image */
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.services-container-new {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.services-title-new {
  font-family: var(--font-sans);
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.services-subtitle-new {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card-new {
  background-color: var(--white);
  border-radius: 16px;
  padding: 2.25rem 1.75rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.service-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 64, 217, 0.05);
  border-color: rgba(0, 64, 217, 0.15);
}

.service-card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #0c3396; /* Matching dark blue icon box */
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.service-card-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.service-card-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.service-card-text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-card-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s ease, gap 0.3s ease;
}

.service-card-new:hover .service-card-link {
  color: var(--primary-blue-hover);
  gap: 0.5rem;
}

@media (max-width: 992px) {
  .quick-cards-container,
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .quick-cards-section,
  .services-section-new {
    padding: 4rem 1.5rem;
  }
  
  .quick-cards-container,
  .services-grid-new {
    grid-template-columns: 1fr;
  }
  
  .services-title-new {
    font-size: 2rem;
  }
}

/* ==========================================================================
   POPULAR DESTINATIONS RESTRUCTURE (3 Columns Grid)
   ========================================================================== */
.destinations-section-new {
  width: 100%;
  background-color: var(--white);
  padding: 6rem 4rem;
  position: relative;
  z-index: 10;
}

.destinations-container-new {
  max-width: 1200px;
  margin: 0 auto;
}

.destinations-tag-new {
  text-align: center;
  color: var(--primary-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}

.destinations-title-new {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.destinations-subtitle-new {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 4rem auto;
  line-height: 1.5;
}

.destinations-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.destination-card-new {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: block;
}

.destination-card-image-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.destination-card-overlay-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.85) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.75rem;
  box-sizing: border-box;
}

.destination-card-info-new {
  display: flex;
  flex-direction: column;
  color: var(--white);
  max-width: 75%;
}

.destination-card-name-new {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.destination-card-name-new svg {
  width: 18px;
  height: 18px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.destination-card-desc-new {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.destination-card-btn-new {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  transition: background-color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.destination-card-new:hover .destination-card-image-new {
  transform: scale(1.08);
}

.destination-card-new:hover .destination-card-btn-new {
  background-color: var(--primary-blue);
  transform: rotate(-45deg);
}

.destinations-view-all-wrapper {
  text-align: center;
}

.destinations-view-all-link {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, gap 0.3s ease;
  text-decoration: none;
}

.destinations-view-all-link:hover {
  color: var(--primary-blue-hover);
  gap: 0.75rem;
}

@media (max-width: 992px) {
  .quick-cards-container,
  .services-grid-new,
  .destinations-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .quick-cards-section,
  .services-section-new,
  .destinations-section-new {
    padding: 4rem 1.5rem;
  }
  
  .quick-cards-container,
  .services-grid-new,
  .destinations-grid-new {
    grid-template-columns: 1fr;
  }
  
  .services-title-new,
  .destinations-title-new {
    font-size: 2rem;
  }
}

/* ==========================================================================
   WHY CHOOSE US SECTION (Dark Blue Grid layout)
   ========================================================================== */
.why-choose-us-new {
  width: 100%;
  background-color: #0f172a; /* Deep dark blue background */
  padding: 6.5rem 4rem;
  position: relative;
  z-index: 10;
  text-align: center;
}

.why-choose-container-new {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-title-new {
  font-family: var(--font-sans);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-choose-subtitle-new {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #94a3b8; /* Cool gray-blue */
  max-width: 700px;
  margin: 0 auto 5rem auto;
  line-height: 1.5;
}

.why-choose-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 2.5rem; /* 3.5rem row gap, 2.5rem column gap */
}

.why-choose-item-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-choose-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.15); /* Soft transparent blue */
  border: 1px solid rgba(37, 99, 235, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3b82f6; /* Bright blue icon */
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.why-choose-item-new:hover .why-choose-icon-circle {
  transform: scale(1.1);
  background-color: rgba(37, 99, 235, 0.3);
  border-color: #3b82f6;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.why-choose-icon-circle svg {
  width: 28px;
  height: 28px;
}

.why-choose-item-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-choose-item-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
  max-width: 320px;
}

@media (max-width: 992px) {
  .why-choose-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .why-choose-us-new {
    padding: 4rem 1.5rem;
  }
  
  .why-choose-grid-new {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .why-choose-title-new {
    font-size: 2rem;
  }
}

/* ==========================================================================
   ABOUT UQAAB GUIDES SECTION
   ========================================================================== */
.about-uqaab-section {
  width: 100%;
  background-color: var(--white);
  padding: 6.5rem 4rem;
  position: relative;
  z-index: 10;
}

.about-uqaab-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4.5rem;
  align-items: center;
}

.about-uqaab-left {
  text-align: left;
}

.about-uqaab-title {
  font-family: var(--font-sans);
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.75rem;
}

.about-uqaab-desc {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.about-uqaab-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about-stat-card {
  background-color: #f5f8ff; /* Soft blue tint */
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  text-align: left;
  border: 1px solid rgba(37, 99, 235, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.04);
}

.about-stat-number {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 800;
  color: #0040d9; /* Clean blue matching mockup */
  margin-bottom: 0.25rem;
  display: block;
  line-height: 1;
}

.about-stat-label {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: #64748b;
}

/* Right Side: Image Collage Grid */
.about-uqaab-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-collage-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-collage-img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
}

.about-collage-img:hover {
  transform: scale(1.03);
}

/* Collage layout heights */
.about-img-horizontal {
  height: 180px;
}

.about-img-vertical {
  height: 280px;
}

@media (max-width: 992px) {
  .about-uqaab-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .about-uqaab-section {
    padding: 4rem 1.5rem;
  }
  
  .about-uqaab-title {
    font-size: 2rem;
  }
  
  .about-uqaab-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HOW IT WORKS SECTION (Horizontal timeline)
   ========================================================================== */
.how-it-works-section-new {
  width: 100%;
  background-color: #f8fafc; /* Very light slate blue/gray background */
  padding: 6.5rem 4rem;
  position: relative;
  z-index: 10;
  text-align: center;
}

.how-it-works-container-new {
  max-width: 1240px;
  margin: 0 auto;
}

.how-it-works-title-new {
  font-family: var(--font-sans);
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.how-it-works-subtitle-new {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 5rem auto;
  line-height: 1.5;
}

.how-it-works-timeline-new {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Horizontal connecting line */
.how-it-works-timeline-new::before {
  content: '';
  position: absolute;
  top: 50px; /* Center of the 100px circles */
  left: 7%;
  right: 7%;
  height: 3px;
  background-color: #cbd5e1;
  z-index: 1;
}

.step-node-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon-circle-new {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e40af, #0f172a); /* Premium deep blue gradient */
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  position: relative;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(30, 64, 175, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-node-new:hover .step-icon-circle-new {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 25px rgba(30, 64, 175, 0.25);
}

.step-icon-circle-new svg {
  width: 36px;
  height: 36px;
}

.step-number-badge-new {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid #2563eb;
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step-title-new {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  max-width: 160px;
}

.step-desc-new {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  max-width: 160px;
}

@media (max-width: 1100px) {
  .how-it-works-timeline-new::before {
    display: none;
  }
  
  .how-it-works-timeline-new {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
  }
  
  .step-title-new,
  .step-desc-new {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .how-it-works-section-new {
    padding: 4rem 1.5rem;
  }
  
  .how-it-works-timeline-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .how-it-works-timeline-new {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   STICKY BOTTOM ACTION BAR
   ========================================================================== */
.sticky-action-bar {
  position: fixed;
  bottom: -120px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.05);
  border-top: 1px solid #eef2ff;
  padding: 1.25rem 4rem;
  z-index: 999;
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-action-bar.visible {
  bottom: 0;
}

.sticky-action-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.sticky-action-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sticky-action-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  font-family: var(--font-sans);
}

.sticky-action-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
  font-family: var(--font-sans);
}

.sticky-action-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-action-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-action-outline:hover {
  background-color: rgba(0, 64, 217, 0.05);
  transform: translateY(-2px);
}

.btn-action-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-blue);
  border: 1.5px solid var(--primary-blue);
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-action-solid:hover {
  background-color: #0036b5;
  border-color: #0036b5;
  transform: translateY(-2px);
}

.btn-action-icon {
  width: 16px;
  height: 16px;
}

/* Responsive Sticky Bar */
@media (max-width: 992px) {
  .sticky-action-bar {
    padding: 1rem 2rem;
  }
  .sticky-action-title {
    font-size: 1.05rem;
  }
  .sticky-action-subtitle {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .sticky-action-bar {
    padding: 1rem;
  }
  .sticky-action-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .sticky-action-subtitle {
    display: none;
  }
  .sticky-action-buttons {
    width: 100%;
    justify-content: center;
  }
  .btn-action-outline, .btn-action-solid {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   ABOUT PAGE STYLING
   ========================================================================== */
.about-banner-section {
  width: 100%;
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -92px;
  padding-top: 92px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: -80px auto 0 auto;
  width: 100%;
  position: relative;
  z-index: 20;
}

.about-stat-card {
  background-color: #ffffff;
  border: 1px solid #eef2ff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 64, 217, 0.05);
}

.about-stat-number {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 600;
}

.about-story-section {
  padding: 8rem 4rem 6rem 4rem;
  background-color: #ffffff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.story-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef2ff;
}

.about-foundation-section {
  padding: 6rem 4rem;
  background-color: #f8fafc;
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.foundation-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.015);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.foundation-card:hover {
  transform: translateY(-5px);
}

.foundation-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(0, 64, 217, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.foundation-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.foundation-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.foundation-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
}

.about-expertise-section {
  padding: 7rem 4rem;
  background-color: #1b223c;
  color: #ffffff;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.expertise-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.expertise-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.expertise-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-blue);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-icon svg {
  width: 36px;
  height: 36px;
}

.expertise-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.expertise-label {
  font-size: 0.95rem;
  color: #94a3b8;
}

.about-team-section {
  padding: 8rem 4rem;
  background-color: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b223c, #0040d9);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 64, 217, 0.15);
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
  max-width: 220px;
}

/* Responsive adjustments for About Page */
@media (max-width: 1024px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -120px;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .foundation-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 3rem auto 0 auto;
  }
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-banner-section {
    height: 380px;
  }
  .about-banner-section .banner-title {
    font-size: 2.25rem !important;
  }
  .about-stats-grid {
    gap: 1.25rem;
  }
  .about-story-section, .about-foundation-section, .about-expertise-section, .about-team-section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 520px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
    margin-top: -140px;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GALLERY FILTER PILLS & REAL PHOTO ENHANCEMENTS
   ========================================================================== */
.gallery-filter-bar,
.gallery-filter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 auto 3rem auto;
  max-width: 1100px;
  padding: 0 1rem;
}

.gallery-filter-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155 !important;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.gallery-filter-btn:hover {
  background: #e2e8f0;
  color: #0f172a !important;
  border-color: #94a3b8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, #0040d9 0%, #002b99 100%) !important;
  color: #ffffff !important;
  border-color: #0040d9 !important;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 64, 217, 0.35) !important;
  transform: translateY(-2px);
}

.gallery-filter-btn .filter-count {
  background: rgba(0, 0, 0, 0.08);
  color: #475569;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.gallery-filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.gallery-item {
  cursor: pointer;
}

.gallery-item.hidden-by-filter {
  display: none !important;
}

.gallery-item-video-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: #e2c293;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 5;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.gallery-item-video-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.gallery-item .play-hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.9);
  color: #030712;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 6;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.gallery-item:hover .play-hover-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item .play-hover-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 3px;
}

/* ==========================================================================
   4K VIDEO SHOWCASE SECTION (HOME & GALLERY)
   ========================================================================== */
.video-showcase-section {
  position: relative;
  padding: 6.5rem 2rem;
  background: linear-gradient(180deg, #030712 0%, #080e1e 50%, #030712 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.video-showcase-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.video-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.video-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.15);
}

.video-card-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #0b1120;
}

.video-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover .video-card-thumb {
  transform: scale(1.08);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(3,7,18,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .video-card-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(3,7,18,0.85) 100%);
}

.video-play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.92);
  color: #030712;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-card:hover .video-play-btn {
  transform: scale(1.15);
  background: #d4af37;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
}

.video-play-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-left: 3px;
}

.video-tag-duration {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  background: rgba(3, 7, 18, 0.85);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-tag-4k {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: linear-gradient(135deg, #d4af37, #aa7c11);
  color: #030712;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 1px;
}

.video-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.video-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
}

.video-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.video-card:hover .video-card-title {
  color: #e2c293;
}

.video-card-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.25rem;
  flex: 1;
}

.video-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.video-card-cta {
  color: #d4af37;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.3s ease;
}

.video-card:hover .video-card-cta {
  gap: 0.6rem;
  color: #f6e05e;
}

/* ==========================================================================
   VIDEO PLAYER MODAL
   ========================================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(3, 7, 18, 0.94);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 1.5rem;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 1000px;
  background: #030712;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.2);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-dialog {
  transform: scale(1);
}

.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-modal-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-modal-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.video-modal-close-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: rotate(90deg);
}

.video-modal-body {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000000;
}

.video-modal-body iframe,
.video-modal-body video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   PHOTO LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-wrapper {
  position: relative;
  max-width: 1100px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

.lightbox-caption-box {
  margin-top: 1.25rem;
  text-align: center;
  max-width: 700px;
}

.lightbox-caption-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #d4af37;
  letter-spacing: 2px;
  margin-bottom: 0.35rem;
}

.lightbox-caption-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  margin: 0;
}

.lightbox-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.lightbox-close-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: rotate(90deg);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

.lightbox-nav-btn:hover {
  background: rgba(212, 175, 55, 0.9);
  color: #030712;
  border-color: #d4af37;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev-btn {
  left: 2rem;
}

.lightbox-next-btn {
  right: 2rem;
}

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .gallery-filter-wrapper {
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .gallery-filter-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .lightbox-prev-btn {
    left: 0.5rem;
  }
  .lightbox-next-btn {
    right: 0.5rem;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION TOGGLE & CLOSE BUTTONS (DESKTOP HIDDEN)
   ========================================================================== */

/* HIDE BOTH BUTTONS ON DESKTOP BY DEFAULT */
.mobile-menu-toggle,
.mobile-nav-close {
  display: none !important;
}

.mobile-menu-toggle {
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu-toggle:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.45);
  transform: scale(1.05);
}

.mobile-menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  transition: stroke 0.25s ease;
}

.mobile-menu-toggle:hover svg {
  stroke: #d4af37;
}

/* SHOW MOBILE MENU DRAWER & TOGGLE ONLY ON TABLET/MOBILE (<= 992px) */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex !important;
  }

  /* Mobile overlay backdrop */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    backdrop-filter: blur(4px);
  }
  .mobile-nav-overlay.active {
    display: block;
  }

  /* Mobile nav drawer — slide in from right */
  nav.nav-menu,
  .nav-menu {
    visibility: hidden !important;
    opacity: 0 !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    height: 100vh !important;
    width: 280px !important;
    max-width: 85vw !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    background: rgba(3, 7, 18, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.7) !important;
    padding: 5rem 0 2rem 0 !important;
    z-index: 99999 !important;
    transform: translateX(110%) !important;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.38s ease,
                opacity 0.38s ease !important;
    overflow-y: auto !important;
    align-items: stretch !important;
  }

  nav.nav-menu.mobile-active,
  .nav-menu.mobile-active {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  nav.nav-menu a,
  .nav-menu a {
    display: block !important;
    padding: 1rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    transition: all 0.2s ease !important;
    letter-spacing: 0.3px !important;
  }

  nav.nav-menu a:hover,
  nav.nav-menu a.active,
  .nav-menu a:hover,
  .nav-menu a.active {
    color: #d4af37 !important;
    background: rgba(212, 175, 55, 0.07) !important;
    padding-left: 2.5rem !important;
  }

  nav.nav-menu li,
  .nav-menu li {
    display: block !important;
    width: 100% !important;
  }

  /* Close button inside mobile menu drawer */
  .mobile-nav-close {
    display: flex !important;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }

  .mobile-nav-close:hover {
    background: #dc2626;
    border-color: #dc2626;
  }
}

/* ==========================================================================
   ABOUT PREVIEW SECTION — LUXURY DARK GLASSMORPHISM DESIGN
   ========================================================================== */
.about-preview-section {
  position: relative;
  padding: 6.5rem 2rem;
  background: linear-gradient(180deg, #030712 0%, #0a1324 50%, #030712 100%) !important;
  background-color: #030712 !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  z-index: 5;
}

.about-preview-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-preview-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-preview-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-tag {
  color: #d4af37 !important;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.about-description {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 2rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(15, 23, 42, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #d4af37 !important;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75) !important;
  letter-spacing: 0.3px;
}

.about-preview-images {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main-img {
  width: 85%;
  height: 82%;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s ease;
}

.about-accent-img {
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid #030712;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  transition: transform 0.4s ease;
}

.about-preview-images:hover .about-main-img {
  transform: scale(1.02);
}

.about-preview-images:hover .about-accent-img {
  transform: scale(1.05) translateY(-5px);
}

@media (max-width: 992px) {
  .about-preview-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-title {
    font-size: 2.1rem;
  }
  .about-preview-images {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   HERO BACKGROUND — BRIGHTNESS FIX
   ========================================================================== */
.hero-bg-image {
  filter: brightness(0.42) contrast(1.05) !important;
}

/* ==========================================================================
   CONTACT SECTION — LUXURY DARK GLASSMORPHISM THEME
   ========================================================================== */
.contact-section {
  background: linear-gradient(180deg, #030712 0%, #080e1e 50%, #030712 100%) !important;
  background-color: #030712 !important;
  color: #ffffff !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  padding: 6rem 2rem !important;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65) !important;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: flex-start;
}

/* Info card side */
.contact-info-card {
  background: rgba(15, 23, 42, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.info-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 0.75rem;
}

.info-card-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detail-icon {
  width: 20px;
  height: 20px;
  color: #d4af37 !important;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail-item strong {
  font-size: 0.8rem;
  font-weight: 700;
  color: #d4af37 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-detail-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8) !important;
  margin: 0;
  line-height: 1.5;
}

/* Form card side */
.contact-form-card {
  background: rgba(15, 23, 42, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
  padding: 2.5rem 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8) !important;
  margin-bottom: 0.45rem;
  letter-spacing: 0.3px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 10px !important;
  padding: 0.85rem 1rem !important;
  font-family: var(--font-sans) !important;
  font-size: 0.94rem !important;
  color: #ffffff !important;
  outline: none !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
  box-sizing: border-box !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
  background: rgba(255, 255, 255, 0.09) !important;
}

.contact-form select option {
  background: #0f172a !important;
  color: #ffffff !important;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  padding: 0.95rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-top: 0.5rem;
  justify-content: center;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .contact-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 1.25rem !important;
  }
  .contact-form-card,
  .contact-info-card {
    padding: 1.75rem 1.25rem;
  }
}


