/* ==========================================================================
   SKY OCEAN HOLIDAYS - SERVICES PLATFORM STYLESHEET
   Aesthetics: Premium, Modern, Sky & Ocean Themed, Responsive
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-sky: #0099FF;
  --primary-sky-rgb: 0, 153, 255;
  --primary-ocean: #003366;
  --primary-ocean-rgb: 0, 51, 102;
  --light-cyan: #E0F7FF;
  --light-cyan-rgb: 224, 247, 255;
  --accent-gold: #FFD700;
  --accent-gold-hover: #F2C200;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --bg-light: #F4F9FC;
  --bg-white: #FFFFFF;
  --card-bg: rgba(255, 255, 255, 0.95);
  --border-color: #E2E8F0;
  --border-accent: rgba(0, 153, 255, 0.15);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 51, 102, 0.05), 0 4px 6px -2px rgba(0, 51, 102, 0.02);
  --shadow-premium: 0 20px 30px -5px rgba(0, 51, 102, 0.08), 0 10px 15px -5px rgba(0, 51, 102, 0.04);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-ocean);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-sky);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

ul {
  list-style: none;
}

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

/* Button & UI Component Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--accent-gold);
  color: var(--primary-ocean);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.35);
}

.btn-secondary {
  background-color: var(--primary-sky);
  color: white;
}

.btn-secondary:hover {
  background-color: #0088EE;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 153, 255, 0.25);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary-sky);
  color: var(--primary-sky);
}

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

.btn-ocean {
  background-color: var(--primary-ocean);
  color: white;
}

.btn-ocean:hover {
  background-color: #002244;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.25);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  font-weight: bold;
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

header.scrolled {
  background-color: rgba(0, 51, 102, 0.98);
  box-shadow: var(--shadow-md);
}

header.scrolled .logo h1 {
  color: white;
}
header.scrolled .logo p {
  color: var(--primary-sky);
}
header.scrolled .nav-links a {
  color: white;
}
header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active {
  color: var(--accent-gold);
}
header.scrolled .menu-toggle span {
  background-color: white;
}

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

.logo {
  display: flex;
  flex-direction: column;
}

.logo h1 {
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: var(--primary-ocean);
  line-height: 1.1;
  text-shadow: none;
}

.logo p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-sky);
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary-ocean);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-sky);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-sky);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--primary-ocean);
  border-radius: 5px;
  transition: var(--transition-smooth);
}

/* Wave Design Section Divider */
.wave-container {
  position: relative;
  width: 100%;
  height: 80px;
  margin-top: -80px;
  z-index: 10;
  overflow: hidden;
  line-height: 0;
}

.wave-container svg {
  width: 100%;
  height: 80px;
  fill: var(--bg-light);
}

.wave-container.footer-wave svg {
  fill: var(--primary-ocean);
}

/* Page Intro/Hero Areas */
.hero {
  position: relative;
  padding: 180px 2rem 140px;
  background: linear-gradient(135deg, rgba(0, 153, 255, 0.05), rgba(0, 51, 102, 0.15)), 
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 51, 102, 0.7) 30%, rgba(0, 153, 255, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  animation: fadeInDown 0.8s ease;
}

.hero h2 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-desc {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* Page Section Wrappers */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-bg-white {
  background-color: var(--bg-white);
}

.section-bg-light {
  background-color: var(--bg-light);
}

.section-bg-gradient {
  background: linear-gradient(180deg, var(--bg-light) 0%, rgba(224, 247, 255, 0.4) 100%);
}

.section-header {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-sky);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary-ocean);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-sky), var(--primary-ocean));
  border-radius: 2px;
}

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

/* Inner Page Hero Header */
.page-hero {
  padding: 140px 2rem 80px;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.95), rgba(0, 153, 255, 0.8)),
              url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
  background-blend-mode: multiply;
  color: white;
  text-align: center;
}

.page-hero-title {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.breadcrumbs a {
  color: var(--accent-gold);
}

.breadcrumbs span {
  color: white;
}

/* Stat Counters Component */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-sky);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-sky);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-ocean);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Feature/Grid Layout Section */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--border-accent);
}

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

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.feature-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-sky);
  color: white;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}

.feature-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--primary-ocean);
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
  margin-top: auto;
}

.feature-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-ocean);
}

.feature-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Testimonials Section */
.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 1.5rem 0.5rem;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: var(--transition-smooth);
}

.testimonial-rating {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--primary-ocean);
  line-height: 1.7;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-cyan);
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary-ocean);
  margin-bottom: 0.2rem;
}

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

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonial-dot.active {
  background-color: var(--primary-sky);
  width: 25px;
  border-radius: 5px;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-intro-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.about-intro-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.about-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}

.about-img-box:nth-child(2) {
  margin-top: 30px;
}

.about-img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Vision/Mission Cards */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-card {
  background: var(--bg-white);
  border-left: 6px solid var(--primary-sky);
  padding: 3rem;
  border-radius: 0 20px 20px 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.vision-card {
  background: var(--bg-white);
  border-left: 6px solid var(--primary-ocean);
  padding: 3rem;
  border-radius: 0 20px 20px 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.mission-card h3, .vision-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* Process Timeline Section */
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 2.5rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--light-cyan);
  border-radius: 2px;
}

.process-step {
  position: relative;
  margin-bottom: 3.5rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary-sky);
  border: 4px solid var(--bg-light);
  box-shadow: 0 0 0 4px var(--light-cyan);
  transition: var(--transition-smooth);
}

.process-step:hover::before {
  background-color: var(--primary-ocean);
  transform: scale(1.2);
}

.process-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 153, 255, 0.15);
  position: absolute;
  right: 0;
  top: -15px;
  line-height: 1;
}

.process-content {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.process-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-ocean);
}

.process-content p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--border-accent);
}

.team-img-wrapper {
  height: 260px;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.15rem;
  color: var(--primary-ocean);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--primary-sky);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   SERVICES & PACKAGES PAGE STYLES
   ========================================================================== */

/* Search and Filters */
.filters-wrapper {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  max-width: 1200px;
  margin: -50px auto 3rem;
  position: relative;
  z-index: 20;
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: center;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
  background-color: var(--bg-light);
}

.search-box input:focus {
  border-color: var(--primary-sky);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.1);
}

.search-box::before {
  content: '🔍';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.5;
}

.filter-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-tab {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.filter-tab:hover,
.filter-tab.active {
  background-color: var(--primary-sky);
  color: white;
  border-color: var(--primary-sky);
}

/* Services Page Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--border-accent);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.service-country {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.flag-icon {
  font-size: 2rem;
  line-height: 1;
}

.country-name {
  font-size: 1.3rem;
  color: var(--primary-ocean);
  font-weight: 700;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-sky);
}

.service-type-badge {
  background-color: var(--light-cyan);
  color: var(--primary-ocean);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  align-self: flex-start;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.service-details {
  border-top: 1px solid var(--border-color);
  padding: 1.2rem 0;
  margin-bottom: auto;
}

.service-detail-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.service-detail-item:last-child {
  margin-bottom: 0;
}

.detail-label {
  font-weight: 600;
  color: var(--text-dark);
}

.detail-val {
  color: var(--text-muted);
}

.reqs-trigger {
  width: 100%;
  background: var(--bg-light);
  border: 1px dashed var(--primary-sky);
  padding: 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-ocean);
  cursor: pointer;
  text-align: center;
  margin-bottom: 1.2rem;
  transition: var(--transition-smooth);
}

.reqs-trigger:hover {
  background: var(--light-cyan);
  border-style: solid;
}

.reqs-list-dropdown {
  display: none;
  font-size: 0.8rem;
  background: var(--bg-light);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--border-color);
}

.reqs-list-dropdown.active {
  display: block;
}

.reqs-list-dropdown li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.reqs-list-dropdown li:last-child {
  margin-bottom: 0;
}

.reqs-list-dropdown li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-sky);
  font-weight: bold;
}

.service-card .btn {
  width: 100%;
}

/* Compare Visas Matrix Section */
.comparison-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.comparison-scroll-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.comparison-table th, 
.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--primary-ocean);
  color: white;
  font-family: var(--font-heading);
  font-weight: 600;
}

.comparison-table tr:hover td {
  background-color: rgba(224, 247, 255, 0.2);
}

/* Express & Special Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 3rem 2.2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

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

.package-card.featured-pkg {
  border: 2px solid var(--primary-sky);
  background: linear-gradient(180deg, var(--bg-white) 0%, rgba(224, 247, 255, 0.2) 100%);
}

.package-ribbon {
  position: absolute;
  top: 25px;
  right: -35px;
  background-color: var(--accent-gold);
  color: var(--primary-ocean);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.4rem 2.5rem;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-icon {
  font-size: 3rem;
  color: var(--primary-sky);
  margin-bottom: 1.5rem;
}

.package-name {
  font-size: 1.5rem;
  color: var(--primary-ocean);
  margin-bottom: 0.8rem;
}

.package-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-ocean);
  margin-bottom: 1.5rem;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-benefits {
  margin-bottom: 2.5rem;
  text-align: left;
}

.package-benefits li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--bg-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-benefits li::before {
  content: '✓';
  color: #20BA5A;
  font-weight: bold;
}

.package-card .btn {
  width: 100%;
}

/* ==========================================================================
   QUERY / APPLICATION PAGE STYLES
   ========================================================================== */
.query-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.glass-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--primary-ocean);
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  background-color: var(--bg-light);
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--primary-sky);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(0, 153, 255, 0.1);
}

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

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

.form-submit-container {
  margin-top: 2rem;
}

.form-submit-container .btn {
  width: 100%;
  padding: 1rem;
}

/* Pricing Indicator Panel */
.pricing-calculator-card {
  background: linear-gradient(135deg, var(--primary-ocean), #002244);
  color: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 120px;
}

.calc-title {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.8rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.calc-row.total-row {
  border-top: 1px dashed rgba(255,255,255,0.2);
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  margin-bottom: 0;
  opacity: 1;
}

.calc-total-label {
  font-weight: 700;
  font-size: 1.15rem;
  color: white;
}

.calc-total-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.calc-trust-indicators {
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.2rem;
  font-size: 0.8rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.6rem;
}

.trust-item:last-child {
  margin-bottom: 0;
}

.trust-icon {
  color: var(--accent-gold);
}

/* Alert Boxes */
.alert {
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  display: none;
  align-items: center;
  gap: 12px;
  animation: fadeIn 0.4s ease;
}

.alert-success {
  background-color: #D4EDDA;
  color: #155724;
  border-left: 5px solid #28A745;
  display: flex;
}

.alert-error {
  background-color: #F8D7DA;
  color: #721C24;
  border-left: 5px solid #DC3545;
  display: flex;
}

/* FAQ Accordion Component */
.faq-container {
  max-width: 800px;
  margin: 4rem auto 0;
}

.faq-item {
  background: var(--bg-white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: var(--primary-ocean);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary-sky);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  padding: 1rem 1.5rem 1.5rem;
  max-height: 200px;
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card-info {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-info-list {
  margin: 2rem 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.contact-icon-box {
  width: 45px;
  height: 45px;
  background-color: var(--light-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-sky);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text-box h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: var(--primary-ocean);
}

.contact-text-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.whatsapp-widget {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.whatsapp-widget h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.whatsapp-widget p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1.2rem;
}

/* Map frame */
.map-card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 3rem;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Social links list */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-ocean);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary-sky);
  color: white;
  transform: scale(1.1);
  border-color: var(--primary-sky);
}

/* Response Indicator */
.response-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #20BA5A;
  background-color: #EAFDF3;
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  margin-top: 1rem;
}

.response-indicator::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #20BA5A;
  animation: pulse 1.5s infinite;
}

/* ==========================================================================
   ADMIN PANEL STYLES
   ========================================================================== */
.admin-dashboard {
  max-width: 1200px;
  margin: 120px auto 4rem;
  padding: 0 2rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.metric-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-info h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.metric-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-ocean);
  font-family: var(--font-heading);
  line-height: 1;
}

.metric-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.metric-blue {
  background-color: rgba(0, 153, 255, 0.1);
  color: var(--primary-sky);
}

.metric-gold {
  background-color: rgba(255, 215, 0, 0.15);
  color: var(--accent-gold-hover);
}

.metric-green {
  background-color: rgba(32, 186, 90, 0.1);
  color: #20BA5A;
}

/* Admin Operations Panel */
.admin-ops {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.admin-ops-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.admin-search {
  max-width: 350px;
  width: 100%;
}

.admin-table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 900px;
}

.admin-table th,
.admin-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}

.admin-table th {
  font-weight: 600;
  color: var(--primary-ocean);
  background-color: var(--bg-light);
}

.admin-table tbody tr:hover {
  background-color: rgba(224, 247, 255, 0.15);
}

.badge-status {
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
}

.badge-pending {
  background-color: rgba(255, 215, 0, 0.15);
  color: #B28900;
}

.badge-processed {
  background-color: rgba(32, 186, 90, 0.1);
  color: #20BA5A;
}

.btn-status-toggle {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 6px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--primary-ocean);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-status-toggle:hover {
  background-color: var(--primary-sky);
  color: white;
  border-color: var(--primary-sky);
}

.btn-status-toggle.processed-btn {
  background-color: #EAFDF3;
  border-color: rgba(32, 186, 90, 0.2);
  color: #20BA5A;
}

.btn-status-toggle.processed-btn:hover {
  background-color: #20BA5A;
  color: white;
}

.notes-cell {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
footer {
  background-color: var(--primary-ocean);
  color: white;
  padding: 6rem 2rem 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer-column h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--primary-sky);
  border-radius: 2px;
}

.footer-about p {
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.footer-contact a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent-gold);
}

.footer-contact li.footer-sub-office {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: -0.4rem;
  margin-bottom: 0.8rem;
}

.footer-contact-icon {
  color: var(--primary-sky);
  margin-top: 4px;
}

.footer-newsletter p {
  opacity: 0.8;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: 5px;
  border-radius: 30px;
  background-color: rgba(255,255,255,0.1);
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.15);
}

.newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding: 0.6rem 1rem;
  width: 100%;
  font-family: var(--font-body);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form button {
  background-color: var(--primary-sky);
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-form button:hover {
  background-color: white;
  color: var(--primary-ocean);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 186, 90, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(32, 186, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 186, 90, 0);
  }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .featured-grid, 
  .services-grid, 
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .query-layout-grid, 
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .pricing-calculator-card {
    position: static;
  }
  
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-intro-images {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 60px);
    background-color: var(--primary-ocean);
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    color: white;
    width: 100%;
    font-size: 1.1rem;
  }
  
  .nav-links .btn {
    width: 100%;
    margin-top: 1rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: white;
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: white;
  }
  
  .filters-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: -30px;
    padding: 1.5rem;
  }
  
  .filter-tabs {
    justify-content: flex-start;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    gap: 1rem;
  }
  
  .section {
    padding: 4rem 1.5rem;
  }
  
  .mission-vision-grid, 
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .admin-metrics {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .admin-ops-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .admin-search {
    max-width: none;
  }
}

@media (max-width: 580px) {
  .featured-grid, 
  .services-grid, 
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
