/* ═══════════════════════════════════════════════
   Golden Eagle Travel Agency — Main Stylesheet
   Brand: #F97316 (orange) / #EAB308 (gold) / #1C1917 (dark)
═══════════════════════════════════════════════ */

:root {
  --primary:    #F97316;
  --secondary:  #EAB308;
  --dark:       #1C1917;
  --dark2:      #292524;
  --light:      #FFF7ED;
  --text-muted: #78716C;
  --radius:     14px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

/* ── Navbar ──────────────────────────────────── */
.navbar-geta {
  background: rgba(28, 25, 23, 0.97);
  backdrop-filter: blur(12px);
  padding: .9rem 0;
  border-bottom: 1px solid rgba(249,115,22,.15);
}
.navbar-geta .nav-link {
  color: rgba(255,255,255,.8) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: .4rem .8rem !important;
  border-radius: 8px;
  transition: all .2s;
}
.navbar-geta .nav-link:hover,
.navbar-geta .nav-link.active {
  color: #fff !important;
  background: rgba(249,115,22,.18);
}
.brand-text .brand-g { color: var(--primary); font-weight: 800; font-size: 1.15rem; }
.btn-navbar-cta {
  background: linear-gradient(135deg, var(--primary), #ea6b0a);
  color: #fff !important;
  border-radius: 50px;
  padding: .45rem 1.2rem;
  font-weight: 600;
  font-size: .88rem;
  border: none;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.btn-navbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(249,115,22,.45);
}

/* ── Hero ────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1C1917 0%, #292524 40%, #44160a 100%);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F97316' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(249,115,22,.12) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  color: var(--secondary);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--primary); }
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary), #ea6b0a);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .85rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
  box-shadow: 0 4px 24px rgba(249,115,22,.4);
}
.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,.55);
}
.btn-hero-outline {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: .85rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
}
.btn-hero-outline:hover {
  color: #fff;
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-item .stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.hero-stat-item .stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-card-float {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 1.5rem;
  color: #fff;
}
.hero-dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.hero-dest-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .9rem;
  text-align: center;
  transition: all .2s;
}
.hero-dest-item:hover { background: rgba(249,115,22,.15); border-color: rgba(249,115,22,.3); }
.hero-dest-item .flag { font-size: 1.8rem; line-height: 1; }
.hero-dest-item .dest-name { font-size: .78rem; font-weight: 600; margin-top: .4rem; color: rgba(255,255,255,.85); }

/* ── Section headers ─────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-badge {
  display: inline-block;
  background: rgba(249,115,22,.1);
  color: var(--primary);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .5rem;
  line-height: 1.2;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ── Service cards ───────────────────────────── */
.service-card {
  background: #fff;
  border: 1px solid #f0ebe7;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249,115,22,.3);
  box-shadow: 0 12px 40px rgba(249,115,22,.12);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(234,179,8,.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.service-icon i { font-size: 1.6rem; color: var(--primary); }
.service-card h5 { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; }
.service-card p { color: var(--text-muted); font-size: .9rem; margin: 0; line-height: 1.6; }

/* ── Destination cards ───────────────────────── */
.dest-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 280px;
  cursor: pointer;
  transition: transform .3s;
}
.dest-card:hover { transform: scale(1.02); }
.dest-card img, .dest-card .dest-img-placeholder {
  width: 100%; height: 100%; object-fit: cover;
}
.dest-img-placeholder {
  background: linear-gradient(135deg, #292524, #44160a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.2);
}
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
}
.dest-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  color: #fff;
}
.dest-card-body h5 { font-weight: 800; font-size: 1.1rem; margin: 0 0 .3rem; }
.dest-card-body p { font-size: .82rem; color: rgba(255,255,255,.75); margin: 0; }
.dest-visa-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  border-radius: 50px;
  padding: .2rem .7rem;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

/* ── Visa type cards ─────────────────────────── */
.visa-card {
  background: #fff;
  border: 1px solid #f0ebe7;
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: all .3s;
}
.visa-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(249,115,22,.12);
}
.visa-category-badge {
  display: inline-block;
  background: rgba(249,115,22,.1);
  color: var(--primary);
  border-radius: 50px;
  padding: .2rem .7rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .75rem;
}
.visa-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid #f5f0eb;
  font-size: .9rem;
}
.visa-detail-row:last-child { border-bottom: none; }
.visa-detail-row .label { color: var(--text-muted); }
.visa-detail-row .value { font-weight: 600; color: var(--dark); }

/* ── Why us features ─────────────────────────── */
.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: var(--radius);
  transition: background .2s;
}
.feature-item:hover { background: var(--light); }
.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon i { color: #fff; font-size: 1.2rem; }
.feature-item h6 { font-weight: 700; margin-bottom: .3rem; }
.feature-item p { color: var(--text-muted); font-size: .88rem; margin: 0; line-height: 1.5; }

/* ── Stats strip ─────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  padding: 4rem 0;
}
.stat-item { text-align: center; }
.stat-item .stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  margin-top: .4rem;
  font-weight: 500;
}

/* ── Testimonials ────────────────────────────── */
.testimonial-card {
  background: #fff;
  border: 1px solid #f0ebe7;
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(249,115,22,.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card p { color: #57534E; font-size: .93rem; line-height: 1.7; margin-bottom: 1.2rem; }
.testimonial-card .client-name { font-weight: 700; font-size: .92rem; }
.testimonial-card .client-country { color: var(--text-muted); font-size: .8rem; }

/* ── Blog cards ──────────────────────────────── */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0ebe7;
  transition: all .3s;
}
.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.blog-img { width: 100%; height: 200px; object-fit: cover; }
.blog-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--light), #fed7aa);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--primary);
}
.blog-body { padding: 1.25rem; }
.blog-body h5 { font-weight: 700; font-size: .98rem; color: var(--dark); margin-bottom: .5rem; line-height: 1.4; }
.blog-body p { color: var(--text-muted); font-size: .85rem; line-height: 1.6; margin-bottom: .75rem; }

/* ── Page header ─────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--dark), #3a1a08);
  padding: 3rem 0 2.5rem;
  color: #fff;
}
.page-header h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: .4rem; }
.page-header p { color: rgba(255,255,255,.7); margin: 0; }
.breadcrumb-geta .breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb-geta .breadcrumb-item a:hover { color: var(--primary); }
.breadcrumb-geta .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.breadcrumb-geta .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Filter card (sidebar) ───────────────────── */
.filter-card {
  background: #fff;
  border: 1px solid #f0ebe7;
  border-radius: var(--radius);
  padding: 1.5rem;
}
.filter-card h6 { font-weight: 700; margin-bottom: 1rem; color: var(--dark); }

/* ── CTA Section ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #ea6b0a 50%, var(--secondary) 100%);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: .75rem; position: relative; }
.cta-section p { font-size: 1.05rem; opacity: .9; margin-bottom: 2rem; position: relative; }
.btn-cta-white {
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: .85rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
}
.btn-cta-white:hover { color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50px;
  padding: .85rem 2.2rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
}
.btn-cta-outline:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.1); }

/* ── Primary button ──────────────────────────── */
.btn-primary-geta {
  background: linear-gradient(135deg, var(--primary), #ea6b0a);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .7rem 1.8rem;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
  cursor: pointer;
}
.btn-primary-geta:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(249,115,22,.4); }
.btn-outline-geta {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: .65rem 1.6rem;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all .25s;
}
.btn-outline-geta:hover { background: var(--primary); color: #fff; }

/* ── Contact ─────────────────────────────────── */
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
  height: 100%;
}
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-text { flex: 1; text-align: left; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: #fff; font-size: 1.1rem; }
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(249,115,22,.08);
}

/* ── WhatsApp float ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  text-decoration: none;
  transition: transform .2s;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.1); }

/* ── Footer ──────────────────────────────────── */
.footer-main {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
  font-size: .9rem;
}
.footer-main h6 { color: #fff; font-weight: 700; margin-bottom: 1rem; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-main a { color: rgba(255,255,255,.6); text-decoration: none; display: block; margin-bottom: .5rem; transition: color .2s; }
.footer-main a:hover { color: var(--primary); }
.footer-social { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all .2s;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
  padding: 1.5rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── Forms ───────────────────────────────────── */
.form-control, .form-select {
  border-radius: 10px;
  border-color: #e7e0d8;
  padding: .65rem 1rem;
  font-size: .93rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(249,115,22,.15);
}

/* ── Alert auto-dismiss ──────────────────────── */
.alert-auto-dismiss { animation: slideDown .3s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ── Utility ─────────────────────────────────── */
.text-primary-geta { color: var(--primary) !important; }
.bg-light-geta { background: var(--light) !important; }
.rounded-geta { border-radius: var(--radius) !important; }
