/* =============================================================================
   AL AHLAM TOURS - COMPLETE STYLESHEET
   ============================================================================= */

/* ===== GLOBAL STYLES & VARIABLES ===== */
:root {
  --bg: #edf2f7;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #5b6a79;
  --brand: #0f766e;
  --accent: #0d9488;
  --border: #e2e8f0;
  --max: 1380px;
  --card-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
}



/* ========== ========== */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

.main-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 1.6rem;
}


@keyframes subtleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes gradientFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

#siteHeader {
  background: rgba(255, 255, 255, 0.65);   /* soft transparency */
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(14px);            /* smooth blur matching mobile */
}

#siteHeader.compact {
  padding: 0.3rem 0;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#siteHeader.compact .hm-logo {
  height: 38px;
}

.hm-nav {
  display: flex;
  gap: 0.5rem;
  background: rgba(15, 118, 110, 0.05);
  padding: 0.4rem;
  border-radius: 999px;
  justify-self: center;
}

.hm-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: all 0.2s ease;
  font-weight: 500;
  white-space: nowrap;
}

.hm-nav a.active,
.hm-nav a:hover {
  background: #ffffff;
  color: var(--brand);
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.15);
}

.hm-social {
  display: flex;
  gap: 0.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--text);
  font-size: 0.8rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--brand);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}


/* Logo area inside header */
.logo-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

/* Circle that controls logo size */
.logo-circle {
  width: 36px;   /* <– adjust size here (try 32–40) */
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;  /* you missed ; earlier */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* keep image inside circle */
}

/* Image inside the circle */
.logo-circle img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  display: block;
}

/* Text part */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
}

.logo-text span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
}



/* ===== MAIN CONTENT & SPACING ===== */
main {
  padding-top: 80px; /* Space for fixed header */
}

/* ===== REUSABLE COMPONENTS ===== */
/* Section Headers */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: subtleBounce 3s ease-in-out infinite;
}

.section-pre-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  background: rgba(15, 118, 110, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(15, 118, 110, 0.2);
}

.section-pre-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.section-pre-title:hover {
  background: rgba(15, 118, 110, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.15);
}

.section-pre-title:hover::before {
  left: 100%;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientFlow 4s ease infinite;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Form Elements */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin-bottom: 0.5rem;
}

.field label {
  font-size: 0.6rem;
  font-weight: 600;
  color: #0f172a;
}

.field input,
.field select,
.field textarea {
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 0.45rem;
  padding: 0.45rem 0.55rem;
  font-size: 0.68rem;
  outline: none;
  background: #fff;
  transition: 0.12s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.08);
}

.field textarea {
  min-height: 70px;
  resize: vertical;
}

/* Buttons */
.btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  color: #065f46;
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(15, 118, 110, 0.4);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
  background: #0f766e;
  color: #fff;
  font-size: 0.68rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.6rem;
  text-decoration: none;
  display: inline-block;
  transition: 0.12s ease-out;
}

.btn-whatsapp:hover {
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.4);
  transform: translateY(-1px);
}

.btn-map {
  background: rgba(15, 118, 110, 0.08);
  color: #0f172a;
  font-size: 0.68rem;
  padding: 0.5rem 0.85rem;
  border-radius: 0.6rem;
  text-decoration: none;
  display: inline-block;
  transition: 0.12s ease-out;
}

.btn-map:hover {
  background: rgba(15, 118, 110, 0.16);
  transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  border-radius: 24px;
  overflow: hidden;
  margin: 20px 20px 0;
  background:
  linear-gradient(140deg, rgba(15, 118, 110, 0.40) 0%, rgba(1, 18, 24, 0.30) 60%),
  url('Images/Hero/Hero00.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}


.hero-content {
  position: relative;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
  max-width: 700px;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PACKAGES SECTION ===== */
/* Filter Chips */
.chip-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.chip {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.1), transparent);
  transition: left 0.5s;
}

.chip:hover::before {
  left: 100%;
}

.chip.active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
}

.chip:hover:not(.active) {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

.subchips {
  display: none;
  animation: fadeIn 0.3s ease;
}

.subchips.show {
  display: flex;
}

/* Packages Grid & Cards */
.grid {
  display: grid;
  gap: 1.5rem;
  animation: fadeIn 0.5s ease;
}

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

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

@media (min-width: 1280px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--surface);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-img {
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
  background: linear-gradient(135deg, #e2e8f0 0%, #f8fafc 100%);
  position: relative;
}

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

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



.card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0.2rem 0 0;
  color: var(--text);
}

.stars {
  color: #f97316;
  font-weight: 600;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: auto;
}

.input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 10px;
  background: #ffffff;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.helper {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

/* ===== CLIENTS SECTION ===== */
#clients .wrapper {
  max-width: 1180px;
  margin: 0 auto;
}

#clients .client-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

#clients .client-feature {
  background: linear-gradient(140deg, #fff, rgba(240, 254, 252, 0.4));
  border: 1px solid rgba(15, 118, 110, 0.06);
  border-radius: 1rem;
  padding: 1rem 1rem 0.9rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(26px);
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border 0.18s ease;
}

#clients .client-feature.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

#clients .client-feature.show:hover {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 118, 110, 0.25);
  transform: translateY(-6px);
}

#clients .client-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f0fdfa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.15);
}

#clients .client-logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
  opacity: 0.9;
  transition: 0.2s;
}

#clients .client-feature:hover .client-logo img {
  opacity: 1;
  transform: scale(1.05);
}

#clients .title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

#clients .client-circle {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.09);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0f766e;
}

#clients .client-feature strong {
  font-size: 0.9rem;
  color: var(--text);
}

#clients .client-feature small {
  color: var(--muted);
  font-size: 0.68rem;
  display: block;
  margin-bottom: 0.3rem;
}

#clients .client-feature p {
  font-size: 0.7rem;
  color: var(--muted);
}

/* ===== CORPORATE SECTION ===== */
#corporate {
  padding: 5rem 0 1.6rem;
  background: transparent;
  margin-bottom: 3rem;
}

#corporate .section-header {
  max-width: var(--max);
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}

.corp-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.9fr;
  gap: 1.4rem;
  align-items: stretch;
}

.corp-left {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  transform: translateY(0);                /* base position */
  transition: transform 0.3s ease-out;     /* smooth both ways */
}

/* Background image layer (zoomable) */
.corp-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/3184306/pexels-photo-3184306.jpeg?auto=compress&cs=tinysrgb&w=1200")
             center/110% 110% no-repeat;
  transform: scale(1);
  transition: transform 0.6s ease-out;
  z-index: 0;
}

/* Gradient overlay */
.corp-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 118, 110, 0.45) 100%
  );
  z-index: 1;
}

/* Hover effects */
.corp-left:hover {
  transform: translateY(-5px);
}

.corp-left:hover::after {
  transform: scale(1.06);
}

/* Content */
.corp-left-content {
  position: relative;
  z-index: 2;
  padding: 1.8rem 1.6rem 2.2rem; /* a bit more bottom padding */
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  /* height: 100%;  ⬅️ remove this */
  /* justify-content: space-between; ⬅️ remove this */
  justify-content: flex-start; /* optional; or just omit */
}



.corp-badge {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
  align-items: center;
  gap: 0.3rem;
}

.corp-left p {
  margin: 0;
  font-size: 0.72rem;
  max-width: 450px;
  color: rgba(241, 245, 249, 0.92);
}

.corp-left ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.68rem;
  line-height: 1.5;
}

.corp-sla {
  margin-top: 0.5rem;
  font-size: 0.65rem;
  color: #e2e8f0;
  font-weight: 500;
}

.corp-trust {
  font-size: 0.65rem;
  color: rgba(226, 232, 240, 0.8);
  margin-top: 0.2rem;
}

.corp-stats-line {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

.corp-statbox {
  background: rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(241, 245, 249, 0.08);
  border-radius: 0.7rem;
  padding: 0.3rem 0.6rem;
  min-width: 110px;
  box-shadow: 0 0 15px rgba(15, 118, 110, 0.3);
  transition: all 0.3s ease;
}

.corp-statbox-title {
  font-size: 0.55rem;
  opacity: 0.8;
}

.corp-statbox-value {
  font-weight: 700;
  font-size: 0.8rem;
}

.corp-form {
  background: linear-gradient(140deg, #ffffff, rgba(240, 254, 252, 0.4));
  border: 1px solid rgba(15, 118, 110, 0.06);
  border-radius: 1rem;
  padding: 1rem 0.95rem 1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transition: all 0.15s ease-out;
}

.corp-form:hover {
  border-color: rgba(15, 118, 110, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

/* Corp Form Message - Updated to match your theme */
.corp-form-message {
  padding: 16px;
  margin: 20px 0;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.corp-form-message.success {
  color: var(--brand);
  background: linear-gradient(140deg, #f0fefc, rgba(240, 254, 252, 0.6));
  border-color: var(--brand);
  box-shadow: 0 4px 20px rgba(15, 118, 110, 0.1);
}

.corp-form-message.error {
  color: #b91c1c;
  background: linear-gradient(140deg, #fef2f2, rgba(254, 242, 242, 0.6));
  border-color: #ef4444;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.1);
}

/* Modal Styles - Matches Your Theme */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: linear-gradient(140deg, #ffffff, rgba(240, 254, 252, 0.8));
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 20px 20px 0 0;
}

.modal-icon {
  font-size: 3.5rem;
  color: var(--brand);
  margin-bottom: 1rem;
  font-weight: bold;
}

.modal-content h3 {
  color: var(--text);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.modal-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-ok-btn {
  background: var(--brand);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.3);
}

.modal-ok-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

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

.modal-content {
  animation: modalFadeIn 0.4s ease-out;
}



/* Optional: Add some animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.corp-form-message {
  animation: slideDown 0.3s ease-out;
}

.corp-form h3 {
  margin-top: 0;
  font-size: 0.83rem;
  margin-bottom: 0.6rem;
}

.corp-form button {
  width: 100%;
  background: #0f766e;
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  padding: 0.48rem 1rem;
  font-size: 0.7rem;
  cursor: pointer;
  transition: 0.12s ease-out;
}

.corp-form button:hover {
  box-shadow: 0 10px 25px rgba(15, 118, 110, 0.35);
  transform: translateY(-1px);
}

#contact {
  background: transparent;
  min-height: 95vh;
  padding-bottom: 3.5rem;  /* 🔹 increase gap below contact */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-card {
  background: linear-gradient(140deg, #ffffff, rgba(240, 254, 252, 0.4));
  border: 1px solid rgba(15, 118, 110, 0.06); /* Extremely light teal border */
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08); /* Subtle elevation shadow */
  transition: all 0.18s ease-out;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.25); /* Stronger teal border on hover */
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12); /* Enhanced shadow on hover */
}

.contact-card h3 {
  margin-top: 0;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  align-items: flex-start;
}

.contact-label {
  font-size: 0.68rem;
  color: var(--muted);
  width: 120px;
  flex: 0 0 120px;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.contact-pill {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-value {
  font-size: 0.75rem;
  font-weight: 600;
}

.contact-value a {
  text-decoration: none;
  color: var(--brand);
}

.contact-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}

/* ===== ABOUT SECTION ===== */
#about {
  background: transparent;
  padding-top: 10rem;
  padding-bottom: 10.5rem;
  min-height: 85vh;  
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.about-card {
  background: linear-gradient(140deg, #ffffff, rgba(240, 254, 252, 0.4));
  border-radius: 1rem;
  padding: 1.2rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  cursor: pointer;
  border: 1px solid rgba(15, 118, 110, 0.06);
  transition: all 0.12s ease-out;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 118, 110, 0.18);
}

.about-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.about-card-title button {
  background: none;
  border: none;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.85rem;
  text-align: left;
  flex: 1;
  cursor: pointer;
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.about-card.open .about-card-title button span.label {
  border-bottom: 1px solid rgba(15, 118, 110, 0.35);
  color: #0f766e;
}

.about-toggle-icon {
  font-size: 0.9rem;
  color: #94a3b8;
  transition: 0.1s ease-out;
}

.about-card.open .about-toggle-icon {
  transform: rotate(90deg);
  color: #0f766e;
}

.about-content {
  display: none;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: #334155;
  line-height: 1.6;
}

.about-card.open .about-content {
  display: block;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== FOOTER ===== */
.footer-match {
  background: linear-gradient(145deg, #123633, #0a0e0e);
  color: #e6f6f3;
  padding: 1.2rem 1.0rem 0.70rem;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.f-glow-line {
  height: 2px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 1.5rem;
  background: radial-gradient(circle, rgba(174, 252, 233, 0.9) 0%, rgba(174, 252, 233, 0) 70%);
  opacity: 0.8;
}

.f-inner {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.f-about {
  flex: 1 1 460px;
}

.f-contact {
  flex: 0 0 240px;
  text-align: right;
}

.f-inner h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-weight: 600;
}

.f-inner p {
  margin: 0.25rem 0;
  font-size: 0.78rem;
  color: rgba(230, 246, 243, 0.8);
}

.f-inner a {
  color: #aefce9;
  text-decoration: none;
}

.f-inner a:hover {
  text-decoration: underline;
}

.f-phone {
  font-weight: 600;
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.f-social {
  margin-top: 0.7rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
}

.f-social a {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(6, 10, 10, 0.25);
  border: 1px solid rgba(174, 252, 233, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6f6f3;
  font-size: 0.7rem;
}

.f-social a:hover {
  background: rgba(174, 252, 233, 0.25);
  color: #0a0e0e;
}

.f-bottom {
  max-width: 1180px;
  margin: 1.3rem auto 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 0.65rem;
}

/* ===== MOBILE STYLES (from Mobile.css) ===== */
@media (max-width: 768px)  {
  /* Hide desktop header on mobile */
  #siteHeader {
    display: none !important;
    position: static !important;
  }
  
  body {
    padding-top: 0 !important;
  }

  main {
    padding-top: 0 !important;
  }
  
  /* Hero adjustments */
  .hero {
    margin: 0 !important;
    border-radius: 0;
    padding-top: 40px !important;
    height: 100vh !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .hero-content {
    padding-top: 20px !important;
    margin-top: 0 !important;
  }

  /* Buttons stack nicely on mobile */
  .btn-row {
    flex-direction: column;
    align-items: center;
    margin-top: 100px !important;
  }

  .btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .section {
    padding: 3rem 1rem;
  }


  /* ===== MOBILE BOTTOM NAV BAR ===== */
  #mobileBottomNav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transform: translate(-50%, 0);
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.7rem 1rem;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    z-index: 999;
    width: 90%;
    max-width: 450px;
    opacity: 0;
    pointer-events: none;
    transition:
    opacity 0.6s ease,
    transform 0.35s ease,
    width 0.35s ease,
    padding 0.35s ease,
    right 0.35s ease,
    left 0.35s ease;
  }

  #mobileBottomNav.show {
    opacity: 1;
    pointer-events: auto;
    animation: bounceUp 0.5s ease;
  }

  /* Individual link styling */
  #mobileBottomNav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 0.7rem;
    border-radius: 999px;
    flex: 1;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
  }

  #mobileBottomNav a.active {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: #fff;
    box-shadow: 0 5px 15px rgba(15, 118, 110, 0.3);
  }
}

/* BottomNav Transition */


#mobileBottomNav a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobileBottomNav a.active {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 5px 15px rgba(15, 118, 110, 0.3);
}

  /* --- TOGGLE BUTTON INSIDE MOBILE BOTTOM NAV --- */
  #mobileBottomNav .nav-toggle {
    flex: 0 0 auto;
    margin-left: 0.4rem;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 118, 110, 0.14); /* soft brand tint */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    line-height: 1;        /* 🔥 add this */
    transition: all 0.25s ease;
  }

  #mobileBottomNav .nav-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.45);
  }

  #mobileBottomNav .nav-toggle:hover {
    background: rgba(15, 118, 110, 0.22);
    transform: translateY(-1px);
  }

/* --- COLLAPSED STATE: dock to right as a pill with only the toggle visible --- */
#mobileBottomNav.collapsed {
  left: auto;
  right: 20px;
  top: auto;
  bottom: 20px;
  transform: translate(0, 0);
  width: 30px;
  height: 30px;
  padding: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.1);
  justify-content: center;      /* center contents inside pill */
}

/* Hide the links when collapsed (we don't have .links wrapper, so target <a>) */
#mobileBottomNav.collapsed a {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  width: 0;
  padding: 0;
  margin: 0;
}

/* Style the toggle button in collapsed mode */
#mobileBottomNav.collapsed .nav-toggle {
  margin-left: 0;
  background: #0f766e;
  color: #ffffff;
  width: 32px;      /* keep constant size */
  height: 32px;     /* keep constant size */
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.4);
}

/* Hover state for toggle while collapsed */
#mobileBottomNav.collapsed .nav-toggle:hover {
  background: #0d9488;
  transform: scale(1.05);
}

/* Make sure the collapsed pill remains easy to tap */
#mobileBottomNav.collapsed::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  z-index: 905;
  pointer-events: none;
}

/* Ultra-small devices: keep it compact when expanded */
@media (max-width: 470px) {
  #mobileBottomNav {
    width: 90%;
    padding: 0.8rem 0.5rem;
    bottom: 20px;
  }

  #mobileBottomNav a {
    font-size: 0.75rem;
    padding: 0.4rem 0.3rem;
  }
}



/* ===== ELEGANT MOBILE SELECT STYLES (NATIONALITY ONLY) ===== */
@media (max-width: 768px) {
  /* Elegant select dropdown - ONLY for package cards */
  .card .input[type="select"],
  .card select.input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding: 14px 52px 14px 18px !important;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    font-size: 16px;
    height: 56px;
    background-color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    color: #0f172a;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    width: 100%;
  }

  /* Hover state - ONLY for package cards */
  .card .input[type="select"]:hover,
  .card select.input:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
  }

  /* Focus state - elegant - ONLY for package cards */
  .card .input[type="select"]:focus,
  .card select.input:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12), 
                0 6px 24px rgba(15, 23, 42, 0.1);
    outline: none;
    transform: translateY(-2px);
  }

  /* Active state - ONLY for package cards */
  .card .input[type="select"]:active,
  .card select.input:active {
    transform: translateY(0);
  }

  /* Elegant options styling - ONLY for package cards */
  .card .input[type="select"] option,
  .card select.input option {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 500;
    background: #ffffff;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
  }

  /* Make form fields elegant - ONLY in package cards */
  .card .field input,
  .card .field select,
  .card .field textarea {
    min-height: 56px;
    font-size: 16px;
    padding: 16px 20px;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  }

  /* Elegant focus for inputs - ONLY in package cards */
  .card .field input:focus,
  .card .field textarea:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12), 
                0 6px 24px rgba(15, 23, 42, 0.1);
    outline: none;
    transform: translateY(-2px);
  }

  /* Better spacing - ONLY in package cards */
  .card .field {
    margin-bottom: 1.5rem;
  }

  /* Label styling to match - ONLY in package cards */
  .card .field label {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
}

/* Mobile-only animations */
@keyframes shine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

@keyframes bounceUp {
  0% {
    transform: translate(-50%, 30px);  /* centered, below */
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -10px); /* centered, small bounce up */
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0);     /* centered, final */
    opacity: 1;
  }
}


@media (max-width: 1050px) {
  .corp-wrap {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .f-contact {
    text-align: left;
  }
  
  .f-social {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  #clients .client-logo {
    width: 60px;
    height: 60px;
  }
}

/* ===== ERROR HANDLING & FALLBACKS ===== */
.card-img img {
  object-fit: cover;
}

.card-img img[src=""] {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}




/* ========= CORPORATE SERVICES CARDS (Same as package cards) ========= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.service-card {
    background: linear-gradient(140deg, #ffffff, rgba(240, 254, 252, 0.4));
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    align-items; center
    align-text; center
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: var(--text);
    align-text: center;
}

.service-features {
    list-style: none;
    margin-top: auto;
    padding-left: 0;
    width: 100%;
}

.service-features li {
    padding: 0.4rem 0;
    color: var(--muted);
    font-size: 0.85rem;
    position: relative;
    padding-left: 0rem;
    line-height: 1.5;
    display: flex;
    justify-content: center;
     align-items: center;
    
}

.service-features li::before {
    content: '✓';
    color: var(--brand);
    font-weight: 600;
    position: static;
    margin-right: 0.5rem;
    left: 0;
}

/* ========= BENEFIT CARDS (Same as package cards) ========= */
.additional-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: linear-gradient(140deg, #fff, rgba(240, 254, 252, 0.4)); /* same as clients */
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.05);
}

.benefit-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
}

.benefit-card p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* ========= BEFORE/AFTER COMPARISON CARDS (Same style) ========= */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Force 2 columns */
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch; /* Make both columns same height */

}

.comparison-column {
    background: linear-gradient(140deg, #ffffff, rgba(240, 254, 252, 0.4));
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Ensure content stacks properly */
}

.comparison-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.comparison-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.comparison-column:hover::before {
    transform: scaleX(1);
}

.comparison-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.before-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.after-icon {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: white;
}

.comparison-column:hover .comparison-icon {
    transform: scale(1.05);
}

.comparison-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.before-column h3 {
    color: #ef4444;
}

.after-column h3 {
    color: var(--brand);
}

.comparison-list {
    list-style: none;
    flex-grow: 1; /* Make list take remaining space */
}

.comparison-list li {
    padding: 0.6rem 0;
    color: var(--muted);
    font-size: 0.85rem;
    position: relative;
    padding-left: 0rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    line-height: 1.5;
    text-align: center;
    display: flex; 
    justify-content: center;
    align-items: center;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.before-column .comparison-list li::before {
    content: '✕';
    position: static;
    margin-right: 0.5rem;
    left: 0;
    color: #ef4444;
    font-weight: 600;
}

.after-column .comparison-list li::before {
    content: '✓';
    position: static;
    margin-right: 0.5rem;
    left: 0;
    color: var(--brand);
    font-weight: 600;
}



/* ========= RESPONSIVE DESIGN ========= */
@media (max-width: 768px) {
    .services-grid,
    .additional-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .service-card,
    .benefit-card,
    .comparison-column {
        padding: 1.2rem;
    }
}

/* Desktop only: hide mobile bottom nav */
@media (min-width: 769px) {
  #mobileBottomNav {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .card-img {
    height: auto;              /* let the image decide height */
  }

  .card-img img {
    width: 100%;
    height: auto;              /* keep aspect ratio */
    object-fit: contain;       /* show full image, no cropping */
  }


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