/* ============================================
   GH HOLIDAYS BD - MAIN STYLESHEET
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ---------- CSS Variables (Design Tokens) ---------- */
:root {
  --primary: #0a6e3f;
  --primary-light: #12a05c;
  --primary-dark: #064d2c;
  --accent: #f5a623;
  --accent-light: #ffbe57;
  --accent-dark: #d4881a;
  --secondary: #1a3c5e;
  --secondary-light: #2a5a8a;
  --white: #ffffff;
  --off-white: #f8faf9;
  --light-gray: #eef2ef;
  --gray: #6b7280;
  --dark: #0d1f1a;
  --text-dark: #1a2e28;
  --text-medium: #4a5568;
  --text-light: #718096;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.22);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 60px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(10, 110, 63, 0.12), rgba(18, 160, 92, 0.08));
  border: 1px solid rgba(10, 110, 63, 0.2);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
  position: relative;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 620px;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: left 0.4s ease;
  transform: skewX(-15deg);
}

.btn:hover::before {
  left: 120%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(10, 110, 63, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(10, 110, 63, 0.45);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(245, 166, 35, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 16px;
}

/* ---------- Animations ---------- */
@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

#main-header.scrolled {
  background: rgba(10, 30, 20, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar .social-links {
  display: flex;
  gap: 10px;
}

.top-bar .social-links a {
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.top-bar .social-links a:hover {
  background: var(--accent);
  color: var(--white);
}

nav {
  padding: 16px 0;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(10, 110, 63, 0.4);
  transition: var(--transition);
  flex-shrink: 0;
}

.logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.05);
}

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

.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.logo-text .brand-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown>a::after {
  display: none;
}

.nav-dropdown>a .chevron {
  font-size: 10px;
  transition: var(--transition-fast);
}

.nav-dropdown:hover>a .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: rgba(10, 30, 20, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-fast);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  padding-left: 20px;
}

.dropdown-menu a .dm-icon {
  font-size: 16px;
  width: 22px;
  text-align: center;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent)) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
}

.nav-cta:hover {
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.45) !important;
  transform: translateY(-1px);
}

.nav-cta::after {
  display: none !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
  z-index: 1001;
  margin-right: 12px;
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition-fast);
}

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

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 25, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 100px 24px 40px;
  gap: 6px;
  z-index: 1000;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.open {
  display: flex;
  animation: slideDown 0.3s ease;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--accent);
  color: var(--white);
  padding-left: 22px;
}

.mobile-nav .mobile-cta {
  margin-top: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-full);
  text-align: center;
  border-left: none !important;
  font-weight: 600;
  padding: 14px !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  height: auto;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 9rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 8s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 77, 44, 0.88) 0%, rgba(10, 30, 20, 0.78) 40%, rgba(26, 60, 94, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-badge .badge-icon {
  font-size: 16px;
  animation: float 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-title .highlight {
  color: var(--accent);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 560px;
  animation: fadeInUp 0.7s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  animation: fadeInUp 0.7s ease 0.8s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 1s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: var(--font-display);
}

.stat-number span {
  color: var(--accent);
}

.stat-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1.5s both;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: float 1.5s ease-in-out infinite;
}

/* ============================================
   TICKER BAR
   ============================================ */
.ticker-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--secondary));
  padding: 14px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
}

.ticker-label {
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 28px;
}

.ticker-track {
  overflow: hidden;
  flex: 1;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 500;
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.ticker-item .t-icon {
  color: var(--accent);
  font-size: 15px;
}

/* ============================================
   SEARCH BOX
   ============================================ */
.search-section {
  background: var(--off-white);
  padding: 56px 0;
}

.search-box-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.search-tabs {
  display: flex;
  background: var(--light-gray);
  padding: 8px;
  gap: 4px;
  flex-wrap: wrap;
}

.search-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  background: transparent;
  font-family: var(--font-body);
}

.search-tab:hover {
  background: rgba(10, 110, 63, 0.08);
  color: var(--primary);
}

.search-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.search-tab .tab-icon {
  font-size: 18px;
}

.search-form {
  padding: 28px 32px;
}

.search-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  align-items: end;
}

.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.search-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.field-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition-fast);
  background: var(--white);
}

.field-input:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 110, 63, 0.1);
}

.field-input input,
.field-input select {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  flex: 1;
}

.field-input .fi-icon {
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.search-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(10, 110, 63, 0.35);
  white-space: nowrap;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(10, 110, 63, 0.45);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  height: 400px;
}

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

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

.service-card:hover img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 77, 44, 0.95) 0%, rgba(6, 77, 44, 0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: var(--transition);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(0deg, rgba(6, 77, 44, 0.98) 0%, rgba(6, 77, 44, 0.7) 60%, rgba(6, 77, 44, 0.3) 100%);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
  transition: var(--transition);
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.service-card:hover p {
  max-height: 100px;
  opacity: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.service-link .arrow {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link .arrow {
  transform: translateX(6px);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

/* ============================================
   VISA SECTION
   ============================================ */
#visa {
  background: linear-gradient(135deg, var(--off-white) 0%, #e8f5ee 100%);
  position: relative;
  overflow: hidden;
}

#visa::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 110, 63, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.visa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0px;
}

.visa-types {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visa-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border-left: 4px solid transparent;
}

.visa-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary);
}

.visa-card.featured {
  border-left-color: var(--accent);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.05), var(--white));
}

.visa-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.visa-card.student .visa-card-icon {
  background: rgba(79, 143, 255, 0.1);
  color: #4f8fff;
}

.visa-card.omra .visa-card-icon {
  background: rgba(245, 166, 35, 0.1);
  color: var(--accent-dark);
}

.visa-card.work .visa-card-icon {
  background: rgba(10, 110, 63, 0.1);
  color: var(--primary);
}

.visa-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.visa-card-body p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 12px;
}

.visa-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.visa-feature-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(10, 110, 63, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.visa-image-side {
  position: relative;
}

.visa-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visa-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visa-img-main:hover img {
  transform: scale(1.04);
}

.visa-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
}

.visa-float-card:nth-child(2) {
  bottom: -24px;
  left: -36px;
  animation-delay: 0s;
}

.visa-float-card:nth-child(3) {
  top: 24px;
  right: -32px;
  animation-delay: 2s;
}

.vfc-icon {
  font-size: 30px;
}

.vfc-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.vfc-text span {
  font-size: 12px;
  color: var(--text-medium);
}

/* ============================================
   HOTEL SECTION
   ============================================ */
#hotel {
  background: linear-gradient(135deg, #fff9f0 0%, var(--white) 100%);
}

.hotel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0px;
}

.hotel-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hotel-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hotel-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hotel-feature-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  text-align: center;
}

.hotel-feature-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.hotel-feature-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.hotel-feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.hotel-feature-item p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}

.hotel-cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.hotel-cta-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.hotel-cta-box p {
  font-size: 13px;
  opacity: 0.8;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
#packages {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(10, 110, 63, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26, 60, 94, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

#packages .section-title {
  color: var(--white);
}

#packages .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.package-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(245, 166, 35, 0.3);
}

.package-card.featured-pkg {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px rgba(245, 166, 35, 0.15);
}

.pkg-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.package-card:hover .pkg-img img {
  transform: scale(1.08);
}

.pkg-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 30, 20, 0.85);
  backdrop-filter: blur(10px);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.pkg-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.pkg-body {
  padding: 24px;
}

.pkg-destination {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.pkg-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.pkg-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pkg-include-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pkg-price {
  display: flex;
  flex-direction: column;
}

.pkg-price .from {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pkg-price .amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.pkg-price .per {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.pkg-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.pkg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 110, 63, 0.4);
}

/* ============================================
   WHY US SECTION
   ============================================ */
#why-us {
  background: linear-gradient(180deg, #f0f7f4 0%, var(--white) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 0px;
}

.why-image-col {
  position: relative;
}

.why-img-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.why-img-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.why-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 110, 63, 0.15) 0%, transparent 60%);
}

.why-badge-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.why-badge-float.top {
  top: -20px;
  right: -20px;
  animation-delay: 1s;
}

.why-badge-float.bottom {
  bottom: -20px;
  left: -20px;
}

.wbf-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.wbf-label {
  font-size: 13px;
  color: var(--text-medium);
  font-weight: 500;
  margin-top: 2px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}

.why-feature:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: rgba(10, 110, 63, 0.15);
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(10, 110, 63, 0.1), rgba(18, 160, 92, 0.06));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-feature:hover .why-feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transform: scale(1.1);
}

.why-feature-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.why-feature-body p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 400px;
  font-weight: 700;
  color: rgba(10, 110, 63, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border-bottom: 3px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--primary);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  color: rgba(10, 110, 63, 0.08);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  font-family: var(--font-display);
}

.author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}

.author-info span {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
  background: var(--white);
  padding: 52px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}

.partners-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  transition: var(--transition);
  opacity: 0.7;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-medium);
  border: 1px solid var(--light-gray);
}

.partner-logo:hover {
  opacity: 1;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  background: var(--white);
  color: var(--primary);
}

.partner-logo .p-icon {
  font-size: 24px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content h2 span {
  color: var(--accent);
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.cci-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--transition);
}

.cta-contact-item:hover .cci-icon-wrap {
  background: var(--accent);
}

.cci-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.cci-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #060f0c;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--primary-light);
  font-size: 16px;
  line-height: 1;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-links a:hover::before {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.fci-icon {
  font-size: 18px;
  color: var(--primary-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.fci-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.fci-text strong {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom p span {
  color: var(--accent);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.whatsapp-btn {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: pulse-ring 2s ease-in-out infinite;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 30, 20, 0.9);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition-fast);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {

  .visa-grid,
  .why-grid,
  .hotel-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .visa-image-side {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .why-badge-float,
  .visa-float-card {
    display: none;
  }
}

@media (max-width: 768px) {
  #hero {
    padding-top: 100px;
  }

  .top-bar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-contact-info {
    gap: 28px;
  }

  .search-row {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 25px 0;
  }

  .visa-grid {
    margin-top: 0px;
  }

  .hotel-grid {
    margin-top: 0px;
  }

  .why-grid {
    margin-top: 0;
  }

  .cta-section {
    padding: 26px 0;
  }

  footer {
    padding-top: 30px;
  }

  .footer-grid {
    padding-bottom: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .service-card {
    height: 340px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .partners-logos {
    gap: 16px;
  }

  .hero-subtitle {
    margin-bottom: 20px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-bottom: 12px;
  }

  .hotel-features-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    margin-bottom: 22px;
  }
}