/* =========================================
   GLOBAL STYLES & VARIABLES
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap");

:root {
  --primary: hsl(186, 78%, 32%);
  --primary-dark: hsl(186, 78%, 28%);
  --primary-light: hsl(186, 45%, 94%);
  --secondary: hsl(222, 47%, 11%);
  --body-bg: hsl(0, 0%, 100%);
  --body-text: hsl(215, 16%, 47%);
  --light-bg: hsl(210, 20%, 96%);
  --white: #ffffff;
  --border-color: hsl(214, 20%, 90%);
  --input-border: #ced4da;
  --shadow-sm: 0 2px 8px hsla(186, 78%, 32%, 0.08);
  --shadow-md: 0 4px 16px hsla(186, 78%, 32%, 0.1);
  --shadow-lg: 0 8px 24px hsla(186, 78%, 32%, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 0.75rem;
  --navbar-height: 100px;
  --topbar-height: 0px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--body-text);
  background-color: var(--body-bg);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-top: calc(var(--navbar-height) + 5px);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  z-index: 10000;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-light {
  background-color: var(--light-bg) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h1,
.display-3,
.display-4 {
  font-size: 2.25rem;
}
h2,
.display-5 {
  font-size: 1.875rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
}

.lead {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}

/* =========================================
   NAVIGATION
========================================= */
.navbar-main {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 50px;
  border-bottom: 1px solid rgba(0, 168, 204, 0.1);
  transition: var(--transition);
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  z-index: 9999;
  height: var(--navbar-height);
  width: 100%;
}

.navbar-main.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 50px;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  font-family: "Nunito", sans-serif;
  transition: var(--transition);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.logo-image {
  height: 100px;
  width: auto;
  transition: var(--transition);
}

.navbar-brand:hover .logo-image {
  transform: scale(1.05);
}

.nav-link {
  color: var(--secondary) !important;
  font-weight: 500;
  margin: 0 4px;
  padding: 8px 14px !important;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
  background-color: var(--primary-light);
}

/* Book Consultation Button in Navbar */
.nav-link.book-consultation-btn {
  background-color: var(--primary) !important;
  color: var(--white) !important;
}

.nav-link.book-consultation-btn:hover {
  background-color: var(--primary-dark) !important;
  color: var(--white) !important;
}

.nav-link.book-consultation-btn::after {
  display: none;
}

/* Dropdown Menu - Desktop */
.dropdown-menu {
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px;
  background-color: var(--white);
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.9375rem;
  color: var(--body-text);
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  transform: translateX(5px);
}

/* Dropdown Toggle - Fix arrow position */
.nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0;
  vertical-align: middle;
  position: static;
  transform: none;
  width: auto;
  height: auto;
  background: none;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* Navbar toggler button */
.navbar-toggler {
  border: none;
  padding: 8px;
  outline: none;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  :root {
    --navbar-height: 80px;
  }

  .navbar-main {
    padding: 10px 20px;
    height: auto !important;
    max-height: 100vh;
    overflow-y: auto;
  }

  .logo-image {
    height: 60px;
  }

  .navbar-collapse {
    background: white;
    padding: 15px 0;
    margin-top: 10px;
    border-top: 1px solid var(--border-color);
    box-shadow: none;
    max-height: calc(100vh - 100px);
    overflow-y: auto !important;
  }

  .navbar-nav {
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    padding: 12px 15px !important;
    border-bottom: 1px solid #f0f0f0;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .nav-link::after {
    display: none !important;
  }

  .nav-item.dropdown {
    position: relative;
  }

  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background-color: #f8f9fa !important;
    animation: none !important;
    transform: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease-out !important;
  }

  .navbar-nav .dropdown-menu.show {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    max-height: 600px !important;
    overflow: visible !important;
    padding: 10px 0 !important;
    border-top: 1px solid #e9ecef !important;
  }

  .navbar-nav .dropdown-item {
    padding: 12px 20px 12px 30px !important;
    border-radius: 0 !important;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: var(--body-text);
    display: block !important;
    width: 100% !important;
    text-align: left !important;
  }

  .navbar-nav .dropdown-item:last-child {
    border-bottom: none;
  }

  .navbar-nav .dropdown-item:hover {
    background-color: var(--primary-light) !important;
    color: var(--primary) !important;
    transform: none !important;
    padding-left: 35px !important;
  }

  .nav-item.dropdown .nav-link.dropdown-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
  }

  .nav-link.dropdown-toggle::after {
    margin-left: auto !important;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    transition: transform 0.3s ease;
    display: block !important;
    position: static !important;
  }

  .nav-link.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  /* Book consultation button styling in mobile */
  .nav-link.book-consultation-btn {
    margin: 10px 15px !important;
    border-radius: var(--radius) !important;
    text-align: center;
    padding: 12px 20px !important;
  }
}

@media (max-width: 768px) {
  .btn {
    padding: 8px 18px;
    font-size: 0.875rem;
  }
  .btn-lg {
    padding: 10px 24px;
    font-size: 0.9375rem;
  }
  .nav-link.book-consultation-btn {
    padding: 10px 18px !important;
    font-size: 0.875rem;
  }
}

@media (max-width: 576px) {
  :root {
    --navbar-height: 70px;
  }
  .logo-image {
    height: 50px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.8125rem;
  }
  .btn-lg {
    padding: 10px 20px;
    font-size: 0.875rem;
  }
  .btn-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  .nav-link.book-consultation-btn {
    padding: 9px 14px !important;
    font-size: 0.8125rem;
  }

  .navbar-nav .dropdown-item {
    padding: 10px 15px 10px 25px !important;
    font-size: 0.85rem;
  }
}

/* =========================================
   HERO SLIDER SECTION
========================================= */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-slide {
  position: relative;
  min-height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  width: 100%;
}

.min-vh-hero {
  min-height: 90vh;
}

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-tagline {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white) !important;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-hero-primary {
  background: var(--white);
  color: var(--primary);
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

/* Carousel Controls */
.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: var(--transition);
}

.hero-slider-section .carousel-control-prev {
  left: 30px;
}
.hero-slider-section .carousel-control-next {
  right: 30px;
}

.hero-slider-section .carousel-control-prev:hover,
.hero-slider-section .carousel-control-next:hover {
  background: var(--white);
}

.hero-slider-section .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-slider-section .carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(1);
}

.hero-slider-section .carousel-control-prev-icon,
.hero-slider-section .carousel-control-next-icon {
  width: 24px;
  height: 24px;
}

/* Carousel Indicators */
.hero-slider-section .carousel-indicators {
  bottom: 30px;
}

.hero-slider-section .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 6px;
  transition: var(--transition);
}

.hero-slider-section .carousel-indicators button.active {
  background: var(--white);
  width: 35px;
  border-radius: 6px;
}

.carousel-inner {
  overflow: visible;
}

/* Hero Slider Responsive */
@media (max-width: 991px) {
  .hero-slide {
    min-height: 95vh;
  }
  .min-vh-hero {
    min-height: 95vh;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1rem;
  }

  .hero-slider-section .carousel-control-prev,
  .hero-slider-section .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  .hero-slider-section .carousel-control-prev {
    left: 15px;
  }
  .hero-slider-section .carousel-control-next {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-tagline {
    font-size: 0.75rem;
    padding: 8px 15px;
  }
  .hero-description {
    font-size: 0.9375rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  .hero-slider-section .carousel-control-prev,
  .hero-slider-section .carousel-control-next {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 40px 0;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .hero-tagline {
    font-size: 0.7rem;
    padding: 6px 12px;
    margin-bottom: 15px;
  }
  .hero-description {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 10px 18px;
    font-size: 0.875rem;
  }
}

/* =========================================
   PAGE HERO SECTION
========================================= */
.page-hero {
  position: relative;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: scroll;
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(18, 143, 163, 0.9) 100%);
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1,
.page-hero .display-4,
.page-hero p,
.page-hero .lead {
  color: var(--white) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 280px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* =========================================
   BUTTONS & INPUTS
========================================= */
.btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.3px;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 168, 204, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 168, 204, 0.4);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(0, 168, 204, 0.4);
  color: var(--primary-dark);
  background-color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: white;
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-lg {
  padding: 12px 32px;
  font-size: 1rem;
}

.form-control {
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.15);
}

/* =========================================
   SECTIONS & CONTAINERS
========================================= */
section {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.container,
.container-fluid {
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}

/* =========================================
   CARDS & COMPONENTS
========================================= */
.card,
.service-card,
.destination-card,
.team-card,
.review-card,
.course-card,
.value-card,
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hover-lift:hover,
.service-card:hover,
.course-card:hover,
.destination-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

/* Stat Cards */
.stat-card {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
  transition: var(--transition);
}

.stat-card:hover .stat-icon i {
  transform: scale(1.1) rotate(5deg);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: "Nunito", sans-serif;
}

.stat-label {
  font-weight: 500;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.8125rem;
}

/* Service Cards */
.service-card {
  padding: 25px;
  text-align: center;
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(360deg);
}

/* =========================================
   DESTINATIONS CAROUSEL
========================================= */
.destinations-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
  width: 100%;
  overflow-x: hidden;
}

.destination-carousel-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin: 10px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 420px;
}

.destination-carousel-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.dest-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.destination-carousel-card:hover .dest-card-image {
  transform: scale(1.05);
}

.dest-flag {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 40px;
  background: white;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.dest-card-content {
  padding: 20px;
}

.dest-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--body-text);
}

.dest-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Owl Carousel Custom Styling */
.owl-carousel {
  width: 100%;
  overflow: hidden;
}
.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  display: none;
  width: 50px;
  height: 50px;
  background: var(--primary) !important;
  color: white !important;
  border-radius: 50%;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-50%) scale(1.1);
}

.owl-carousel .owl-nav button.owl-prev {
  left: -25px;
}
.owl-carousel .owl-nav button.owl-next {
  right: -25px;
}
.owl-carousel .owl-dots {
  margin-top: 30px;
}

.owl-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: var(--border-color);
  border-radius: 50%;
  transition: var(--transition);
}

.owl-carousel .owl-dot.active span {
  background: var(--primary);
  width: 30px;
  border-radius: 6px;
}

@media (max-width: 991px) {
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next {
    display: none;
  }
}

/* =========================================
   COURSE CARD STYLES
========================================= */
.course-card {
  padding: 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.course-img-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-img {
  transform: scale(1.1);
}

.course-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.course-category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.course-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--body-text);
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.course-meta-item i {
  color: var(--primary);
}
.course-card .badge {
  font-size: 0.75rem;
  padding: 6px 10px;
}

/* Review Cards */
.review-card {
  padding: 28px;
  border: 1px solid var(--border-color);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.review-avatar {
  border: 2px solid var(--primary);
  padding: 2px;
}
.review-text {
  font-style: italic;
  color: var(--body-text);
  font-size: 15px;
}
.text-warning {
  color: #fbbf24 !important;
}
.stars {
  display: flex;
  gap: 3px;
}

/* Value Card */
.value-card {
  padding: 28px;
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(360deg);
}

/* Team Card */
.team-card {
  padding: 28px;
}

/* Benefit Card */
.benefit-card {
  padding: 28px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.benefit-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: "Nunito", sans-serif;
}

/* Service Detail Cards */
.service-detail-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: var(--transition);
  height: 100%;
}

.service-detail-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-detail-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.service-features li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* Contact Cards */
.contact-card {
  padding: 15px;
  height: 100%;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 10px rgba(0, 168, 204, 0.3);
}

.contact-form-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

/* Map Card */
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

/* =========================================
   CTA SECTION
========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  left: -50px;
}

/* =========================================
   PROCESS STEPS
========================================= */
.process-step {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 18px;
  position: relative;
  font-family: "Nunito", sans-serif;
  box-shadow: 0 4px 10px rgba(0, 168, 204, 0.3);
}

.hover-transform {
  transition: var(--transition);
}
.hover-transform:hover {
  transform: translateY(-5px);
}

/* =========================================
   CONSULTATION POPUP
========================================= */
.consultation-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  overflow-y: auto;
}

.consultation-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.consultation-popup {
  background: var(--white);
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  margin: auto;
}

.consultation-popup-overlay.active .consultation-popup {
  transform: scale(1) translateY(0);
}

.popup-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
  z-index: 10;
}

.popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.popup-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 25px 20px 20px;
  text-align: center;
  border-radius: 16px 16px 0 0;
}

.popup-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.5rem;
  color: var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
}

.popup-header h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.popup-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin: 0;
}

.popup-form {
  padding: 20px;
}
.popup-form .form-group {
  margin-bottom: 14px;
}
.popup-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--secondary);
  font-size: 0.875rem;
}

.popup-form .form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.875rem;
  transition: var(--transition);
}

.popup-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18, 143, 163, 0.15);
  outline: none;
}

.popup-form select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

.popup-form textarea.form-control {
  resize: vertical;
  min-height: 70px;
}
.popup-form .btn-primary {
  margin-top: 8px;
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.popup-footer-text {
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--body-text);
  margin-bottom: 0;
}
.popup-footer-text i {
  color: var(--primary);
}

.popup-success {
  text-align: center;
  padding: 35px 25px;
}

.popup-success-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  color: var(--white);
  animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.popup-success h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.popup-success p {
  color: var(--body-text);
  margin-bottom: 18px;
  font-size: 0.9375rem;
}

@media (max-width: 576px) {
  .consultation-popup-overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }
  .consultation-popup {
    max-width: 100%;
    border-radius: 12px;
    max-height: 90vh;
  }
  .popup-header {
    padding: 20px 15px 18px;
    border-radius: 12px 12px 0 0;
  }
  .popup-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .popup-header h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  .popup-header p {
    font-size: 0.8125rem;
  }
  .popup-form {
    padding: 15px;
  }
  .popup-form .form-group {
    margin-bottom: 12px;
  }
  .popup-form label {
    font-size: 0.8125rem;
    margin-bottom: 4px;
  }
  .popup-form .form-control {
    padding: 9px 10px;
    font-size: 0.8125rem;
    border-radius: 6px;
  }
  .popup-form select.form-control {
    background-position: right 10px center;
    padding-right: 30px;
  }
  .popup-form textarea.form-control {
    min-height: 60px;
  }
  .popup-form .btn-primary {
    padding: 10px 16px;
    font-size: 0.875rem;
    margin-top: 6px;
  }
  .popup-close-btn {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    top: 10px;
    right: 10px;
  }
  .popup-footer-text {
    font-size: 0.6875rem;
    margin-top: 10px;
  }
  .popup-success {
    padding: 25px 18px;
  }
  .popup-success-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    margin-bottom: 15px;
  }
  .popup-success h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .popup-success p {
    font-size: 0.875rem;
    margin-bottom: 15px;
  }
}

/* =========================================
   FOUNDER SECTION
========================================= */
.founder-section {
  position: relative;
  overflow: hidden;
  background-color: #f8f9fa;
}

.founder-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  transition: var(--transition);
}

.founder-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.founder-img-wrapper:hover img {
  transform: scale(1.03);
}

.founder-name {
  color: var(--primary);
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 5px;
}
.founder-title {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--body-text);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 5px;
}

/* =========================================
   AWARDS SECTION - MODERN DESIGN
========================================= */

.award-card-modern {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.award-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.award-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--light-bg);
}

.award-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.award-card-modern:hover .award-image {
  transform: scale(1.1);
}

.award-card-modern:hover{
  opacity: 1;
}

.award-card-modern:hover {
  transform: scale(1);
}

.award-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.award-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
  font-family: "Nunito", sans-serif;
}

.award-description {
  color: var(--body-text);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* Remove old award card styles */
.award-card {
  display: none;
}

.award-img {
  display: none;
}

/* Responsive */
@media (max-width: 991px) {
  .award-image-wrapper {
    height: 260px;
  }
  
  .award-content {
    padding: 20px;
  }
  
  .award-title {
    font-size: 1.15rem;
  }
  
  .award-description {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .award-image-wrapper {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .award-image-wrapper {
    height: 220px;
  }
  
  .award-content {
    padding: 18px;
  }
  
  .award-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .award-description {
    font-size: 0.8125rem;
    margin-bottom: 12px;
  }
}

/* =========================================
   MOBILE RESPONSIVE ADJUSTMENTS
========================================= */
@media (max-width: 768px) {
  .container,
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .stat-card {
    padding: 20px;
  }
  .service-card {
    padding: 20px;
  }
  .destination-carousel-card {
    margin: 5px;
    height: auto;
  }
  .dest-card-image {
    height: 180px;
  }
  .course-img-wrapper {
    height: 180px;
  }
  .course-content {
    padding: 18px;
  }
  .review-card {
    padding: 20px;
  }
  .value-card,
  .team-card,
  .benefit-card,
  .service-detail-card,
  .contact-card {
    padding: 20px;
  }
  .contact-form-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row {
    margin-left: -12px;
    margin-right: -12px;
  }
  [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
  }
  .stat-icon i {
    font-size: 1.8rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .service-icon,
  .value-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
  .process-step {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
  .benefit-number {
    font-size: 2rem;
  }
  .course-card .badge {
    font-size: 0.7rem;
    padding: 5px 8px;
  }
}

/* =========================================
   FOOTER
========================================= */
.footer-modern {
  background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
  color: var(--body-text);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
}

.footer-top {
  padding: 60px 0 40px;
  position: relative;
}

.footer-brand h3 {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
  font-family: "Nunito", sans-serif;
  transition: var(--transition);
  font-weight: 700;
}

.footer-logo-wrapper {
  display: inline-block;
}

.footer-logo-image {
  height: 80px;
  width: auto;
  max-width: 100%;
  transition: var(--transition);
}

.footer-logo-image:hover {
  transform: scale(1.05);
}
.footer-brand h3.with-logo {
  display: none;
}
.footer-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--body-text);
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body-text);
  font-size: 1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.footer-heading {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: var(--body-text);
  font-size: 0.9375rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.footer-nav a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--primary);
  margin-right: 0;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--primary);
  transform: translateX(5px);
}
.footer-nav a:hover::before {
  width: 10px;
  margin-right: 8px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
  opacity: 0.7;
}

.footer-contact-list a,
.footer-contact-list span {
  color: var(--secondary);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-contact-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid var(--border-color);
  background: var(--light-bg);
}
.copyright {
  margin: 0;
  font-size: 0.875rem;
  color: var(--body-text);
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: var(--body-text);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-top {
    padding: 40px 0 30px;
  }
  .footer-logo-image {
    height: 70px;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-heading {
    text-align: center;
  }
  .footer-nav,
  .footer-contact-list {
    text-align: center;
  }
  .footer-nav a::before {
    display: none;
  }
  .footer-nav a:hover {
    transform: none;
  }
  .footer-contact-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
}

/* =========================================
   SCROLL TO TOP BUTTON
========================================= */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9998;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

@media (max-width: 576px) {
  .scroll-top-btn {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
  }
}

/* =========================================
   COUNTRY PAGE STYLES
========================================= */
.country-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
  height: 100%;
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.country-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.flag-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 28px;
  background: white;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.country-info {
  padding: 20px;
}

.country-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--body-text);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.highlight-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 500;
}

/* =========================================
   UTILITYCLASSES
========================================= */
.text-balance {
  text-wrap: balance;
}
.text-pretty {
  text-wrap: pretty;
}

/* Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
