/*
Theme Name: Skylimpic Travel
Theme URI: https://skylimpictravel.com
Author: Skylimpic Travel Agency
Author URI: https://skylimpictravel.com
Description: Fully custom premium WordPress theme for Skylimpic Travel Agency – Air Ticketing, Hajj & Umrah, Charter Flights, Cargo & Logistics, Hotel Booking and Tours. Optimized for both skylimpictravel.com and www.skylimpictravel.com. Light sky-blue + off-cream palette, smooth animations, mobile-first.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: skylimpic
Tags: travel, booking, charter, custom, responsive, animated
*/

/* ==========================================================================
   CSS Variables – Lighter Sky Blue + Off-Cream Palette
   ========================================================================== */
:root {
  --sk-primary: #009fe9;          /* Bright sky blue – requested */
  --sk-primary-dark: #0077b6;     /* Slightly deeper for contrast */
  --sk-primary-light: #4fc3f7;
  --sk-secondary: #c9a227;        /* Gold accent */
  --sk-secondary-hover: #b08e1f;
  --sk-accent: #009fe9;
  --sk-text: #1e293b;
  --sk-text-light: #64748b;
  --sk-bg: #ffffff;
  --sk-bg-alt: #f8f5f0;           /* Off-cream */
  --sk-bg-soft: #f1f5f9;
  --sk-border: #e2e8f0;
  --sk-success: #059669;
  --sk-radius: 12px;
  --sk-shadow: 0 8px 30px rgba(0, 159, 233, 0.10);
  --sk-shadow-lg: 0 20px 50px rgba(0, 159, 233, 0.14);
  --sk-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --sk-font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --sk-font-heading: 'Plus Jakarta Sans', var(--sk-font);
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sk-primary); text-decoration: none; transition: var(--sk-transition); }
a:hover { color: var(--sk-secondary); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sk-font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--sk-primary-dark);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
h4 { font-size: 1.2rem; }

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--sk-text-light);
  max-width: 640px;
  margin: 0 auto 2.75rem;
  font-size: 1.1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--sk-text-light);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--sk-transition);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background: var(--sk-secondary);
  color: #fff;
  border-color: var(--sk-secondary);
}
.btn-primary:hover {
  background: var(--sk-secondary-hover);
  border-color: var(--sk-secondary-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.85);
}
.btn-outline:hover {
  background: #fff;
  color: var(--sk-primary-dark);
}

.btn-dark {
  background: var(--sk-primary);
  color: #fff;
  border-color: var(--sk-primary);
}
.btn-dark:hover {
  background: var(--sk-primary-dark);
  color: #fff;
  transform: translateY(-3px);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--sk-border);
  transition: var(--sk-transition);
}

.site-header.scrolled {
  box-shadow: var(--sk-shadow);
}

.header-top {
  background: linear-gradient(90deg, var(--sk-primary-dark), var(--sk-primary));
  color: #fff;
  font-size: 0.85rem;
  padding: 9px 0;
}

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

.header-top a {
  color: #fff;
  opacity: 0.92;
}
.header-top a:hover { opacity: 1; color: var(--sk-secondary); }

.header-contact {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.site-title {
  font-family: var(--sk-font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sk-primary-dark);
  letter-spacing: -0.5px;
}

.site-title span {
  color: var(--sk-primary);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  display: block;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--sk-text);
  border-radius: 8px;
}
.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: var(--sk-primary);
  background: rgba(14, 116, 144, 0.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--sk-primary-dark);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Nav */
@media (max-width: 992px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 88vw);
    height: 100vh;
    background: #fff;
    box-shadow: -12px 0 40px rgba(0,0,0,0.12);
    padding: 80px 24px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }
  .main-nav.active { right: 0; }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .main-nav a {
    padding: 14px 16px;
    font-size: 1.05rem;
  }
  .mobile-toggle { display: block; }
  .header-cta .btn { display: none; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 74, 110, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--sk-transition);
    z-index: 998;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--sk-primary-dark) 0%, var(--sk-primary) 50%, #0891b2 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(34, 211, 238, 0.18) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 90px 0 100px;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--sk-secondary);
}

.hero .lead {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--sk-secondary);
}

.hero-stat span {
  font-size: 0.9rem;
  opacity: 0.85;
}

@media (max-width: 992px) {
  .hero { min-height: auto; }
  .hero-content { padding: 70px 0 80px; max-width: 100%; }
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.section {
  padding: 85px 0;
}

.section-alt {
  background: var(--sk-bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.service-card {
  background: #fff;
  border-radius: var(--sk-radius);
  padding: 32px 28px;
  box-shadow: var(--sk-shadow);
  border: 1px solid var(--sk-border);
  transition: var(--sk-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sk-shadow-lg);
  border-color: rgba(14, 116, 144, 0.25);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(14,116,144,0.12), rgba(34,211,238,0.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--sk-primary);
  font-size: 1.8rem;
}

.service-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.28rem;
}

.service-card p {
  color: var(--sk-text-light);
  flex-grow: 1;
  margin-bottom: 1.2rem;
  font-size: 0.97rem;
}

.service-card .btn {
  align-self: flex-start;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--sk-shadow-lg);
}

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

.about-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: var(--sk-shadow);
}

.about-badge strong {
  display: block;
  font-size: 1.6rem;
  color: var(--sk-primary);
}

.about-content h2 {
  margin-bottom: 1.2rem;
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--sk-text-light);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 1.6rem 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-feature svg,
.about-feature span:first-child {
  color: var(--sk-primary);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image img { height: 340px; }
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

.feature-item {
  text-align: center;
  padding: 32px 22px;
  background: #fff;
  border-radius: var(--sk-radius);
  border: 1px solid var(--sk-border);
  transition: var(--sk-transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--sk-shadow);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--sk-primary), var(--sk-primary-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
}

.feature-item h4 {
  margin-bottom: 0.55rem;
}

.feature-item p {
  color: var(--sk-text-light);
  font-size: 0.94rem;
}

/* ==========================================================================
   Partners
   ========================================================================== */
.partners-section {
  padding: 55px 0;
  background: var(--sk-bg-soft);
  border-top: 1px solid var(--sk-border);
  border-bottom: 1px solid var(--sk-border);
}

.partners-label {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--sk-text-light);
  margin-bottom: 1.5rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 28px;
  font-size: 0.95rem;
  color: var(--sk-text-light);
}

.partners-grid span {
  padding: 6px 14px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid var(--sk-border);
  transition: var(--sk-transition);
}
.partners-grid span:hover {
  border-color: var(--sk-primary);
  color: var(--sk-primary);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--sk-primary-dark) 0%, var(--sk-primary) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 0.9rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Contact & Forms
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
}

.contact-info h3 {
  margin-bottom: 1.4rem;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 1.4rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(14, 116, 144, 0.1);
  color: var(--sk-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 2px;
}

.contact-item p, .contact-item a {
  color: var(--sk-text-light);
  font-size: 0.95rem;
}

.form-card {
  background: #fff;
  padding: 36px;
  border-radius: 16px;
  box-shadow: var(--sk-shadow-lg);
  border: 1px solid var(--sk-border);
}

.form-card h3 {
  margin-bottom: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--sk-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--sk-border);
  border-radius: 10px;
  font-size: 0.95rem;
  transition: var(--sk-transition);
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sk-primary);
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.15);
}

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

.form-message {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: none;
}
.form-message.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  display: block;
}
.form-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  display: block;
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--sk-primary-dark);
  color: rgba(255,255,255,0.82);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand .site-title {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--sk-transition);
}
.footer-social a:hover {
  background: var(--sk-secondary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  background: var(--sk-secondary);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}
.footer-col ul a:hover {
  color: var(--sk-secondary);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.footer-contact-item span:first-child {
  flex-shrink: 0;
  color: var(--sk-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.footer-bottom a {
  color: var(--sk-secondary);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Page Header (inner pages)
   ========================================================================== */
.page-header {
  background: linear-gradient(135deg, var(--sk-primary-dark), var(--sk-primary));
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0.7rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--sk-secondary); }
.breadcrumb span { opacity: 0.65; }

/* ==========================================================================
   Content Area
   ========================================================================== */
.content-area {
  padding: 70px 0;
}

.entry-content {
  max-width: 820px;
  margin: 0 auto;
}
.entry-content p {
  margin-bottom: 1.2rem;
  color: var(--sk-text-light);
}
.entry-content h2, .entry-content h3 {
  margin: 2rem 0 1rem;
}
.entry-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.entry-content ul li {
  margin-bottom: 0.5rem;
  color: var(--sk-text-light);
}

/* Service single / detailed */
.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}
.service-hero img {
  border-radius: 16px;
  box-shadow: var(--sk-shadow-lg);
}
@media (max-width: 800px) {
  .service-hero { grid-template-columns: 1fr; }
}

.content-block {
  background: #fff;
  border-radius: var(--sk-radius);
  padding: 32px;
  margin-bottom: 28px;
  border: 1px solid var(--sk-border);
  box-shadow: var(--sk-shadow);
}

.content-block h3 {
  margin-bottom: 1rem;
  color: var(--sk-primary-dark);
}

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 99;
  transition: var(--sk-transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.iata-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
}

.btn.loading {
  pointer-events: none;
  opacity: 0.75;
}
.btn.loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--sk-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--sk-transition);
  z-index: 99;
  box-shadow: 0 6px 20px rgba(14,116,144,0.4);
  font-size: 1.2rem;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--sk-primary-dark);
  transform: translateY(-3px);
}

/* Smooth page load */
.page-header, .section, .hero-content {
  animation: fadeUp 0.8s ease both;
}

/* ==========================================================================
   v1.3 – Slider, Plane Animation, Partners Marquee, Dropdowns, Tiles
   ========================================================================== */

/* Header top & footer use bright sky blue */
.header-top {
  background: linear-gradient(90deg, #0077b6, #009fe9) !important;
}
.site-footer { /* colours via Customizer inline CSS */ }
.site-footer,
.site-footer p,
.site-footer .footer-col ul a {
  color: rgba(255, 255, 255, 0.92) !important;
}
.site-footer .footer-col ul a:hover {
  color: #ffe08a !important;
}
.site-footer .footer-bottom {
  color: rgba(255, 255, 255, 0.7) !important;
  border-top-color: rgba(255, 255, 255, 0.2) !important;
}
.site-footer .footer-bottom a {
  color: #ffe08a !important;
}
.site-footer .site-title {
  color: #fff !important;
}
.site-footer .footer-contact-item a {
  color: #fff !important;
}
.site-footer .footer-contact-item a:hover {
  color: #ffe08a !important;
}
.page-header {
  background: linear-gradient(135deg, #0077b6, #009fe9) !important;
  padding: 48px 0 42px; /* smaller height, wide */
}
.hero {
  background: linear-gradient(135deg, #0077b6 0%, #009fe9 55%, #4fc3f7 100%) !important;
}
.cta-banner {
  background: linear-gradient(135deg, #0077b6, #009fe9) !important;
}

/* Logo size in menu */
.site-logo img,
.custom-logo {
  height: 48px !important;
  width: auto !important;
  max-height: 48px;
}
.site-branding .site-title {
  font-size: 1.25rem;
}

/* Dropdown menu – full width mega style for Services */
.main-nav .menu-item-has-children {
  position: relative;
}
.main-nav .menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 0.7em;
  opacity: 0.7;
}
.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 12px 0;
  z-index: 100;
  border: 1px solid var(--sk-border);
}
.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu {
  display: block;
  animation: fadeIn 0.25s ease;
}
.main-nav .sub-menu a {
  padding: 11px 20px;
  white-space: nowrap;
  color: var(--sk-text);
  font-size: 0.92rem;
}
.main-nav .sub-menu a:hover {
  background: rgba(0, 159, 233, 0.08);
  color: #009fe9;
}

/* Mega dropdown for Services – spreads */
.main-nav .menu-item-services > .sub-menu,
.main-nav .menu-item-has-children.mega > .sub-menu {
  display: none;
  width: 520px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 16px;
}
.main-nav .menu-item-services:hover > .sub-menu,
.main-nav .menu-item-has-children.mega:hover > .sub-menu {
  display: grid;
}
.main-nav .menu-item-services .sub-menu a,
.main-nav .mega .sub-menu a {
  border-radius: 8px;
}

@media (max-width: 992px) {
  .main-nav .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    display: none;
    min-width: 0;
    width: 100%;
    transform: none;
  }
  .main-nav .menu-item-has-children.open > .sub-menu {
    display: block !important;
  }
  .main-nav .menu-item-services > .sub-menu {
    display: none;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .main-nav .menu-item-services.open > .sub-menu {
    display: grid !important;
  }
}

/* Home Hero Slider */
.hero-slider {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
  background: #0077b6;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slider .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 60, 100, 0.92) 0%, rgba(0, 100, 150, 0.75) 45%, rgba(0, 119, 182, 0.55) 100%);
}
.hero-slider .hero-content {
  position: relative;
  z-index: 3;
  padding: 100px 0 110px;
}
.hero-slider .slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-slider .slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: var(--sk-transition);
}
.hero-slider .slider-dots button.active {
  background: #fff;
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .hero-slider { min-height: auto; }
  .hero-slider .slide { display: none; }
  .hero-slider .slide.active { display: block; position: relative; min-height: 420px; }
  .hero-slider .hero-content { padding: 60px 0 70px; }
}

/* Plane booking animation */
.plane-anim-wrap {
  position: absolute;
  right: 5%;
  bottom: 12%;
  width: min(380px, 42vw);
  z-index: 2;
  pointer-events: none;
  opacity: 0.95;
}
.plane-anim-wrap svg {
  width: 100%;
  height: auto;
  animation: planeFly 8s ease-in-out infinite;
}
@keyframes planeFly {
  0% { transform: translate(0, 10px) rotate(-2deg); }
  25% { transform: translate(12px, -8px) rotate(3deg); }
  50% { transform: translate(-8px, -18px) rotate(-1deg); }
  75% { transform: translate(6px, -5px) rotate(2deg); }
  100% { transform: translate(0, 10px) rotate(-2deg); }
}
.booking-pulse {
  position: absolute;
  top: 18%;
  left: 8%;
  background: rgba(255,255,255,0.95);
  color: #0077b6;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  animation: float 3s ease-in-out infinite;
  z-index: 3;
}
@media (max-width: 900px) {
  .plane-anim-wrap, .booking-pulse { display: none; }
}

/* Why Choose Us – tiles */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.feature-item {
  text-align: left;
  padding: 28px 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--sk-border);
  transition: var(--sk-transition);
  height: 100%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 159, 233, 0.15);
  border-color: rgba(0, 159, 233, 0.35);
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 0 1rem 0;
  background: linear-gradient(135deg, #009fe9, #4fc3f7);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

/* About on home – balanced */
.about-grid {
  gap: 40px;
}
.about-image img {
  height: 400px;
  object-fit: cover;
}
.about-content p {
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
}
@media (max-width: 900px) {
  .about-image img { height: 280px; }
}

/* Partners marquee – animated scrolling */
.partners-marquee {
  overflow: hidden;
  position: relative;
  padding: 18px 0;
}
.partners-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.partners-track:hover {
  animation-play-state: paused;
}
.partners-track span {
  flex-shrink: 0;
  padding: 10px 22px;
  background: #fff;
  border-radius: 50px;
  border: 1px solid var(--sk-border);
  font-size: 0.92rem;
  color: var(--sk-text-light);
  font-weight: 500;
  transition: var(--sk-transition);
  cursor: default;
  user-select: none;
}
.partners-track span:hover {
  border-color: #009fe9;
  color: #009fe9;
  background: rgba(0, 159, 233, 0.06);
  transform: scale(1.05);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FAQ accordion */
.faq-item {
  background: #fff;
  border: 1px solid var(--sk-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--sk-primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question:hover { color: #009fe9; }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--sk-text-light);
  font-size: 0.97rem;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question span { transform: rotate(45deg); }

/* Map embed */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--sk-shadow);
  margin-top: 24px;
  border: 1px solid var(--sk-border);
}
.map-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* Breadcrumbs refinement */
.breadcrumb {
  flex-wrap: wrap;
  gap: 6px;
}

.hero-slider .hero-content h1,
.hero-slider .hero-content .lead,
.hero-slider .hero-stat span {
  color: #fff !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}
.hero-slider .hero-stat strong {
  color: #ffd54f !important;
}
.hero-slider .hero-badge {
  background: rgba(255,255,255,0.2) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: #fff !important;
}
.page-header h1,
.page-header .breadcrumb,
.page-header .breadcrumb a {
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.page-header .breadcrumb a:hover {
  color: #ffe08a !important;
}
.cta-banner h2,
.cta-banner p {
  color: #fff !important;
}
.header-top,
.header-top a {
  color: #fff !important;
}
.header-top a:hover {
  color: #ffe08a !important;
}

.hero-slider .slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slider .hero-content { z-index: 3; }

/* Chat agent */
.sk-chat { position: fixed; bottom: 28px; right: 90px; z-index: 100; font-family: var(--sk-font); }
.sk-chat-toggle {
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, #009fe9, #0077b6); color: #fff; font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,159,233,0.4);
}
.sk-chat-panel {
  position: absolute; bottom: 70px; right: 0; width: min(340px, 92vw);
  background: #fff; border-radius: 16px; box-shadow: 0 16px 50px rgba(0,0,0,0.18);
  overflow: hidden; display: flex; flex-direction: column; max-height: 420px;
}
.sk-chat-panel[hidden] { display: none !important; }
.sk-chat-header {
  background: linear-gradient(90deg, #0077b6, #009fe9); color: #fff;
  padding: 12px 14px; display: flex; justify-content: space-between; align-items: center;
}
.sk-chat-header button { background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }
.sk-chat-body { padding: 12px; overflow-y: auto; flex: 1; background: #f8fafc; }
.sk-chat-msg { margin-bottom: 10px; padding: 10px 12px; border-radius: 12px; font-size: 0.9rem; line-height: 1.45; max-width: 90%; }
.sk-chat-msg.bot { background: #fff; border: 1px solid #e2e8f0; }
.sk-chat-msg.user { background: #009fe9; color: #fff; margin-left: auto; }
.sk-chat-actions { padding: 0 12px 8px; }
.sk-chat-wa {
  display: block; text-align: center; background: #25d366; color: #fff !important;
  padding: 8px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
}
.sk-chat-form { display: flex; gap: 6px; padding: 10px 12px; border-top: 1px solid #e2e8f0; }
.sk-chat-form input { flex: 1; padding: 10px; border: 1px solid #e2e8f0; border-radius: 8px; }
.sk-chat-form button { background: #009fe9; color: #fff; border: none; border-radius: 8px; padding: 0 14px; font-weight: 600; cursor: pointer; }
@media (max-width: 600px) {
  .sk-chat { right: 16px; bottom: 90px; }
}

/* Scattered stats on slider */
.hero-stats-scatter {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-stats-scatter .scatter-stat {
  position: absolute; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35); color: #fff; padding: 10px 16px;
  border-radius: 12px; text-align: center; font-size: 0.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-stats-scatter .scatter-stat strong { display: block; font-size: 1.35rem; color: #ffd54f; }
.scatter-stat.s1 { top: 18%; right: 8%; }
.scatter-stat.s2 { bottom: 22%; right: 12%; }
.scatter-stat.s3 { top: 42%; right: 28%; }
@media (max-width: 900px) {
  .hero-stats-scatter { display: none; }
}

/* Service card with optional background image */
.service-card.has-bg {
  position: relative; overflow: hidden; color: #fff;
  background-size: cover; background-position: center top;
  min-height: 280px;
}
.service-card.has-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,40,80,0.92) 0%, rgba(0,80,120,0.55) 55%, rgba(0,100,140,0.25) 100%);
  z-index: 0;
}
.service-card.has-bg > * { position: relative; z-index: 1; }
.service-card.has-bg h3,
.service-card.has-bg p { color: #fff; }
.service-card.has-bg .service-icon { background: rgba(255,255,255,0.2); color: #fff; }
.service-card.has-bg .btn-dark {
  background: #fff; color: #0077b6; border-color: #fff;
}
.service-card.has-bg .btn-dark:hover { background: #ffd54f; border-color: #ffd54f; color: #00334d; }

/* Footer logo size */
.footer-brand img.footer-logo {
  max-height: var(--sk-footer-logo-h, 64px);
  width: auto;
}

/* Floating service chips on hero slider */
.hero-float-services {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-float-services .float-chip {
  position: absolute;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  white-space: nowrap;
  animation: chipFloat 7s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.float-chip.c1 { top: 14%; left: 6%; animation-delay: 0s; animation-duration: 6.5s; }
.float-chip.c2 { top: 28%; left: 18%; animation-delay: 0.8s; animation-duration: 7.2s; }
.float-chip.c3 { top: 16%; left: 38%; animation-delay: 1.4s; animation-duration: 8s; }
.float-chip.c4 { bottom: 28%; left: 8%; animation-delay: 0.4s; animation-duration: 6.8s; }
.float-chip.c5 { bottom: 18%; left: 32%; animation-delay: 1.1s; animation-duration: 7.5s; }
.float-chip.c6 { top: 38%; left: 4%; animation-delay: 1.8s; animation-duration: 8.5s; }

@keyframes chipFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  25% { transform: translate(8px, -12px) scale(1.04); opacity: 1; }
  50% { transform: translate(-6px, -6px) scale(1); opacity: 0.9; }
  75% { transform: translate(10px, 8px) scale(1.03); opacity: 1; }
}

/* Enhanced scatter stats animation */
.hero-stats-scatter .scatter-stat {
  animation: statPulse 5s ease-in-out infinite;
}
.scatter-stat.s1 { animation-delay: 0s; }
.scatter-stat.s2 { animation-delay: 1.2s; }
.scatter-stat.s3 { animation-delay: 2.4s; }

@keyframes statPulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.9; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
  50% { transform: translateY(-10px) scale(1.06); opacity: 1; box-shadow: 0 12px 28px rgba(0,0,0,0.22); }
}

@media (max-width: 900px) {
  .hero-float-services,
  .hero-stats-scatter { display: none; }
}

/* Chat – floating, high z-index, not stuck under footer */
.sk-chat {
  position: fixed !important;
  bottom: 100px !important;
  right: 24px !important;
  left: auto !important;
  z-index: 99999 !important;
  font-family: var(--sk-font);
}
.sk-chat-toggle {
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, #009fe9, #0077b6); color: #fff; font-size: 1.6rem;
  box-shadow: 0 8px 28px rgba(0,159,233,0.5);
  animation: chatBob 2.5s ease-in-out infinite;
}
@keyframes chatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.sk-chat-panel {
  position: absolute; bottom: 72px; right: 0; width: min(360px, calc(100vw - 32px));
  background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  overflow: hidden; display: flex; flex-direction: column; max-height: min(480px, 70vh);
  z-index: 100000;
}
.sk-chat-panel[hidden] { display: none !important; }
.whatsapp-float { z-index: 99998; }
.back-to-top { z-index: 99997; }
@media (max-width: 600px) {
  .sk-chat { bottom: 100px !important; right: 16px !important; }
  .whatsapp-float { bottom: 28px; left: 16px; }
}

/* Editable page images – fit cleanly */
.about-image img,
.service-side img,
.content-area img,
.page-header-bg {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.about-image,
.service-side {
  overflow: hidden;
  border-radius: 16px;
}
