/* ==========================================================================
   GlobalPath Education - Premium Design System & Custom CSS
   Palette: Premium Deep Navy & Royal Blue with Electric Cyan accents
   ========================================================================== */

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

:root {
  --primary-navy: #0F2537;
  --primary-deep: #0A192F;
  --royal-blue: #048B9A;
  --royal-blue-hover: #036F7B;
  --electric-cyan: #00D4FF;
  --accent-cyan: #048B9A;
  --soft-ice: #F8FAFC;
  --card-bg: #FFFFFF;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 16px 40px rgba(10, 25, 47, 0.12);
  --shadow-glow: 0 0 25px rgba(4, 139, 154, 0.25);
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 30px;
}

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

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-navy);
}

/* --------------------------------------------------------------------------
   Typography Utilities & Gradients
   -------------------------------------------------------------------------- */
.gradient-text {
  background: linear-gradient(135deg, #048B9A 0%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-navy {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #048B9A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-soft {
  background: rgba(4, 139, 154, 0.08);
  color: var(--royal-blue);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(4, 139, 154, 0.15);
}

.badge-cyan {
  background: rgba(0, 212, 255, 0.12);
  color: #0284C7;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Glassmorphism Navigation Bar
   -------------------------------------------------------------------------- */
.navbar-glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
  padding: 12px 0;
}

.navbar-glass.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(10, 25, 47, 0.08);
  padding: 8px 0;
}

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

.navbar-brand-logo img {
  height: 44px;
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-dark .navbar-brand-logo img {
  height: 46px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 8px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark) !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--royal-blue) !important;
  background: rgba(4, 139, 154, 0.08);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--royal-blue) 0%, #004ecc 100%);
  color: #FFFFFF;
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #0052cc 0%, #003999 100%);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.45);
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background: var(--primary-navy);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-cyan-custom {
  background: linear-gradient(135deg, var(--electric-cyan) 0%, #00B4D8 100%);
  color: var(--primary-navy);
  border: none;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.35);
  transition: var(--transition);
}

.btn-cyan-custom:hover {
  color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 160px 0 100px 0;
  background: radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 40%),
              #F8FAFC;
  overflow: hidden;
}

.hero-shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-shape-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-card-img-wrapper {
  position: relative;
  z-index: 1;
}

.hero-img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  border: 4px solid #FFFFFF;
}

.floating-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 14px 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatAnim 4s ease-in-out infinite alternate;
  z-index: 2;
}

.floating-pill-1 {
  top: 12%;
  left: -20px;
}

.floating-pill-2 {
  bottom: 10%;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

.icon-box-sm {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* --------------------------------------------------------------------------
   Cards & Glassmorphism Components
   -------------------------------------------------------------------------- */
.custom-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  padding: 30px;
}

.custom-card:hover, .hover-up:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 102, 255, 0.2);
}

.glass-card-dark {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.95), rgba(11, 37, 69, 0.95));
  color: #FFFFFF;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
}

.destination-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 380px;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 47, 0.92) 0%, rgba(10, 25, 47, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: white;
}

/* --------------------------------------------------------------------------
   Counter Section
   -------------------------------------------------------------------------- */
.counter-box {
  text-align: center;
  padding: 24px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--royal-blue);
  line-height: 1.1;
  margin-bottom: 6px;
}

.counter-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Swiper Styling
   -------------------------------------------------------------------------- */
.uni-swiper-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--border-radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.uni-swiper-card:hover {
  border-color: var(--royal-blue);
  box-shadow: var(--shadow-md);
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--border-radius-md);
  padding: 32px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

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

/* --------------------------------------------------------------------------
   Accordion / FAQ
   -------------------------------------------------------------------------- */
.accordion-custom .accordion-item {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px !important;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-custom .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-navy);
  background: #FFFFFF;
  padding: 20px 24px;
  box-shadow: none !important;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: rgba(0, 102, 255, 0.04);
  color: var(--royal-blue);
}

.accordion-custom .accordion-body {
  padding: 20px 24px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Contact Form & Map
   -------------------------------------------------------------------------- */
.form-control-custom, .form-select-custom {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control-custom:focus, .form-select-custom:focus {
  background: #FFFFFF;
  border-color: var(--royal-blue);
  box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.12);
  outline: none;
}

.map-container {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid #FFFFFF;
}

/* --------------------------------------------------------------------------
   Floating Elements (WhatsApp & Back to Top)
   -------------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 48px;
  height: 48px;
  background: var(--primary-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--royal-blue);
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-dark {
  background: var(--primary-navy);
  color: #94A3B8;
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: var(--transition);
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--royal-blue);
  color: white;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 130px 0 60px 0;
  }
  .floating-pill {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin-top: 15px;
    display: inline-flex;
  }
}
