/* ================================
   CROSS COUNTRY HOMEPAGE ONLY
   Fully namespaced with cc-home
================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.cc-home-body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  background: #06170d;
  color: #ffffff;
}

.cc-home-page {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;

  --cc-green: #18B251;
  --cc-dark-green: #0E6B33;
  --cc-orange: #F9A825;
  --cc-gold: #FFC107;
  --cc-light: #F8FAF7;
  --cc-dark: #1E1E1E;
}

/* SEARCH BAR */
.cc-home-search-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1005;
  padding: 10px 5%;
  background: rgba(255, 255, 255, 0.96);
  
}

.cc-home-search-form {
  width: 100%;
  display: flex;
  gap: 10px;
}

.cc-home-search-form input {
  width: 100%;
  border: 1.5px solid rgba(24, 178, 81, 0.5);
  outline: none;
  border-radius: 50px;
  padding: 13px 18px;
  font-size: 15px;
  color: var(--cc-dark);
}

.cc-home-search-form input:focus {
  border-color: var(--cc-orange);
  box-shadow: 0 0 0 4px rgba(249, 168, 37, 0.18);
}

.cc-home-search-form button {
  border: none;
  border-radius: 50px;
  padding: 0 25px;
  background: var(--cc-green);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.cc-home-search-form button:hover {
  background: var(--cc-orange);
  color: var(--cc-dark);
}

.cc-home-search-results {
  display: none;
  margin-top: 8px;
  background: #ffffff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cc-home-search-results.active {
  display: block;
}

.cc-home-search-results a {
  display: block;
  padding: 10px 12px;
  color: var(--cc-dark);
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
}

.cc-home-search-results a:hover {
  background: rgba(24, 178, 81, 0.1);
  color: var(--cc-dark-green);
}

/* NAVBAR */
.cc-home-navbar {
  position: fixed;
  top: 68px;
  left: 5%;
  width: 90%;
  height: 82px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  background: rgba(255,255,255,0.96);
  border-radius: 28px 28px 28px 28px;
  
}

.cc-home-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.cc-home-logo img {
  width: 92px;
  height: auto;
  display: block;
}

.cc-home-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.cc-home-nav-links a {
  position: relative;
  color: var(--cc-dark-green);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.cc-home-nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: -8px;
  border-radius: 20px;
  background: var(--cc-orange);
  transition: 0.3s ease;
}

.cc-home-nav-links a:hover {
  color: var(--cc-orange);
}

.cc-home-nav-links a:hover::after {
  width: 100%;
}

.cc-home-menu-btn {
  display: none;
  width: 42px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.cc-home-menu-btn span {
  display: block;
  height: 4px;
  margin: 6px 0;
  border-radius: 20px;
  background: var(--cc-dark-green);
  transition: 0.3s ease;
}

/* HERO */
.cc-home-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 220px 5% 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cc-home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.82), rgba(0,0,0,0.48), rgba(14,107,51,0.45)),
    radial-gradient(circle at 80% 30%, rgba(249,168,37,0.35), transparent 35%);
}

.cc-home-hero-content {
  position: relative;
  z-index: 5;
  max-width: 850px;
  animation: ccHomeFadeUp 1.1s ease forwards;
}

.cc-home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F9A825, #FFC107);
  color: #102015;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 12px 30px rgba(249, 168, 37, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.cc-home-kicker::before {
  content: "✈";
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #18B251;
  font-size: 13px;
}

.cc-home-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -2px;
}

.cc-home-tagline {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

.cc-home-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
}

.cc-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s ease;
}

.cc-home-btn:hover {
  transform: translateY(-4px);
}

.cc-home-btn-orange {
  background: var(--cc-orange);
  color: #111111;
  box-shadow: 0 15px 30px rgba(249,168,37,0.35);
}

.cc-home-btn-white {
  background: #ffffff;
  color: var(--cc-dark-green);
}

.cc-home-btn-green {
  background: var(--cc-green);
  color: #ffffff;
}

/* ABOUT */
.cc-home-about {
  width: 100%;
  padding: 90px 5%;
  background: var(--cc-light);
}

.cc-home-about-card {
  max-width: 1100px;
  margin: auto;
  padding: 50px;
  border-radius: 34px;
  background: #ffffff;
  color: var(--cc-dark);
  border: 1px solid rgba(24,178,81,0.25);
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

.cc-home-about-card span,
.cc-home-map-header span {
  color: var(--cc-orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cc-home-about-card h2,
.cc-home-map-header h2,
.cc-home-events h2,
.cc-home-contact h2 {
  margin: 10px 0 15px;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--cc-dark-green);
}

.cc-home-about-card p {
  font-size: 17px;
  line-height: 1.9;
}

/* MAP */
.cc-home-map-section {
  width: 100%;
  padding: 95px 5%;
  background:
    radial-gradient(circle at 20% 20%, rgba(249,168,37,0.18), transparent 30%),
    linear-gradient(135deg, #062613, #0E6B33);
}

.cc-home-map-header {
  max-width: 900px;
  margin: 0 auto 35px;
  text-align: center;
}

.cc-home-map-header h2 {
  color: #ffffff;
}

.cc-home-map-header p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
}

.cc-home-map-card {
  max-width: 850px;
  margin: auto;
  padding: 18px;
  border-radius: 38px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(14px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.35);
  animation: ccHomeFloat 4s ease-in-out infinite;
}

.cc-home-map-box {
  position: relative;
  min-height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(249,168,37,0.12), transparent 55%),
    #092215;
}

.cc-home-kenya-map {
  position: absolute;
  inset: 8% 18%;
  width: 64%;
  height: 82%;
  filter: drop-shadow(0 0 25px rgba(24,178,81,0.45));
}

.cc-home-map-shape {
  fill: rgba(24,178,81,0.22);
  stroke: var(--cc-green);
  stroke-width: 8;
  stroke-linejoin: round;
}

.cc-home-hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: var(--cc-orange);
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 8px rgba(249,168,37,0.18),
    0 0 25px rgba(249,168,37,0.95);
  animation: ccHomePulse 1.7s infinite;
}

.cc-home-hotspot::after {
  content: attr(data-title);
  position: absolute;
  left: 28px;
  top: -8px;
  white-space: nowrap;
  padding: 6px 11px;
  border-radius: 20px;
  background: #ffffff;
  color: var(--cc-dark-green);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.cc-home-hotspot:hover::after {
  opacity: 1;
}

.cc-home-map-info {
  position: absolute;
  left: 25px;
  bottom: 25px;
  width: min(360px, calc(100% - 50px));
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.95);
  color: var(--cc-dark);
  box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

.cc-home-map-info h3 {
  margin: 0 0 8px;
  color: var(--cc-dark-green);
}

.cc-home-map-info p {
  margin: 0;
  line-height: 1.6;
}

/* EVENTS + CONTACT */
.cc-home-events,
.cc-home-contact {
  padding: 90px 5%;
  text-align: center;
  background: #ffffff;
  color: var(--cc-dark);
}

.cc-home-completed {
  background: var(--cc-light);
}

.cc-home-events p,
.cc-home-contact p {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 17px;
  line-height: 1.8;
}

/* ANIMATIONS */
@keyframes ccHomeFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ccHomePulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(249,168,37,0.55),
      0 0 25px rgba(249,168,37,0.95);
  }

  70% {
    box-shadow:
      0 0 0 18px rgba(249,168,37,0),
      0 0 25px rgba(249,168,37,0.95);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(249,168,37,0),
      0 0 25px rgba(249,168,37,0.95);
  }
}

@keyframes ccHomeFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cc-home-navbar {
    height: 76px;
    padding: 0 18px;
  }

  .cc-home-logo img {
    width: 75px;
  }

  .cc-home-menu-btn {
    display: block;
  }

  .cc-home-nav-links {
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    background: #ffffff;
    border: 2px solid var(--cc-green);
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  }

  .cc-home-nav-links.active {
    display: flex;
  }

  .cc-home-nav-links a {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
  }

  .cc-home-nav-links a:hover {
    background: rgba(24,178,81,0.09);
  }

  .cc-home-hero {
    padding-top: 215px;
  }

  .cc-home-map-box {
    min-height: 500px;
  }

  .cc-home-kenya-map {
    inset: 10% 8%;
    width: 84%;
  }
}

@media (max-width: 560px) {
  .cc-home-search-wrap {
    padding: 8px 4%;
  }

  .cc-home-search-form {
    gap: 6px;
  }

  .cc-home-search-form input {
    padding: 12px 14px;
    font-size: 13px;
  }

  .cc-home-search-form button {
    padding: 0 16px;
    font-size: 13px;
  }

  .cc-home-navbar {
    top: 62px;
    left: 3%;
    width: 94%;
    border-radius: 0 0 22px 22px;
  }

  .cc-home-hero {
    min-height: 100vh;
    padding: 205px 5% 70px;
  }

  .cc-home-hero h1 {
    letter-spacing: -1px;
  }

  .cc-home-hero-buttons {
    flex-direction: column;
  }

  .cc-home-btn {
    width: 100%;
  }

  .cc-home-about-card {
    padding: 30px 22px;
  }

  .cc-home-map-card {
    padding: 10px;
  }

  .cc-home-map-box {
    min-height: 470px;
  }

  .cc-home-map-info {
    left: 15px;
    bottom: 15px;
    width: calc(100% - 30px);
  }

  .cc-home-hotspot::after {
    display: none;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
}

.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  padding: 20px 25px;
  border-radius: 20px;

  background:  white;

  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: slideUp 0.6s ease;
}

.cookie-text h3 {
  color: #ffa500;
  margin-bottom: 5px;
}

.cookie-text p {
  color: black;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  border: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-btn.accept {
  background: linear-gradient(90deg, #00ff9d, #ffa500);
  color: #000;
}

.cookie-btn.decline {
  background: #00ff9d;
  color: black;
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn:hover {
  transform: translateY(-2px);
}
/* MOBILE */
@media(max-width:600px){
  .cookie-card {
    flex-direction: column;
    text-align: center;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}








/* ================================
   CROSS COUNTRY PREMIUM ABOUT ONLY
   Fully namespaced
================================ */

.cc-about-premium,
.cc-about-premium * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.cc-about-premium {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 110px 5%;
  background:
    radial-gradient(circle at 15% 20%, rgba(249,168,37,0.22), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(24,178,81,0.22), transparent 30%),
    linear-gradient(135deg, #06170d 0%, #0e6b33 48%, #082412 100%);
  color: #ffffff;
}

.cc-about-wrap {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}

.cc-about-eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #102015;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(249,168,37,0.28);
  animation: ccAboutGlow 2.6s ease-in-out infinite;
}

.cc-about-content h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -2px;
  font-weight: 900;
}

.cc-about-intro {
  max-width: 760px;
  margin: 24px 0 34px;
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.9;
}

.cc-about-features {
  display: grid;
  gap: 18px;
}

.cc-about-feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  transform: translateY(20px);
  opacity: 0;
  animation: ccAboutFadeUp 0.9s ease forwards;
}

.cc-about-feature:nth-child(2) {
  animation-delay: 0.15s;
}

.cc-about-feature:nth-child(3) {
  animation-delay: 0.3s;
}

.cc-about-feature:nth-child(4) {
  animation-delay: 0.45s;
}

.cc-about-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  color: #ffc107;
  font-size: 23px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
  animation: ccAboutIconFloat 3s ease-in-out infinite;
}

.cc-about-feature h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 19px;
}

.cc-about-feature p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  font-size: 14.5px;
}

.cc-about-visual {
  position: relative;
  min-height: 540px;
}

.cc-about-card-main {
  position: absolute;
  inset: 70px 20px 70px 20px;
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255,193,7,0.7), rgba(249,168,37,0.18) 38%, rgba(24,178,81,0.3)),
    linear-gradient(135deg, #18b251, #0e6b33);
  box-shadow: 0 40px 90px rgba(0,0,0,0.34);
  animation: ccAboutCardFloat 5s ease-in-out infinite;
}

.cc-about-sun {
  position: absolute;
  right: 18%;
  top: 58px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #ffc107;
  box-shadow: 0 0 55px rgba(255,193,7,0.85);
  z-index: 4;
  animation: ccAboutSunPulse 2.8s ease-in-out infinite;
}

.cc-about-mountain {
  position: absolute;
  left: -10%;
  bottom: 34%;
  width: 125%;
  height: 46%;
  background:
    linear-gradient(135deg, transparent 0 30%, #0e6b33 30% 52%, transparent 52%),
    linear-gradient(45deg, transparent 0 38%, #06401f 38% 62%, transparent 62%);
  opacity: 0.95;
}

.cc-about-road {
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 38%;
  height: 80%;
  transform: translateX(-50%) perspective(260px) rotateX(58deg);
  background: linear-gradient(180deg, #f9a825, #ffc107);
  clip-path: polygon(43% 0, 57% 0, 100% 100%, 0 100%);
  animation: ccAboutRoadMove 2s linear infinite;
}

.cc-about-road::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 0;
  width: 4px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    #ffffff 0 24px,
    transparent 24px 48px
  );
  opacity: 0.85;
}

.cc-about-car {
  position: absolute;
  left: 50%;
  bottom: 32%;
  transform: translateX(-50%);
  font-size: 54px;
  z-index: 5;
  animation: ccAboutCarBounce 0.9s ease-in-out infinite;
}

.cc-about-plane {
  position: absolute;
  left: 12%;
  top: 16%;
  font-size: 38px;
  color: #ffffff;
  z-index: 5;
  animation: ccAboutPlaneMove 6s ease-in-out infinite;
}

.cc-about-stat {
  position: absolute;
  z-index: 6;
  width: 158px;
  min-height: 116px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  color: #0e6b33;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: ccAboutStatFloat 4s ease-in-out infinite;
}

.cc-about-stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: #f9a825;
}

.cc-about-stat span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
}

.cc-about-stat-one {
  left: -10px;
  top: 35px;
}

.cc-about-stat-two {
  right: -10px;
  top: 185px;
  animation-delay: 0.4s;
}

.cc-about-stat-three {
  left: 35px;
  bottom: 25px;
  animation-delay: 0.8s;
}

.cc-about-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.35;
  animation: ccAboutOrbMove 7s ease-in-out infinite;
}

.cc-about-bg-orb-one {
  width: 230px;
  height: 230px;
  left: -70px;
  top: 80px;
  background: #f9a825;
}

.cc-about-bg-orb-two {
  width: 280px;
  height: 280px;
  right: -90px;
  bottom: 80px;
  background: #18b251;
  animation-delay: 1s;
}

@keyframes ccAboutFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ccAboutGlow {
  0%, 100% {
    box-shadow: 0 18px 40px rgba(249,168,37,0.22);
  }

  50% {
    box-shadow: 0 18px 55px rgba(249,168,37,0.48);
  }
}

@keyframes ccAboutIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-7px) rotate(4deg);
  }
}

@keyframes ccAboutCardFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes ccAboutSunPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 45px rgba(255,193,7,0.7);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 75px rgba(255,193,7,0.95);
  }
}

@keyframes ccAboutRoadMove {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 60px;
  }
}

@keyframes ccAboutCarBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes ccAboutPlaneMove {
  0%, 100% {
    transform: translate(0, 0) rotate(-8deg);
  }

  50% {
    transform: translate(70px, -25px) rotate(8deg);
  }
}

@keyframes ccAboutStatFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-13px);
  }
}

@keyframes ccAboutOrbMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -20px) scale(1.08);
  }
}

@media (max-width: 950px) {
  .cc-about-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .cc-about-visual {
    min-height: 520px;
  }
}

@media (max-width: 600px) {
  .cc-about-premium {
    padding: 80px 5%;
  }

  .cc-about-content h2 {
    letter-spacing: -1px;
  }

  .cc-about-feature {
    grid-template-columns: 46px 1fr;
  }

  .cc-about-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .cc-about-card-main {
    inset: 80px 0 80px 0;
    border-radius: 32px;
  }

  .cc-about-stat {
    width: 135px;
    min-height: 100px;
    padding: 14px;
  }

  .cc-about-stat strong {
    font-size: 28px;
  }

  .cc-about-stat-two {
    right: 0;
  }

  .cc-about-stat-one {
    left: 0;
  }
}



/* ================================
   CROSS COUNTRY GEMS SECTION ONLY
   Fully namespaced
================================ */


.cc-gems-section,
.cc-gems-section * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.cc-gems-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 110px 5%;
  background:
    radial-gradient(circle at top left, rgba(24,178,81,0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(249,168,37,0.08), transparent 24%),
    #e9faee;
}

/* HEADER */

.cc-gems-header {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.cc-gems-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 15px 40px rgba(249,168,37,0.18);
}

.cc-gems-header h2 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
  color: #0e6b33;
  letter-spacing: -2px;
  font-weight: 900;
}

.cc-gems-header p {
  margin: 0 auto;
  max-width: 760px;
  color: #4f4f4f;
  line-height: 1.9;
  font-size: 17px;
}

/* GRID */

.cc-gems-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

/* CARD */

.cc-gems-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 38px;
  isolation: isolate;
  transform: translateY(50px);
  opacity: 0;
  animation: ccGemsFadeUp 1s ease forwards;
  box-shadow:
    0 35px 80px rgba(0,0,0,0.08),
    0 8px 25px rgba(24,178,81,0.08);
}

.cc-gems-card:nth-child(2) {
  animation-delay: 0.2s;
}

.cc-gems-malindi {
  background:
    linear-gradient(rgba(0,0,0,0.12), rgba(0,0,0,0.55)),
    url("img/malindi.jfif") center/cover no-repeat;
}

.cc-gems-olesam {
  background:
    linear-gradient(rgba(0,0,0,0.14), rgba(0,0,0,0.62)),
    url("img/olesam.jpeg") center/cover no-repeat;
}

.cc-gems-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  animation: ccGemsRotate 20s linear infinite;
  z-index: 0;
}

.cc-gems-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.02),
      rgba(0,0,0,0.18),
      rgba(0,0,0,0.82)
    );
  z-index: 1;
}

/* CONTENT */

.cc-gems-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
  padding: 45px;
}

.cc-gems-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cc-gems-content h3 {
  margin: 20px 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.cc-gems-content p {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255,255,255,0.84);
  font-size: 15.5px;
  line-height: 1.9;
}

/* FEATURES */

.cc-gems-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.cc-gems-features span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

/* BUTTON */

.cc-gems-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18b251, #0e6b33);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: 0.35s ease;
  box-shadow: 0 20px 45px rgba(24,178,81,0.28);
}

.cc-gems-btn:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111111;
  box-shadow: 0 25px 55px rgba(249,168,37,0.3);
}

/* ANIMATIONS */

@keyframes ccGemsFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ccGemsRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE */

@media (max-width: 950px) {

  .cc-gems-grid {
    grid-template-columns: 1fr;
  }

  .cc-gems-card {
    min-height: 560px;
  }

}

@media (max-width: 600px) {

  .cc-gems-section {
    padding: 85px 5%;
  }

  .cc-gems-header h2 {
    letter-spacing: -1px;
  }

  .cc-gems-content {
    padding: 30px 24px;
  }

  .cc-gems-content h3 {
    font-size: 42px;
  }

}



/* ================================
   CROSS COUNTRY PACKAGES SECTION
   FULLY NAMESPACED
================================ */

.cc-packages-section,
.cc-packages-section * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.cc-packages-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 120px 5%;
  background:
    radial-gradient(circle at top left, rgba(24,178,81,0.08), transparent 22%),
    radial-gradient(circle at bottom right, rgba(249,168,37,0.08), transparent 24%),
    #ffffff;
}

/* HEADER */

.cc-packages-header {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

.cc-packages-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cc-packages-header h2 {
  margin: 20px 0 15px;
  color: #0e6b33;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 900;
}

.cc-packages-header p {
  max-width: 760px;
  margin: auto;
  color: #5c5c5c;
  font-size: 17px;
  line-height: 1.9;
}

/* FILTER TABS */

.cc-packages-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.cc-packages-tab {
  border: none;
  padding: 13px 22px;
  border-radius: 999px;
  background: rgba(24,178,81,0.1);
  color: #0e6b33;
  font-weight: 800;
  cursor: pointer;
  transition: 0.35s ease;
}

.cc-packages-tab:hover,
.cc-packages-tab.active {
  background: linear-gradient(135deg, #18b251, #0e6b33);
  color: #ffffff;
  transform: translateY(-4px);
}

/* FEATURED */

.cc-packages-featured {
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #0e6b33, #18b251);
  color: #ffffff;
  box-shadow: 0 25px 65px rgba(24,178,81,0.22);
  animation: ccPackagesFloat 4s ease-in-out infinite;
}

.cc-packages-featured span {
  color: #ffc107;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cc-packages-featured h3 {
  margin: 12px 0;
  font-size: clamp(30px, 4vw, 52px);
}

.cc-packages-featured p {
  max-width: 760px;
  color: rgba(255,255,255,0.84);
  line-height: 1.8;
}

/* GRID */

.cc-packages-grid {
  max-width: 1450px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* CARD */

.cc-packages-card {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border-radius: 38px;
  isolation: isolate;
  background: #0e6b33;
  transition: 0.45s ease;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.08),
    0 8px 25px rgba(24,178,81,0.08);
}

.cc-packages-card:hover {
  transform: translateY(-12px);
}

.cc-packages-card.active {
  transform: translateY(-12px) scale(1.02);
}

/* VIDEO / IMAGE */

.cc-packages-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s ease;
}

.cc-packages-card:hover .cc-packages-media {
  transform: scale(1.08);
}

/* OVERLAY */

.cc-packages-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top right, rgba(249,168,37,0.24), transparent 35%),
    linear-gradient(
      180deg,
      rgba(0,0,0,0.04),
      rgba(0,0,0,0.18),
      rgba(0,0,0,0.85)
    );
}

/* CONTENT */

.cc-packages-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 3;
  padding: 38px;
}

.cc-packages-tag {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.cc-packages-content h3 {
  margin: 20px 0 14px;
  color: #ffffff;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.cc-packages-content p {
  margin: 0 0 26px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-size: 15px;
}

/* FEATURES */

.cc-packages-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.cc-packages-features span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
}

/* BUTTON */

.cc-packages-btn {
  border: none;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18b251, #0e6b33);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 18px 45px rgba(24,178,81,0.3);
}

.cc-packages-btn:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111111;
  box-shadow: 0 24px 55px rgba(249,168,37,0.3);
}

/* ANIMATION */

@keyframes ccPackagesFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .cc-packages-section {
    padding: 90px 5%;
  }

  .cc-packages-featured {
    padding: 24px;
  }

  .cc-packages-card {
    min-height: 520px;
    border-radius: 30px;
  }

  .cc-packages-content {
    padding: 28px 22px;
  }

  .cc-packages-content h3 {
    font-size: 40px;
  }

}





/* ==================================
   CROSS COUNTRY SEASONED DESTINATIONS
   Fully namespaced
================================== */

.cc-seasoned-section,
.cc-seasoned-section * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.cc-seasoned-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 120px 5%;
  background:
    radial-gradient(circle at 15% 20%, rgba(249,168,37,0.12), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(24,178,81,0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f8faf7 100%);
}

.cc-seasoned-bg-text {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(70px, 13vw, 190px);
  font-weight: 900;
  letter-spacing: -8px;
  color: rgba(14,107,51,0.055);
  white-space: nowrap;
  pointer-events: none;
}

.cc-seasoned-wrap {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.cc-seasoned-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0 80px 0 80px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.14);
  animation: ccSeasonedFloat 5s ease-in-out infinite;
}

.cc-seasoned-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-seasoned-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.45)),
    radial-gradient(circle at top right, rgba(249,168,37,0.3), transparent 35%);
}

.cc-seasoned-play-btn {
  position: absolute;
  left: 28px;
  bottom: 28px;
  border: none;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #0e6b33;
  font-weight: 800;
  cursor: pointer;
  transition: 0.35s ease;
}

.cc-seasoned-play-btn:hover {
  background: #f9a825;
  color: #111111;
  transform: translateY(-4px);
}

.cc-seasoned-content {
  position: relative;
  animation: ccSeasonedFadeUp 1s ease forwards;
}

.cc-seasoned-eyebrow {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cc-seasoned-content h2 {
  margin: 22px 0 18px;
  color: #0e6b33;
  font-size: clamp(50px, 7vw, 105px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -4px;
}

.cc-seasoned-content p {
  max-width: 620px;
  margin: 0 0 34px;
  color: #4d4d4d;
  font-size: 18px;
  line-height: 1.9;
}

.cc-seasoned-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 36px;
}

.cc-seasoned-highlights span {
  padding: 11px 17px;
  border-radius: 999px;
  background: rgba(24,178,81,0.1);
  color: #0e6b33;
  font-size: 13px;
  font-weight: 800;
}

.cc-seasoned-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18b251, #0e6b33);
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  transition: 0.35s ease;
  box-shadow: 0 22px 50px rgba(24,178,81,0.28);
}

.cc-seasoned-btn:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111111;
}

@keyframes ccSeasonedFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes ccSeasonedFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 950px) {
  .cc-seasoned-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .cc-seasoned-media {
    min-height: 520px;
  }
}

@media (max-width: 600px) {
  .cc-seasoned-section {
    padding: 85px 5%;
  }

  .cc-seasoned-bg-text {
    letter-spacing: -3px;
  }

  .cc-seasoned-media {
    min-height: 430px;
    border-radius: 0 45px 0 45px;
  }

  .cc-seasoned-content h2 {
    letter-spacing: -2px;
  }
}






/*=========================================================================shop====================================================================*/
.cc-shop-section,
.cc-shop-section * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.cc-shop-section {
  width: 100%;
  padding: 120px 5%;
  background:
    radial-gradient(circle at top left, rgba(24,178,81,0.10), transparent 24%),
    radial-gradient(circle at bottom right, rgba(249,168,37,0.10), transparent 24%),
    linear-gradient(135deg, #eefbf1 0%, #f8fff9 45%, #ecfff0 100%);
}

.cc-shop-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.cc-shop-header span {
  display: inline-flex;
  padding: 10px 22px;
  border-radius: 999px;
  background: #f9a825;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cc-shop-header h2 {
  margin: 22px 0 14px;
  color: #0e6b33;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.cc-shop-header p {
  color: #5d5d5d;
  font-size: 17px;
  line-height: 1.8;
}

.cc-shop-package-buttons {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cc-package-select-btn {
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, rgba(24,178,81,0.10));
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  transition: 0.45s ease;
}

.cc-package-select-btn:hover,
.cc-package-select-btn.active {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #0e6b33, #18b251);
}

.cc-package-select-btn h3 {
  margin: 0 0 12px;
  color: #0e6b33;
  font-size: 26px;
  font-weight: 900;
}

.cc-package-select-btn span {
  display: block;
  margin-bottom: 14px;
  color: #f9a825;
  font-size: 18px;
  font-weight: 900;
}

.cc-package-select-btn p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.cc-package-select-btn:hover h3,
.cc-package-select-btn:hover p,
.cc-package-select-btn.active h3,
.cc-package-select-btn.active p {
  color: #fff;
}

.cc-package-explore-btn,
.cc-shop-buy,
#ccCheckoutBtn {
  border: none;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18b251, #0e6b33);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: 0.35s ease;
}

.cc-package-explore-btn:hover,
.cc-shop-buy:hover {
  transform: translateY(-4px);
  background: #f9a825;
  color: #111;
}

.cc-shop-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.8s ease;
}

.cc-shop-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cc-shop-items-modal,
.cc-shop-checkout {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: min(760px, 92vw);
  max-height: 88vh;
  padding: 42px;
  border-radius: 42px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.68) rotate(-2deg);
  transition: opacity 1s ease, visibility 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc-shop-items-modal {
  background: radial-gradient(circle at top right, rgba(249,168,37,0.12), transparent 34%), #fff;
  box-shadow: 0 45px 120px rgba(0,0,0,0.28);
}

.cc-shop-checkout {
  width: min(560px, 92vw);
  background:
    radial-gradient(circle at top right, rgba(249,168,37,0.20), transparent 35%),
    linear-gradient(135deg, #06170d, #0e6b33);
  color: #fff;
}

.cc-shop-items-modal.active,
.cc-shop-checkout.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

.cc-shop-items-close,
.cc-shop-close {
  display: grid;
  place-items: center;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f9a825;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

#ccShopDetails h3 {
  margin: 12px 0 14px;
  color: #0e6b33;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
}

.cc-shop-details-price {
  display: inline-flex;
  margin-bottom: 28px;
  color: #f9a825;
  font-size: 27px;
  font-weight: 900;
}

#ccShopDetails ul {
  columns: 2;
  gap: 50px;
  margin: 0 0 35px;
  padding-left: 22px;
}

#ccShopDetails li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.8;
}

.cc-cart-items {
  display: grid;
  gap: 14px;
}

.cc-cart-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.10);
}

.cc-cart-item h4 {
  margin: 0 0 8px;
  color: #fff;
}

.cc-cart-item p,
.cc-cart-item strong {
  color: rgba(255,255,255,0.78);
}

.cc-cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.cc-cart-qty button {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: #f9a825;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.cc-cart-total {
  margin: 24px 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 18px;
}

.cc-cart-total strong {
  color: #f9a825;
}

.cc-payment-methods {
  margin-top: 22px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.10);
}

.cc-payment-methods h4 {
  margin: 0 0 16px;
  color: #fff;
}

.cc-payment-methods label {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  cursor: pointer;
}

.cc-payment-methods input {
  accent-color: #f9a825;
}

.cc-payment-inputs {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.cc-payment-inputs input {
  width: 100%;
  border: none;
  outline: none;
  padding: 15px;
  border-radius: 16px;
}

#ccCheckoutBtn {
  width: 100%;
  margin-top: 18px;
  background: #f9a825;
  color: #111;
}

#ccPaymentStatus {
  margin: 14px 0 0;
  color: #f9a825;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .cc-shop-package-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .cc-shop-section {
    padding: 90px 5%;
  }

  .cc-shop-package-buttons {
    grid-template-columns: 1fr;
  }

  .cc-shop-items-modal,
  .cc-shop-checkout {
    padding: 30px;
    border-radius: 32px;
  }

  #ccShopDetails ul {
    columns: 1;
  }
}






/*===================================================================================Adventures Academy=========================================================*/

/* =========================================
   ADVENTURE ACADEMY
========================================= */

.cc-academy-section,
.cc-academy-section *{
  box-sizing:border-box;
  font-family:"Poppins",sans-serif;
}

.cc-academy-section{
  position:relative;
  overflow:hidden;

  padding:140px 5%;

  background:
    radial-gradient(circle at top left,
    rgba(24,178,81,0.08),
    transparent 24%),

    radial-gradient(circle at bottom right,
    rgba(249,168,37,0.10),
    transparent 24%),

    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7fff8 100%
    );
}

/* HEADER */

.cc-academy-header{
  max-width:900px;
  margin:0 auto 90px;
  text-align:center;
}

.cc-academy-header span{
  display:inline-flex;

  padding:10px 24px;
  border-radius:999px;

  background:#f9a825;
  color:#111;

  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}

.cc-academy-header h2{
  margin:24px 0 18px;

  color:#0e6b33;

  font-size:clamp(42px,6vw,80px);
  line-height:1;
  font-weight:900;
}

.cc-academy-header p{
  color:#5f5f5f;
  font-size:18px;
  line-height:1.9;
}

/* TRACK */

.cc-academy-track{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;

  align-items:center;

  margin-bottom:140px;
}

.cc-academy-mini-tag{
  display:inline-flex;

  margin-bottom:18px;
  padding:10px 18px;

  border-radius:999px;

  background:rgba(24,178,81,0.10);

  color:#0e6b33;

  font-size:13px;
  font-weight:800;
}

.cc-academy-track-content h3{
  margin:0 0 18px;

  color:#0e6b33;

  font-size:clamp(34px,4vw,60px);
  line-height:1;
  font-weight:900;
}

.cc-academy-track-content p{
  margin-bottom:40px;

  color:#666;
  font-size:17px;
  line-height:1.9;
}
/*join academy button*/
.cc-academy-join-btn{
  position:relative;
  overflow:hidden;

  border:none;

  min-height:60px;
  padding:0 34px;

  border-radius:999px;

  background:
    linear-gradient(
      135deg,
      #18b251,
      #0e6b33
    );

  color:#ffffff;

  font-size:15px;
  font-weight:900;
  letter-spacing:.3px;

  cursor:pointer;

  transition:.4s ease;
}

.cc-academy-join-btn::before{
  content:"";

  position:absolute;
  top:0;
  left:-120%;

  width:100%;
  height:100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.28),
      transparent
    );

  transition:.7s ease;
}

.cc-academy-join-btn:hover{
  transform:translateY(-6px);

  background:
    linear-gradient(
      135deg,
      #f9a825,
      #ffb739
    );

  color:#111;

  box-shadow:
    0 20px 50px rgba(249,168,37,0.35);
}

.cc-academy-join-btn:hover::before{
  left:120%;
}

/* ROUTE */

.cc-academy-route{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
}

.cc-academy-step{
  width:170px;
  min-height:180px;

  padding:24px;
  border-radius:30px;

  background:#ffffff;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.06);

  transition:.45s ease;
}

.cc-academy-step:hover{
  transform:translateY(-10px);
}

.cc-academy-step-number{
  width:50px;
  height:50px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:#18b251;
  color:#fff;

  font-weight:900;
  font-size:18px;

  margin-bottom:18px;
}

.cc-academy-step h4{
  margin:0 0 10px;

  color:#0e6b33;

  font-size:20px;
  font-weight:900;
}

.cc-academy-step p{
  margin:0;

  color:#666;
  font-size:14px;
  line-height:1.7;
}

.cc-academy-line{
  width:40px;
  height:3px;

  background:
    linear-gradient(
      to right,
      #18b251,
      #f9a825
    );

  border-radius:999px;
}

.cc-academy-final-step{
  background:
    linear-gradient(
      135deg,
      #0e6b33,
      #18b251
    );
}

.cc-academy-final-step h4,
.cc-academy-final-step p{
  color:#fff;
}

/* VIDEO */

.cc-academy-video-box{
  position:relative;
  overflow:hidden;

  min-height:650px;

  border-radius:40px;

  box-shadow:
    0 35px 90px rgba(0,0,0,0.16);
}

.cc-academy-video-box video{
  position:absolute;
  inset:0;

  width:100%;
  height:100%;

  object-fit:cover;
}

.cc-academy-video-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.05)
    );
}

/* EXPEDITION */

/* EXPEDITION FIX */

.cc-academy-expedition{
  padding:70px;
  border-radius:50px;
  background:
    radial-gradient(circle at top right, rgba(249,168,37,0.16), transparent 30%),
    linear-gradient(135deg, #06170d, #0e6b33);
  overflow:hidden;
}

.cc-academy-days{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.cc-academy-day-card{
  min-height:260px;
  padding:34px;
  border-radius:32px;
  background:rgba(255,255,255,0.09);
  color:#ffffff;
  backdrop-filter:blur(10px);
  transition:.45s ease;
}

.cc-academy-day-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,0.14);
}

.cc-academy-day-card span{
  display:inline-flex;
  margin-bottom:20px;
  padding:9px 17px;
  border-radius:999px;
  background:#f9a825;
  color:#111;
  font-size:12px;
  font-weight:900;
}

.cc-academy-day-card h4{
  margin:0 0 16px;
  color:#ffffff;
  font-size:30px;
  line-height:1.1;
  font-weight:900;
}

.cc-academy-day-card p{
  margin:0 0 22px;
  color:rgba(255,255,255,0.78);
  line-height:1.8;
  font-size:15.5px;
}

.cc-academy-day-card strong{
  color:#f9a825;
  font-weight:900;
}

/* remove the strange yellow/green card fill */
.cc-academy-highlight,
.cc-academy-coast{
  background:rgba(255,255,255,0.09);
}

.cc-academy-highlight h4,
.cc-academy-highlight p,
.cc-academy-highlight strong{
  color:inherit;
}

.cc-academy-highlight strong,
.cc-academy-coast strong{
  color:#f9a825;
}

/* optional subtle featured glow */
.cc-academy-highlight{
  box-shadow:inset 0 0 0 1px rgba(249,168,37,0.22);
}

.cc-academy-coast{
  box-shadow:inset 0 0 0 1px rgba(24,178,81,0.28);
}

@media(max-width:1200px){
  .cc-academy-days{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:750px){
  .cc-academy-expedition{
    padding:40px 24px;
    border-radius:34px;
  }

  .cc-academy-days{
    grid-template-columns:1fr;
  }

  .cc-academy-day-card{
    min-height:auto;
  }
}

/* RESPONSIVE */

@media(max-width:1200px){

  .cc-academy-track{
    grid-template-columns:1fr;
  }

  .cc-academy-days{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:750px){

  .cc-academy-section{
    padding:100px 5%;
  }

  .cc-academy-route{
    flex-direction:column;
    align-items:flex-start;
  }

  .cc-academy-line{
    width:3px;
    height:40px;
  }

  .cc-academy-step{
    width:100%;
  }

  .cc-academy-days{
    grid-template-columns:1fr;
  }

  .cc-academy-expedition{
    padding:40px 24px;
  }

  .cc-academy-video-box{
    min-height:450px;
  }

}





/*==================================================================================FAQs===========================================================================*/

.cc-faq-section {
  padding: 110px 5%;
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.cc-faq-header {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.cc-faq-eyebrow {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cc-faq-header h2 {
  margin: 20px 0 14px;
  color: #0e6b33;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.cc-faq-header p {
  color: #555;
  line-height: 1.8;
}

.cc-faq-list {
  max-width: 1050px;
  margin: auto;
}

.cc-faq-item {
  border-bottom: 1px solid rgba(14,107,51,0.18);
}

.cc-faq-question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  gap: 20px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}

.cc-faq-number {
  color: #f9a825;
  font-weight: 900;
  font-size: 18px;
}

.cc-faq-question span:nth-child(2) {
  color: #14532d;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.2px;
}


.cc-faq-question strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(24,178,81,0.1);
  color: #0e6b33;
  font-size: 24px;
  transition: 0.3s ease;
}

.cc-faq-item.active .cc-faq-question strong {
  background: #f9a825;
  color: #111;
  transform: rotate(45deg);
}

.cc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cc-faq-answer p {
  max-width: 760px;
  margin: 0 0 28px 90px;
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

.cc-faq-item.active .cc-faq-answer {
  max-height: 250px;
}


@media (max-width: 600px) {
  .cc-feedback-box {
    padding: 30px 20px;
    border-radius: 26px;
  }
}

@media (max-width: 600px) {
  .cc-faq-question {
    grid-template-columns: 45px 1fr 34px;
    gap: 12px;
  }

  .cc-faq-answer p {
    margin-left: 57px;
  }
}
/* CENTERED FAQ BUTTONS */
.faq-ask-more {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.faq-ask-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 50px;
  background: rgba(24, 178, 81, 0.12);
  color: #18b251;
  font-weight: 800;
  font-size: 1rem;
}

.faq-ask-btn {
  border: none;
  padding: 17px 45px;
  border-radius: 50px;
  background: linear-gradient(90deg, #f5a300, #18b251);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 14px 35px rgba(24, 178, 81, 0.22);
  text-decoration: none;
}

.faq-ask-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(245, 163, 0, 0.3);
}

/* POPUP MODAL */
.faq-question-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  padding: 20px;
}

.faq-question-modal.active {
  opacity: 1;
  visibility: visible;
}

.faq-question-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
}

.faq-question-card {
  position: relative;
  width: 100%;
  max-width: 430px;
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  z-index: 2;
  transform: translateY(40px) scale(0.92);
  opacity: 0;
  transition: 0.45s cubic-bezier(.22, 1, .36, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.faq-question-modal.active .faq-question-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.faq-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: #f4f4f4;
  font-size: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-close-btn:hover {
  background: #18b251;
  color: #fff;
}

.faq-question-card h3 {
  color: #10251a;
  margin-bottom: 8px;
  font-size: 26px;
}

.faq-question-card p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.faq-field {
  margin-bottom: 16px;
}

.faq-field input,
.faq-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dfe6df;
  border-radius: 14px;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  transition: 0.3s;
  resize: none;
}

.faq-field input:focus,
.faq-field textarea:focus {
  border-color: #18b251;
  box-shadow: 0 0 0 4px rgba(24, 178, 81, 0.12);
}

.faq-field small {
  color: #e53935;
  font-size: 0.75rem;
  display: block;
  margin-top: 5px;
}

.faq-send-btn {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #f5a300, #18b251);
  transition: 0.35s;
}

.faq-send-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .faq-question-card {
    padding: 30px 22px;
  }

  .faq-ask-btn {
    width: 80%;
  }
}









/* ==================================
   CROSS COUNTRY TESTIMONIALS SECTION
   Fully namespaced
================================== */

.cc-testimonials-section,
.cc-testimonials-section * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.cc-testimonials-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 120px 5%;
  background:
    radial-gradient(circle at 12% 18%, rgba(24,178,81,0.1), transparent 25%),
    radial-gradient(circle at 88% 82%, rgba(249,168,37,0.12), transparent 27%),
    linear-gradient(135deg, #ffffff 0%, #f8faf7 100%);
}

.cc-testimonials-bg-text {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(58px, 11vw, 160px);
  font-weight: 900;
  letter-spacing: -6px;
  color: rgba(14,107,51,0.055);
  white-space: nowrap;
  pointer-events: none;
}

.cc-testimonials-header {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto 65px;
  text-align: center;
}

.cc-testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 18px 45px rgba(249,168,37,0.18);
}

.cc-testimonials-header h2 {
  margin: 22px 0 16px;
  color: #0e6b33;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
}

.cc-testimonials-header p {
  max-width: 760px;
  margin: auto;
  color: #555555;
  font-size: 17px;
  line-height: 1.9;
}

.cc-testimonials-shell {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 58px 1fr 58px;
  gap: 20px;
  align-items: center;
}

.cc-testimonials-slider {
  position: relative;
  min-height: 530px;
}

.cc-testimonials-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 45px;
  padding: 42px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(248,250,247,0.96));
  box-shadow:
    0 35px 85px rgba(0,0,0,0.08),
    0 10px 25px rgba(24,178,81,0.06);
  opacity: 0;
  transform: translateY(35px) scale(0.96);
  pointer-events: none;
  transition: 0.55s ease;
}

.cc-testimonials-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cc-testimonials-image-wrap {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-radius: 36px 36px 36px 90px;
  background: linear-gradient(135deg, #18b251, #f9a825);
  
}

.cc-testimonials-image-wrap::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px 28px 28px 75px;
  background: rgba(255,255,255,0.12);
  z-index: 2;
  pointer-events: none;
}

.cc-testimonials-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.75s ease;
}

.cc-testimonials-slide.active .cc-testimonials-image-wrap img {
  transform: scale(1.04);
}

.cc-testimonials-content {
  position: relative;
}

.cc-testimonials-content::before {
  content: "“";
  position: absolute;
  top: -70px;
  left: -18px;
  font-size: 150px;
  line-height: 1;
  color: rgba(249,168,37,0.18);
  font-weight: 900;
}

.cc-testimonials-rating {
  display: inline-flex;
  margin-bottom: 22px;
  color: #f9a825;
  font-size: 20px;
  letter-spacing: 4px;
}

.cc-testimonials-content p {
  position: relative;
  z-index: 2;
  margin: 0 0 32px;
  color: #2f2f2f;
  font-size: clamp(20px, 2.3vw, 34px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cc-testimonials-client h3 {
  margin: 0 0 6px;
  color: #0e6b33;
  font-size: 22px;
  font-weight: 900;
}

.cc-testimonials-client span {
  color: #666666;
  font-size: 14px;
  font-weight: 700;
}

.cc-testimonials-arrow {
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #18b251, #0e6b33);
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transition: 0.35s ease;
  box-shadow: 0 18px 45px rgba(24,178,81,0.22);
}

.cc-testimonials-arrow:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111111;
}

.cc-testimonials-dots {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cc-testimonials-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(14,107,51,0.25);
  cursor: pointer;
  transition: 0.35s ease;
}

.cc-testimonials-dot.active {
  width: 38px;
  background: linear-gradient(135deg, #18b251, #0e6b33);
}

@media (max-width: 950px) {
  .cc-testimonials-shell {
    grid-template-columns: 1fr;
  }

  .cc-testimonials-arrow {
    display: none;
  }

  .cc-testimonials-slider {
    min-height: 780px;
  }

  .cc-testimonials-slide {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cc-testimonials-image-wrap {
    height: 360px;
  }
}

@media (max-width: 600px) {
  .cc-testimonials-section {
    padding: 90px 5%;
  }

  .cc-testimonials-bg-text {
    letter-spacing: -3px;
  }

  .cc-testimonials-slider {
    min-height: 720px;
  }

  .cc-testimonials-slide {
    padding: 24px;
    border-radius: 30px;
  }

  .cc-testimonials-image-wrap {
    height: 300px;
    border-radius: 28px 28px 28px 65px;
  }

  .cc-testimonials-content p {
    font-size: 21px;
  }
}
.cc-feedback-popup,
.cc-feedback-popup * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.cc-feedback-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cc-feedback-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cc-feedback-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.68);
  backdrop-filter: blur(8px);
}

.cc-feedback-modal {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(249,168,37,0.14), transparent 30%),
    #ffffff;
  box-shadow: 0 40px 100px rgba(0,0,0,0.24);
  transform: translateY(45px) scale(0.94);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.cc-feedback-popup.active .cc-feedback-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cc-feedback-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(24,178,81,0.1);
  color: #0e6b33;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s ease;
}

.cc-feedback-close:hover {
  background: #18b251;
  color: #ffffff;
  transform: rotate(90deg);
}

.cc-feedback-tag {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cc-feedback-modal h2 {
  margin: 22px 0 12px;
  color: #0e6b33;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.cc-feedback-modal p {
  color: #555555;
  line-height: 1.8;
}

.cc-feedback-form {
  margin-top: 24px;
}

.cc-feedback-group {
  margin-bottom: 16px;
}

.cc-feedback-form input,
.cc-feedback-form textarea {
  width: 100%;
  border: none;
  outline: none;
  border-radius: 18px;
  padding: 16px 18px;
  background: #f1f6f1;
  font-size: 15px;
  transition: 0.35s ease;
}

.cc-feedback-form textarea {
  min-height: 130px;
  resize: vertical;
}

.cc-feedback-form input:focus,
.cc-feedback-form textarea:focus {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(24,178,81,0.16);
  transform: translateY(-2px);
}

.cc-feedback-rating-label {
  display: block;
  color: #0e6b33;
  font-weight: 800;
  margin-bottom: 10px;
}

.cc-feedback-stars {
  display: flex;
  gap: 8px;
}

.cc-feedback-stars button {
  border: none;
  background: transparent;
  color: #d0d0d0;
  font-size: 38px;
  cursor: pointer;
  transition: 0.25s ease;
}

.cc-feedback-stars button.active {
  color: #f9a825;
  transform: scale(1.12);
}

.cc-feedback-submit {
  width: 100%;
  min-height: 58px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #18b251, #0e6b33);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.35s ease;
}

.cc-feedback-submit:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #f9a825, #ffc107);
  color: #111111;
}

.cc-feedback-error {
  display: block;
  min-height: 18px;
  margin: 6px 0 0 6px;
  color: #c02d17;
  font-size: 12px;
  font-weight: 700;
}

.cc-feedback-status {
  margin-top: 16px;
  text-align: center;
  font-weight: 800;
  line-height: 1.7;
}

.cc-feedback-field-error {
  animation: ccFeedbackShake 0.3s ease;
  box-shadow: 0 0 0 3px rgba(192,45,23,0.18) !important;
}

@keyframes ccFeedbackShake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}

@media (max-width: 600px) {
  .cc-feedback-modal {
    padding: 30px 20px;
    border-radius: 28px;
  }
}



/* ==================================
   CROSS COUNTRY FOOTER
   Fully Namespaced
================================== */

.cc-footer-section,
.cc-footer-section * {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.cc-footer-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 95px;
  background:
    radial-gradient(circle at top left, rgba(249,168,37,0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(24,178,81,0.14), transparent 24%),
    linear-gradient(135deg, #06170d 0%, #0e6b33 100%);
}

.cc-footer-wrap {
  max-width: 1400px;
  margin: auto;
  padding: 0 5% 75px;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 55px;
}

.cc-footer-logo {
  width: 125px;
  margin-bottom: 22px;
}

.cc-footer-brand p {
  max-width: 430px;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  font-size: 15px;
}

.cc-footer-links h3,
.cc-footer-contact h3 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
}

.cc-footer-links,
.cc-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cc-footer-links a,
.cc-footer-contact a,
.cc-footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 15px;
  transition: 0.35s ease;
}

.cc-footer-links a:hover,
.cc-footer-contact a:hover {
  color: #ffc107;
  transform: translateX(6px);
}

/* SOCIAL ICONS */

.cc-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cc-footer-social {
  position: relative;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  overflow: hidden;
  color: #ffffff;
  font-size: 19px;
  transition: 0.4s ease;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

.cc-footer-social::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: 0.4s ease;
}

.cc-footer-social i {
  position: relative;
  z-index: 2;
}

.cc-footer-facebook::before {
  background: linear-gradient(135deg, #1877f2, #0d47a1);
}

.cc-footer-instagram::before {
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.cc-footer-twitter::before {
  background: linear-gradient(135deg, #1e1e1e, #444444);
}

.cc-footer-tiktok::before {
  background: linear-gradient(135deg, #000000, #25f4ee);
}

.cc-footer-whatsapp::before {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.cc-footer-email::before {
  background: linear-gradient(135deg, #f9a825, #ffc107);
}

.cc-footer-social:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow:
    0 25px 55px rgba(0,0,0,0.24),
    0 0 28px rgba(255,255,255,0.08);
}

.cc-footer-social:hover::before {
  transform: scale(1.15);
}

/* COPYRIGHT */

.cc-footer-bottom {
  padding: 24px 5%;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.cc-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .cc-footer-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .cc-footer-section {
    padding-top: 75px;
  }

  .cc-footer-wrap {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .cc-footer-logo {
    width: 105px;
  }

  .cc-footer-social {
    width: 50px;
    height: 50px;
  }
}






