/* Previous styles remain the same */
:root {
  --wp--preset--color--black: #000000;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Golos Text', sans-serif;
  line-height: 1.6;
  color: #333;
}

h3,
h4,
h6,
p {
  font-family: 'Big Shoulders Text', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 100% !important;
  margin: 0 auto;
  padding: 0 3% 0 2%;
}

@media (min-width: 992px) {
  .site-header .container {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header Styles */
.site-header {
  background-color: white;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

/* Add shadow when scrolled past nav */
.site-header.header-scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.site-header-wrapper {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  min-height: 80px;
}

.logo img {
  height: 40px;
}

.header-left,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 42%;
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
}

.header-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: 30px;
  z-index: 10;
}

.header-center .logo a {
  background: white;
  /* Reduce horizontal padding on desktop so the logo isn't squeezed.
     Mobile keeps its own smaller padding via the media query below. */
  padding: 12px 40px;
  /* was 15px 30% 15px 30% */
  border-radius: 8px;
  box-shadow: 0 5px 15px rgb(255, 255, 255);
  display: inline-block;
  overflow: hidden;
}

/* Logo custom shapes - add class `logo-shape` and a variant like `hexagon` or `diagonal` to the anchor */
.logo-shape {
  display: inline-block;
  overflow: hidden;
  padding: 0;
  background: transparent;
  position: relative;
  filter: drop-shadow(0 32px 28px rgba(0, 0, 0, 0.18));
}

.logo-shape img {
  display: block;
  height: 60px;
  width: auto;
  /* Nudge logo down so it visually sits inside the clipped shape */
  transform: translateY(6px);
  transition: transform 180ms ease;
}

/* Hexagon shape (responsive) */
.logo-shape.hexagon {
  -webkit-clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: white;
  padding: 8px;
  box-shadow: 0 5px 15px rgb(255, 255, 255);
  border-radius: 6px;
  border: 2px solid #ffffff;
}

/* Diagonal cut shape */
.logo-shape.diagonal {
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  background: white;
  padding: 8px 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
}

/* Subtle bottom shadow under the shaped container to emphasize depth */
.logo-shape::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%) translateY(6px);
  width: 80%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.12) 45%, transparent 80%);
  filter: blur(10px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.9;
}

.main-navigation {
  display: flex;
  align-items: center;
  margin-right: auto;
  /* keep nav left-aligned inside header-left */
}

.main-navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
  margin: 0;
  /* gap handles spacing now */
}

.main-navigation a {
  font-family: Quan;
  font-weight: 500;
  font-size: 18px;
  color: #2f3a2d;
  padding: 12px 0;
  transition: color 0.3s ease, border-color 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
  display: inline-block;
  white-space: nowrap;
}

.main-navigation li.has-submenu>a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.main-navigation .desktop-arrow {
  font-size: 10px;
  color: #2f3a2d;
  transition: transform 0.3s ease, color 0.3s ease;
}

.main-navigation li:hover>a .desktop-arrow,
.main-navigation li:focus-within>a .desktop-arrow {
  color: var(--wp--preset--color--vivid-cyan-blue);
  transform: rotate(180deg);
}

/* Active indicator for main nav */
.main-navigation a.active {
  color: var(--wp--preset--color--vivid-cyan-blue);
  border-bottom-color: var(--wp--preset--color--vivid-cyan-blue);
}

.main-navigation a:hover {
  color: var(--wp--preset--color--vivid-cyan-blue);
}


.main-navigation .sub-menu {
  position: absolute;
  background: #f8f8f8;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 999;
  border-radius: 4px;
  top: 100%;
  left: 0;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
}

.main-navigation li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .sub-menu li {
  margin: 0;
  display: block;
  width: 100%;
}

.main-navigation .sub-menu a {
  display: block;
  padding: 2px 10px;
  line-height: 1.4;
  font-size: 18px;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: nowrap;
}

.contact-box {
  display: flex;
  align-items: center;
}

.contact-text {
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-text span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 2px;
}

.booking-btn {
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.booking-btn:hover {
  background: #057ab8;
}

.booking-btn i {
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  position: relative;
  z-index: 1101;
  padding: 8px;
}

/* Hero Slideshow */
.hero-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
  margin-top: 0;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 10s infinite;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h6 {
  font-family: 'Saira', sans-serif;
  color: white !important;
  font-size: 48px;
  font-weight: 700;
  color: var(--wp--preset--color--vivid-cyan-blue);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
  font-family: 'Saira', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h4 {
  font-family: 'Golos Text', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: white;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-btn {
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.hero-btn:hover {
  background: #057ab8;
}

.hero-btn i {
  margin-left: 8px;
}

.header-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.header-decoration img {
  width: 100%;
  height: 20px;
  display: block;
}

/* Section Styles */
section {
  padding: 5px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 10px;
}

.section-header h6 {
  font-family: 'Saira', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--wp--preset--color--vivid-cyan-blue);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header h2 {
  font-family: 'Saira', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--wp--preset--color--vivid-cyan-blue);
  margin: 25px auto;
}

/* Who We Are Section */
.who-we-are {
  position: relative;
  background: #f9f9f9;
}

.who-we-are-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.who-we-are-text {
  flex: 1;
}

.who-we-are-text h2 {
  font-family: 'Saira', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.who-we-are-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* About Us Banner Styles */
.about-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin-top: 0;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
}

.banner-content h1 {
  font-family: 'Saira', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.banner-content p {
  font-family: 'Golos Text', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* About Content Styles */
.about-content {
  padding: 40px 0;
}

.content-placeholder {
  text-align: center;
  padding: 40px 0;
  color: #666;
  font-style: italic;
}

/* Mobile Responsive for About Banner */
@media (max-width: 768px) {
  .about-banner {
    height: 250px;
  }
  
  .banner-content h1 {
    font-size: 32px;
    padding-top: 15%;
  }
  
  .banner-content p {
    font-size: 16px;
  }
}

.who-we-are-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-number {
  font-family: 'Saira', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--wp--preset--color--vivid-cyan-blue);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 16px;
  color: #666;
}

.who-we-are-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
}

.who-we-are-images img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.who-we-are-images .large-image {
  grid-row: span 4;
}

/* Our Services Section */
.services {
  background: white;
}

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

.service-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 48px;
  color: var(--wp--preset--color--vivid-cyan-blue);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: 'Saira', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  color: var(--wp--preset--color--vivid-cyan-blue);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.service-btn:hover {
  color: #057ab8;
}

.service-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(5px);
}

/* Destinations Section */
.destinations {
  background: #f9f9f9;
}

.destinations-header {
  text-align: center;
  margin-bottom: 50px;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.destination-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.destination-image {
  position: relative;
  height: 250px;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
}

.destination-content {
  padding: 25px;
}

.destination-content h3 {
  font-family: 'Saira', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.destination-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.destination-meta span {
  font-weight: 600;
  color: #666;
}

.destination-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.destination-btn {
  display: inline-block;
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
}

.destination-btn:hover {
  background: #057ab8;
}

/* Why Choose Us Section */
.why-choose-us {
  background: white;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wp-content/uploads/sites/16/2025/10/bg_header_2.png') no-repeat center top;
  background-size: contain;
  opacity: 0.1;
  z-index: 0;
}

.why-choose-us-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.features-left {
  flex: 1;
  min-width: 300px;
}

.features-center {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-center img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.features-right {
  flex: 1;
  min-width: 300px;
}

.feature-item {
  display: flex;
  margin-bottom: 40px;
}

.feature-icon {
  min-width: 64px;
  height: 64px;
  background: #f0f8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 24px;
  color: var(--wp--preset--color--vivid-cyan-blue);
}

.feature-content h3 {
  font-family: 'Saira', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.feature-content p {
  color: #666;
  line-height: 1.6;
}

/* Video Section */
.video-section {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('wp-content/uploads/sites/16/2025/10/img_8.jpg') no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.video-content {
  max-width: 800px;
  margin: 0 auto;
}

.video-btn {
  width: 80px;
  height: 80px;
  background: var(--wp--preset--color--vivid-cyan-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-btn:hover {
  transform: scale(1.1);
}

.video-btn i {
  font-size: 30px;
  color: white;
}

.video-section h2 {
  font-family: 'Saira', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.video-section p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.video-section .btn {
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block;
}

.video-section .btn:hover {
  background: #057ab8;
}

/* Stats Section */
.stats-section {
  background: #f9f9f9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-box {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-family: 'Saira', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--wp--preset--color--vivid-cyan-blue);
  margin-bottom: 15px;
}

.stat-title {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

/* Floating hero video + floating card (unique names to avoid conflicts) */
:root {
  --lime-brand: #07d8c3;
  --dark-text: #111111;
  --gray-text: #6b7280;
  --white: #ffffff;
  --shadow-soft-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* VIDEO SECTION */
.video-section {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 500px;
  overflow: hidden;
}

.video-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 20s ease;
  animation: fadeIn 1s ease-in-out forwards;
}

.video-section:hover .video-background {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent, rgba(0, 0, 0, 0.1));
}

/* CARD CONTAINER */
.card-container {
  position: relative;
  max-width: 1152px;
  margin: -8rem auto 5rem;
  padding: 0 1rem;
  z-index: 20;
}

@media (min-width: 768px) {
  .card-container {
    margin-top: -12rem;
  }
}

.info-card {
  position: relative;
  background: var(--white);
  border-radius: 2.5rem;
  box-shadow: var(--shadow-soft-xl);
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .info-card {
    padding: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .info-card {
    padding-right: 6rem;
  }
}

/* BADGE */
.badge-about {
  position: absolute;
  top: -1.25rem;
  left: 2rem;
  background-color: var(--lime-brand);
  padding: 0.4rem 1.5rem;
  border-radius: 0.225rem;
  box-shadow: var(--shadow-md);
  transform: skewX(-15deg);
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark-text);
  transform: skewX(15deg);
}

@media (min-width: 768px) {
  .badge-about {
    left: 3rem;
  }

  .badge-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 640px) {
  .video-section {
    height: 45vh;
    min-height: 260px;
  }

  .badge-about {
    top: -1rem;
    left: 1rem;
    padding: 0.3rem 1.1rem;
  }

  .badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }
}

/* FLOATING IMAGE */
.floating-image {
  display: none;
  position: absolute;
  top: -4rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--white);
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .floating-image {
    display: block;
  }
}

@media (min-width: 1024px) {
  .floating-image {
    width: 12rem;
    height: 12rem;
  }
}

/* TEXT & CONTENT */
.card-content {
  max-width: 48rem;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }
}

.text-body {
  color: var(--gray-text);
  font-size: 1.125rem;
  line-height: 1.625;
}

/* BUTTONS */
.btn-group {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
  }
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
}

.icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--lime-brand);
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-icon {
  transform: rotate(-45deg); 
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.9;
  }
}


/* Premium Services Section */
.premium-services {
  background: white;
  position: relative;
  overflow: hidden;
}

.premium-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('wp-content/uploads/sites/16/2025/10/bg_header_1.png') no-repeat center top;
  background-size: contain;
  opacity: 0.1;
  z-index: 0;
}

.premium-services-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.premium-services-text {
  flex: 1;
  min-width: 300px;
}

.premium-services-text h2 {
  font-family: 'Saira', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.premium-services-text p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.experience-box {
  display: flex;
  align-items: center;
  background: #f0f8ff;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
}

.experience-number {
  font-family: 'Saira', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--wp--preset--color--vivid-cyan-blue);
  margin-right: 20px;
}

.experience-content h3 {
  font-family: 'Saira', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.experience-content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.premium-services-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.premium-services-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.premium-services-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--wp--preset--color--vivid-cyan-blue);
  border-radius: 8px;
  z-index: -1;
}

/* Premium Services Grid */
.premium-services-grid {
  margin-top: 60px;
}

.premium-services-grid h2 {
  text-align: center;
  font-family: 'Saira', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #333;
}

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

.premium-service-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.premium-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.premium-service-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: var(--wp--preset--color--vivid-cyan-blue);
}

.premium-service-card h3 {
  font-family: 'Saira', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.premium-service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.premium-service-btn {
  display: inline-flex;
  align-items: center;
  color: var(--wp--preset--color--vivid-cyan-blue);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.premium-service-btn:hover {
  color: #057ab8;
}

.premium-service-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.premium-service-btn:hover i {
  transform: translateX(5px);
}

/* Footer */
.site-footer {
  background: #333;
  color: white;
  padding: 20px 0 30px;
}

.footer-top {
  text-align: center;
  margin-bottom: 50px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
}

.footer-about {
  max-width: 600px;
  margin: 20px auto 0;
}

.footer-about p {
  color: #ccc;
  line-height: 1.8;
  font-size: 16px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 60px;
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: stretch;
}

.footer-widget h4 {
  font-family: 'Saira', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-widget p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}

.footer-top .social-links {
  margin-top: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #444;
  border-radius: 50%;
  color: white;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--wp--preset--color--vivid-cyan-blue);
}

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

.footer-links a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--wp--preset--color--vivid-cyan-blue);
}

.footer-widget.contact-widget {
  text-align: center;
}

.footer-widget.contact-widget .footer-links li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-widget.contact-widget .footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget.contact-widget .footer-links a:hover {
  color: var(--wp--preset--color--vivid-cyan-blue);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  color: #ccc;
  font-size: 14px;
}

@media (max-width: 640px) {
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-left: 20px;
  }

  .footer-widget {
    flex: 1 1 100%;
  }

  .footer-widget:nth-child(1),
  .footer-widget:nth-child(2) {
    flex: 1 1 calc(50% - 12px);
  }

  .social-links {
    justify-content: center;
    gap: 20px;
  }
}

/* Mobile Navigation - Auto height based on content */
.mobile-nav-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-height: none;
  background: #ffffff;
  z-index: 1050;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease;
}


.mobile-nav-container.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile nav header with close button */
.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid #eee;
}

.mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 8px;
  transition: color 0.2s ease;
}

.mobile-close:hover {
  color: var(--wp--preset--color--vivid-cyan-blue);
}

.mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 8px;
  transition: color 0.2s ease;
}

.mobile-close:hover {
  color: var(--wp--preset--color--vivid-cyan-blue);
}

body.no-scroll {
  overflow: hidden;
}

.mobile-nav-content {
  padding: 12px 20px 24px;
}

/* Mobile nav content padding - adjusted for top-start position */
.mobile-nav-container .mobile-nav-content {
  padding-top: 8px;
}

.mobile-nav-content ul {
  flex-direction: column;
  align-items: flex-start;
}

.mobile-nav-content li {
  width: 100%;
  margin: 5px 0;
}

.mobile-nav-content a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  border-left: 4px solid transparent;
  padding-left: 12px;
  transition: border-left-color 0.3s ease, color 0.3s ease;
  color: #556052;
}

.mobile-nav-content li.has-submenu>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.mobile-nav-content .mobile-arrow {
  font-size: 12px;
  color: #556052;
  transition: transform 0.3s ease;
}

.mobile-nav-content li.open>a .mobile-arrow {
  transform: rotate(180deg);
  color: var(--wp--preset--color--vivid-cyan-blue);
}

/* Active indicator for mobile nav */
.mobile-nav-content a.active {
  border-left-color: var(--wp--preset--color--vivid-cyan-blue);
  color: var(--wp--preset--color--vivid-cyan-blue);
  font-weight: 600;
}

.mobile-nav-content .sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: #f8f8f8;
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-content .sub-menu.active {
  max-height: 2000px;
}

.mobile-nav-content .sub-menu li {
  border-bottom: 1px solid #eee;
  margin: 0;
}

.mobile-nav-content .sub-menu a {
  padding: 3px 20px;
  line-height: 1.4;
  font-size: 14px;
}

.mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  align-items: center;
  text-align: center;
}

.mobile-contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mobile-contact-icon {
  margin-right: 10px;
  color: var(--wp--preset--color--vivid-cyan-blue);
  font-size: 20px;
}

.mobile-contact-text {
  font-size: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-contact-text span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.mobile-booking-btn {
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}

.mobile-booking-btn:hover {
  background: #057ab8;
}

.mobile-booking-btn i {
  margin-left: 8px;
}

/* Responsive Styles */
@media (min-width: 1081px) {
  .main-navigation {
    display: flex !important;
  }

  .menu-toggle {
    display: none !important;
  }

  .contact-info {
    display: flex !important;
  }
}

@media (max-width: 1200px) and (min-width: 992px) {
  .main-navigation ul {
    gap: 15px;
  }
  
  .main-navigation a {
    font-size: 16px;
  }
  
  .contact-info {
    gap: 10px;
  }
  
  .contact-text {
    font-size: 11px;
  }
  
  .booking-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
}

@media (max-width: 1100px) and (min-width: 992px) {
  .header-left,
  .header-right {
    max-width: 40%;
  }
  
  .main-navigation ul {
    gap: 12px;
  }
  
  .main-navigation a {
    font-size: 15px;
  }
  
  .contact-info {
    gap: 8px;
  }
  
  .contact-text {
    font-size: 10px;
  }
  
  .booking-btn {
    padding: 5px 10px;
    font-size: 10px;
  }
}

@media (max-width: 1080px) {
  .main-navigation {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .contact-info {
    display: none;
  }
}

@media (max-width: 991px) {
  .site-header-wrapper {
    position: sticky;
  }

  .main-navigation {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .contact-info {
    display: none;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content h4 {
    font-size: 18px;
  }

  .hero-content h6 {
    font-size: 30px;
    font-weight: 700;
    color: white;
    text-decoration: double;
    text-decoration-color: var(--wp--preset--color--vivid-cyan-blue);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-style: solid;
    text-decoration-color: var(--wp--preset--color--vivid-cyan-blue);
    text-decoration-thickness: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5);
  }

  .who-we-are-content {
    flex-direction: column;
  }

  .who-we-are-images {
    order: -1;
  }

  .why-choose-us-content {
    flex-direction: column;
  }

  .premium-services-content {
    flex-direction: column;
  }

  .experience-box {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }

  .header-center .logo a {
    padding: 2% 7% 1px 10%;
  }

  /* Make logo a bit smaller on mobile so it fits the house shape and center it */
  .logo-shape {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .logo-shape img {
    height: 80px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
    display: block;
    /* Keep the existing horizontal nudge and add the vertical nudge */
    transform: translate(6px, 6px);
    transition: transform 180ms ease;
  }

  /* Reduce padding inside the shaped container on narrow screens (increase slightly to avoid edge) */
  .logo-shape.hexagon,
  .logo-shape.diagonal {
    padding: 8px 10px;
  }

  /* Slight right nudge to visually center the logo inside the clipped shape */
  .logo-shape img {
    transform: translateX(6px);
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content h4 {
    font-size: 16px;
  }

  .hero-btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  section {
    padding: 10px !important;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .stat-item {
    min-width: 100%;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto 15px;
  }
}

.font-serif-title {
  font-family: 'Playfair Display', serif;
}

.font-sans-body {
  font-family: 'Lato', sans-serif;
}

.text-dark-green {
  color: #1a3c40;
}

.text-sage-green {
  color: #7d9c6d;
}

.text-sage-blue {
  color: #0693e3;
}

.bg-sage-green {
  background-color: #74a86f;
}

.bg-sage-blue {
  background-color: #0693e3;
}

.circle-badge {
  box-shadow: 0 0 0 10px white;
}

.program-grid-section {
  background: #f7f9fc;
  padding: 30px 0;
  font-family: 'Roboto', sans-serif;
}

@media (max-width: 768px) {
  .program-grid-section {
    padding: 30px 0 0 0 !important;
  }
}

.program-grid-section .condensed-text,
.program-grid-section h1,
.program-grid-section h2,
.program-grid-section h3 {
  font-family: 'Oswald', sans-serif;
}

.program-grid-section .grid-card {
  border-radius: 24px;
}

.program-grid-section .bg-aqua-main {
  background-color: #4ECDC4;
}

.program-grid-section .text-aqua-main {
  color: #4ECDC4;
}

.program-grid-section .card-shadow {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.program-grid-section .hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-grid-section .hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

.program-grid-section .icon-container {
  margin-top: -28px;
  z-index: 10;
  position: relative;
}

/* Committee Members Tree Structure */
.committee-tree {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 20px;
  padding: 0;
  margin-left: 1%;
  margin-right: 1%;
}

.tree-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.row-1 {
  justify-content: center;
}

.row-1 .committee-member {
  flex: 0 0 auto;
}

.row-3 {
  justify-content: center;
}

.row-3 .committee-member {
  flex: 0 0 calc(15% - 23px);
  min-width: 200px;
}

.row-4 {
  justify-content: center;
}

.row-4 .committee-member {
  flex: 0 0 calc(15% - 24px);
  min-width: 180px;
}

.row-5 {
  justify-content: center;
}

.row-5 .committee-member {
  flex: 0 0 calc(15% - 24px);
  min-width: 140px;
}

.tree-connector {
  width: 100%;
  height: 40px;
  position: relative;
  margin: 20px 0;
}

.tree-connector::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #1491da, #1491da);
}

.tree-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #1491da;
}

.committee-member {
  text-align: center;
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-photo {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #1491da;
  position: relative;
}

.row-1 .member-photo {
  width: 200px;
  height: 200px;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.committee-member:hover .member-photo img {
  transform: scale(1.05);
}

.member-info h3 {
  font-family: 'Saira', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.row-1 .member-info h3 {
  font-size: 20px;
}

.member-info p {
  font-family: 'Golos Text', sans-serif;
  font-size: 13px;
  color: #666;
  font-weight: 400;
  margin-bottom: 15px;
}

.row-1 .member-info p {
  font-size: 16px;
}


/* Mobile Responsive for Committee Tree */
@media (max-width: 1200px) {
  .row-3 .committee-member {
    flex: 0 0 calc(33.333% - 20px);
  }
  
  .row-4 .committee-member {
    flex: 0 0 calc(25% - 23px);
  }
  
  .row-5 .committee-member {
    flex: 0 0 calc(25% - 23px);
  }
}

@media (max-width: 768px) {
  .committee-tree {
    padding: 0 10px;
    margin-left: 0;
    margin-right: 0;
    gap: 40px;
  }
  
  .tree-connector {
    height: 30px;
    margin: 15px 0;
  }
  
  .tree-connector::before {
    width: 2px;
  }
  
  .tree-connector::after {
    width: 50px;
    height: 2px;
  }
  
  .row-1 {
    justify-content: center;
  }
  
  .row-1 .committee-member {
    flex: 0 0 auto;
  }
  
  .row-3 {
    justify-content: center;
  }
  
  .row-3 .committee-member {
    flex: 0 0 calc(50% - 8px);
    min-width: 140px;
  }
  
  .row-4 {
    justify-content: center;
  }
  
  .row-4 .committee-member {
    flex: 0 0 calc(50% - 8px);
    min-width: 140px;
  }
  
  .row-5 {
    justify-content: center;
  }
  
  .row-5 .committee-member {
    flex: 0 0 calc(50% - 8px);
    min-width: 140px;
  }
  
  .committee-member {
    padding: 20px 15px;
  }
  
  .member-photo {
    width: 100px;
    height: 100px;
  }
  
  .row-1 .member-photo {
    width: 120px;
    height: 120px;
  }
  
  .member-info h3 {
    font-size: 14px;
  }
  
  .row-1 .member-info h3 {
    font-size: 16px;
  }
  
  .member-info p {
    font-size: 12px;
  }
  
  .row-1 .member-info p {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .committee-tree {
    padding: 0 5px;
    gap: 30px;
  }
  
  .tree-connector {
    height: 25px;
    margin: 12px 0;
  }
  
  .tree-connector::before {
    width: 2px;
  }
  
  .tree-connector::after {
    width: 40px;
    height: 2px;
  }
  
  .row-1 {
    justify-content: center;
  }
  
  .row-1 .committee-member {
    flex: 0 0 auto;
  }
  
  .row-3 {
    justify-content: center;
  }
  
  .row-3 .committee-member {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 100px;
  }
  
  .row-4 {
    justify-content: center;
  }
  
  .row-4 .committee-member {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 100px;
  }
  
  .row-5 {
    justify-content: center;
  }
  
  .row-5 .committee-member {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 100px;
  }
  
  .committee-member {
    padding: 15px 10px;
  }
  
  .member-photo {
    width: 80px;
    height: 80px;
  }
  
  .row-1 .member-photo {
    width: 100px;
    height: 100px;
  }
  
  .member-info h3 {
    font-size: 12px;
  }
  
  .row-1 .member-info h3 {
    font-size: 14px;
  }
  
  .member-info p {
    font-size: 11px;
  }
  
  .row-1 .member-info p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .committee-tree {
    padding: 0 5px;
    gap: 2px;
  }
  
  .tree-connector {
    height: 20px;
    margin: 10px 0;
  }
  
  .tree-connector::before {
    width: 2px;
  }
  
  .tree-connector::after {
    width: 35px;
    height: 2px;
  }
  
  .row-1 {
    justify-content: center;
  }
  
  .row-1 .committee-member {
    flex: 0 0 auto;
  }
  
  .row-3 {
    justify-content: center;
  }
  
  .row-3 .committee-member {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 90px;
  }
  
  .row-4 {
    justify-content: center;
  }
  
  .row-4 .committee-member {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 90px;
  }
  
  .row-5 {
    justify-content: center;
  }
  
  .row-5 .committee-member {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 90px;
  }
  
  .committee-member {
    padding: 12px 8px;
  }
  
  .member-photo {
    width: 70px;
    height: 70px;
  }
  
  .row-1 .member-photo {
    width: 90px;
    height: 90px;
  }
  
  .member-info h3 {
    font-size: 11px;
  }
  
  .row-1 .member-info h3 {
    font-size: 13px;
  }
  
  .member-info p {
    font-size: 10px;
  }
  
  .row-1 .member-info p {
    font-size: 11px;
  }
}

/* Affiliated Clubs Styles */
.countries-grid {
  /* Moved to resources-content section above */
}

.country-card {
  /* Moved to resources-content section above */
}

.country-card:hover {
  /* Moved to resources-content section above */
}

.country-flag {
  /* Moved to resources-content section above */
}

.country-flag img {
  /* Moved to resources-content section above */
}

.country-info h3 {
  /* Moved to resources-content section above */
}

.club-count {
  /* Moved to resources-content section above */
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  border-radius: 15px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  font-family: 'Saira', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.close {
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.close:hover {
  opacity: 0.7;
}

.modal-body {
  padding: 30px;
  max-height: 60vh;
  overflow-y: auto;
}

.clubs-list {
  display: grid;
  gap: 20px;
}

.club-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e9ecef;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  gap: 20px;
}

.club-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.club-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--wp--preset--color--vivid-cyan-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.club-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-initials {
  color: white;
  font-family: 'Saira', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.club-info {
  flex: 1;
}

.club-item h4 {
  font-family: 'Saira', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.club-details {
  display: grid;
  gap: 8px;
}

.club-details p {
  font-family: 'Golos Text', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.club-details i {
  color: var(--wp--preset--color--vivid-cyan-blue);
  width: 16px;
  text-align: center;
}

/* Mobile Responsive for Affiliated Clubs */
@media (max-width: 768px) {
  .countries-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .country-card {
    padding: 20px;
  }
  
  .country-flag {
    width: 60px;
    height: 45px;
  }
  
  .country-info h3 {
    font-size: 20px;
  }
  
  .modal-content {
    margin: 10% auto;
    width: 95%;
  }
  
  .modal-header {
    padding: 15px 20px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .club-item {
    padding: 15px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .club-image {
    width: 60px;
    height: 60px;
  }
  
  .club-initials {
    font-size: 18px;
  }
  
  .club-item h4 {
    font-size: 16px;
  }
  
  .club-details p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .countries-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .modal-content {
    margin: 15% auto;
    width: 98%;
  }
  
  .modal-header {
    padding: 12px 15px;
  }
  
  .modal-header h2 {
    font-size: 18px;
  }
  
  .modal-body {
    padding: 15px;
  }
  
  .club-item {
    padding: 12px;
    gap: 12px;
  }
  
  .club-image {
    width: 50px;
    height: 50px;
  }
  
  .club-initials {
    font-size: 16px;
  }
}

.section-intro {
  padding: 40px 0;
  background: white;
}

/* Club Resources Section */
.club-resources {
  background: #f8f9fa;
  padding: 60px 0;
}

.resources-layout {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.resources-sidebar {
  width: 30%;
  min-width: 280px;
}

.resources-nav {
  background: #2c3e50;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.resources-nav h3 {
  color: #ecf0f1;
  font-family: 'Saira', sans-serif;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #34495e;
  padding-bottom: 15px;
}

.resources-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resources-nav li {
  margin-bottom: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  color: #bdc3c7;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
  border: 1px solid transparent;
}

.nav-link:hover {
  background: #34495e;
  color: #ecf0f1;
  border-color: #3498db;
}

.nav-link.active {
  background: #3498db;
  color: white;
  border-color: #2980b9;
}

.resources-content {
  flex: 1;
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-height: 400px;
  max-height: 500px;
  overflow-y: auto;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.country-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: var(--wp--preset--color--vivid-cyan-blue);
}

.country-flag {
  width: 50px;
  height: 38px;
  margin: 0 auto 12px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-info h3 {
  font-family: 'Saira', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.club-count {
  font-family: 'Golos Text', sans-serif;
  font-size: 12px;
  color: var(--wp--preset--color--vivid-cyan-blue);
  font-weight: 600;
  margin: 0;
}

.content-panel {
  display: none;
}

.content-panel.active {
  display: block;
}

.content-panel h4 {
  font-family: 'Saira', sans-serif;
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.download-options {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: #057ab8;
}

.download-btn.small {
  padding: 8px 15px;
  font-size: 14px;
}

.search-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.search-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  font-size: 16px;
}

.search-btn {
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

.procedure-list {
  margin-top: 20px;
  padding-left: 20px;
}

.procedure-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.letter-sample {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
  margin-top: 20px;
  border-left: 4px solid var(--wp--preset--color--vivid-cyan-blue);
}

@media (max-width: 768px) {
  .resources-layout {
    flex-direction: column;
  }
  
  .resources-sidebar {
    width: 100%;
  }
  
  .download-options {
    flex-direction: column;
  }
  
  .search-form {
    flex-direction: column;
  }
}

/* Membership Content Styles */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0px 20px;
}

.breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 25px;
  color: #1a3c40;
}

.breadcrumbs a {
  text-decoration: none;
  color: #1a3c40;
}

.breadcrumbs span {
  margin: 0 5px;
  color: #999;
}

.categories-section, .fee-section, .benefits-section {
  margin-top: 10px;
  padding: 0 80px;
}

.membership-card {
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .categories-section, .fee-section, .benefits-section {
    padding: 0 10px;
  }
}

.section-title {
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  margin-top: 40px;
  font-size: 1.6rem;
  color: #333;
}

.blue-line {
  width: 40px;
  height: 3px;
  background-color: #0077b6;
  margin: 0 auto 30px;
}

.cat-content {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  align-items: flex-end;
}

.cat-text {
  flex: 1.2;
}

.cat-text h3 {
  margin-top: 20px;
  margin-bottom: 3px;
}

.cat-text h3:first-child {
  margin-top: 0;
}

.cat-visual {
  flex: 0.8;
  text-align: center;
}

.membership-card {
  width: 100%;
  max-width: 380px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-bottom: 10px;
}

.apply-link {
  display: block;
  color: #0077b6;
  text-decoration: underline;
  font-weight: bold;
  margin-bottom: 5px;
}

.right-cat-items {
  text-align: left;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.9rem;
  table-layout: auto;
}

.fee-table th, .fee-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.fee-table th {
  background-color: #f9f9f9;
  font-weight: bold;
}

.row-header {
  background-color: #f2f2f2;
  font-weight: bold;
  color: #333;
}

.brief-cell {
  width: 30%;
}

.notes {
  margin-bottom: 20px;
}

.notes ul {
  list-style-type: square;
  padding-left: 20px;
}

.benefits-section {
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.benefits-list {
  padding-left: 20px;
}

.benefits-list li {
  margin-bottom: 10px;
}

.membership-footer {
  margin-top: 40px;
  padding: 20px 0;
}

.download-link {
  color: #0077b6;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive for membership content */
@media (max-width: 1024px) {
  .fee-table {
    font-size: 0.85rem;
  }
  .fee-table th, .fee-table td {
    padding: 10px 8px;
  }
}

@media (max-width: 768px) {
  .cat-content {
    flex-direction: column;
  }
  .fee-table {
    display: block;
    overflow-x: auto;
    font-size: 0.65rem;
    -webkit-overflow-scrolling: touch;
  }
  .fee-table th, .fee-table td {
    padding: 6px 3px;
  }
  .brief-cell {
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .categories-section, .fee-section, .benefits-section {
    padding: 0 5px;
  }
  .fee-table {
    font-size: 0.6rem;
  }
  .fee-table th, .fee-table td {
    padding: 4px 2px;
  }
}


/* Sports Grid Section */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.sports-grid .grid-image {
  position: relative;
  z-index: 1;
  height: 320px;
  overflow: hidden;
}

.sports-grid .grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sports-grid .grid-content {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.sports-grid .grid-content::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}

.sports-grid .arrow-left::before {
  left: -15px;
  border-width: 15px 15px 15px 0;
  border-color: transparent #fff transparent transparent;
}

.sports-grid .arrow-right::before {
  right: -15px;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #fff;
}

.sports-grid .date {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #cda434;
  font-weight: 600;
  margin-bottom: 8px;
}

.sports-grid .date .day {
  font-size: 22px;
}

.sports-grid .date .month {
  font-size: 11px;
}

.sports-grid .title {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.sports-grid .desc {
  color: #777;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 90%;
}

.sports-grid .read-more {
  display: inline-block;
  text-decoration: none;
  color: #555;
  font-size: 10px;
  font-weight: 700;
  padding: 10px 22px;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.sports-grid .read-more:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
  color: #333;
}

@media (max-width: 1024px) {
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sports-grid > div:nth-child(5) { order: 6; }
  .sports-grid > div:nth-child(6) { order: 5; }
  .sports-grid > div:nth-child(7) { order: 8; }
  .sports-grid > div:nth-child(8) { order: 7; }
  
  .sports-grid .arrow-right::before {
    right: auto;
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent #fff transparent transparent;
  }
}

@media (max-width: 600px) {
  .sports-grid {
    grid-template-columns: 1fr;
  }
  .sports-grid .grid-content::before {
    display: none;
  }
}


/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--wp--preset--color--vivid-cyan-blue) 0%, #057ab8 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-family: 'Saira', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-btn.primary {
  background: white;
  color: var(--wp--preset--color--vivid-cyan-blue);
}

.cta-btn.primary:hover {
  background: transparent;
  color: white;
}

.cta-btn.secondary {
  background: transparent;
  color: white;
}

.cta-btn.secondary:hover {
  background: white;
  color: var(--wp--preset--color--vivid-cyan-blue);
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}


/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

.whatsapp-float.bounce {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-10px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-5px); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px;
    font-size: 30px;
  }
}

/* Gallery Grid Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-rows: 180px;
  padding: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  height: 100%;
}

.item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
  display: flex;
  align-items: flex-end;
  padding: 15px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .overlay-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
}

.gallery-item .overlay-text h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
}

.gallery-item .overlay-text p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    padding: 10px;
  }
  .gallery-item .overlay-text {
    font-size: 13px;
  }
  .gallery-item .overlay-text h3 {
    font-size: 15px;
  }
  .gallery-item .overlay-text p {
    font-size: 12px;
  }
  .item-tall {
    grid-row: span 2;
  }
}

/* ── Affiliated Clubs – Standalone Search Section ───────────────────────── */
.club-search-section {
  background: #f0f4f8;
  padding: 40px 0;
  border-bottom: 1px solid #e2e8f0;
}

.club-search-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.club-search-heading {
  text-align: center;
  margin-bottom: 24px;
}

.club-search-heading i {
  font-size: 28px;
  color: var(--wp--preset--color--vivid-cyan-blue);
  margin-bottom: 8px;
  display: block;
}

.club-search-heading h3 {
  font-family: 'Saira', sans-serif;
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 6px;
}

.club-search-heading p {
  color: #666;
  font-size: 14px;
}

.club-search-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.club-search-bar {
  flex: 1;
  min-width: 200px;
  position: relative;
  display: flex;
  align-items: center;
}

.club-search-bar i {
  position: absolute;
  left: 14px;
  color: #999;
  font-size: 14px;
  pointer-events: none;
}

.club-search-bar input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 15px;
  background: white;
  transition: border-color 0.2s;
}

.club-search-bar input:focus {
  outline: none;
  border-color: var(--wp--preset--color--vivid-cyan-blue);
}

.club-search-controls select {
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  color: #444;
  cursor: pointer;
  transition: border-color 0.2s;
  min-width: 150px;
}

.club-search-controls select:focus {
  outline: none;
  border-color: var(--wp--preset--color--vivid-cyan-blue);
}

.club-search-results {
  margin-top: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  max-height: 480px;
  overflow-y: auto;
}

.club-search-empty {
  padding: 24px 20px;
  color: #888;
  text-align: center;
  font-size: 14px;
}

.club-search-empty i { margin-right: 6px; }

.club-search-result-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.club-search-result-item:last-child { border-bottom: none; }
.club-search-result-item:hover { background: #f8fafc; }

.club-search-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #eee;
}

.club-search-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-search-initials {
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.club-search-info { flex: 1; }

.club-search-info h4 {
  font-family: 'Saira', sans-serif;
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 3px;
}

.club-search-meta {
  font-size: 12px;
  color: var(--wp--preset--color--vivid-cyan-blue);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.club-search-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.club-search-details span {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.club-search-details i { color: #aaa; font-size: 11px; }

.club-search-details a {
  color: var(--wp--preset--color--vivid-cyan-blue);
  text-decoration: none;
}

.club-search-details a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .club-search-controls { flex-direction: column; }
  .club-search-controls select { min-width: unset; width: 100%; }
}

/* ── Affiliation Request Procedure Section ──────────────────────── */
.affiliation-procedure-section {
  background: #f8f9fa;
  padding: 70px 0;
  border-top: 1px solid #e9ecef;
}

.affiliation-procedure-section .section-header {
  margin-bottom: 50px;
}

.procedure-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.procedure-step {
  background: white;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.procedure-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
}

.step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wp--preset--color--vivid-cyan-blue);
  color: white;
  font-family: 'Saira', sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h4 {
  font-family: 'Saira', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .procedure-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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