@import url("https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap");

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

:root {
  --primary-color: #1b4965;
  --secondary-color: #bee9e8;
  --text-dark: #1b4965;
  --text-light: #bee9e8;
  --white: #ffffff;
  --shadow: rgba(27, 73, 101, 0.1);
  --shadow-dark: rgba(27, 73, 101, 0.2);
}

body {
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  overflow-y: auto !important;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
}

html {
  overflow-y: auto !important;
  height: auto;
}

/* Video Background */
.video-background {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Text Overlay */
.hero-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.45) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(27, 73, 101, 0.5) 100%
  );
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
  position: relative;
  pointer-events: auto;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(190, 233, 232, 0.3) 0%,
    rgba(190, 233, 232, 0) 70%
  );
  border-radius: 50%;
  opacity: 0;
  animation: pulseGlow 2s ease-in-out 0.3s forwards;
}

@keyframes pulseGlow {
  0% {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.5);
  }
}

.hero-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 25px 0;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.title-line-1 {
  display: block;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: titleAppear 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes titleAppear {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-title-gradient {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--secondary-color) 50%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease 0.5s forwards;
}

.hero-subtitle p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: 1.2px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.hero-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    var(--primary-color),
    var(--secondary-color),
    transparent
  );
  margin: 30px auto 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease 0.7s forwards;
  border-radius: 2px;
  box-shadow: 0 2px 15px rgba(190, 233, 232, 0.5);
  position: relative;
}

.hero-divider::before,
.hero-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(190, 233, 232, 0.8);
}

.hero-divider::before {
  left: -15px;
}

.hero-divider::after {
  right: -15px;
}

.hero-cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(135deg, var(--primary-color), #2a5f7a);
  color: var(--white);
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 40px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease 0.9s forwards;
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.5),
    0 0 30px rgba(190, 233, 232, 0.2);
  border-radius: 50px;
  border: 2px solid rgba(190, 233, 232, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-cta-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(
    circle,
    rgba(190, 233, 232, 0.4),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease;
}

.hero-cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.hero-cta-button:hover {
  background: linear-gradient(135deg, var(--secondary-color), #a8e6e3);
  color: var(--primary-color);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(190, 233, 232, 0.7),
    0 0 50px rgba(190, 233, 232, 0.4);
  border-color: var(--secondary-color);
}

.hero-cta-button:active {
  transform: translateY(-2px) scale(1.02);
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  opacity: 0;
  animation: fadeInUp 1s ease 1.5s forwards, bounce 2s ease-in-out 2.5s infinite;
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
  color: var(--secondary-color);
}

.scroll-indicator-text {
  font-family: "Quicksand", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.scroll-indicator-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-indicator-arrow {
  border-color: var(--secondary-color);
  background: rgba(190, 233, 232, 0.2);
  box-shadow: 0 0 20px rgba(190, 233, 232, 0.4);
}

.scroll-indicator-arrow i {
  font-size: 16px;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

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

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* Social Media Icons */
.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 1s ease 0.5s forwards;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.social-icon i {
  font-size: 24px;
  transition: all 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.1);
}

/* Hero Badge */
.hero-badge {
  margin-top: 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-shadow: 0 0 20px rgba(190, 233, 232, 0.6),
    2px 2px 8px rgba(0, 0, 0, 0.7);
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 1s ease 1.1s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-badge i {
  color: #ffd700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  animation: starTwinkle 2s ease-in-out infinite;
}

.hero-badge i:first-child {
  animation-delay: 0s;
}

.hero-badge i:last-child {
  animation-delay: 0.5s;
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Floating Text Elements */
.floating-text {
  position: absolute;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1.5px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: fadeInFloat 2s ease forwards;
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 25px;
  background: rgba(27, 73, 101, 0.2);
  border: 1px solid rgba(190, 233, 232, 0.3);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.floating-text:hover {
  color: var(--secondary-color);
  background: rgba(190, 233, 232, 0.25);
  border-color: var(--secondary-color);
  transform: scale(1.1);
}

.floating-text-1 {
  top: 15%;
  left: 10%;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary-color);
  background: rgba(190, 233, 232, 0.25);
  border: 2px solid var(--secondary-color);
  animation: fadeInFloat 2s ease 0.5s forwards,
    float1 20s ease-in-out infinite;
}

.floating-text-2 {
  top: 25%;
  right: 15%;
  animation: fadeInFloat 2s ease 0.8s forwards,
    float2 18s ease-in-out infinite;
}

.floating-text-3 {
  top: 60%;
  left: 8%;
  animation: fadeInFloat 2s ease 1.1s forwards,
    float3 22s ease-in-out infinite;
}

.floating-text-4 {
  top: 70%;
  right: 12%;
  animation: fadeInFloat 2s ease 1.4s forwards,
    float4 19s ease-in-out infinite;
}

.floating-text-5 {
  top: 35%;
  left: 5%;
  animation: fadeInFloat 2s ease 1.7s forwards,
    float5 21s ease-in-out infinite;
}

.floating-text-6 {
  top: 50%;
  right: 8%;
  animation: fadeInFloat 2s ease 2s forwards,
    float6 17s ease-in-out infinite;
}

.floating-text-7 {
  top: 80%;
  left: 20%;
  animation: fadeInFloat 2s ease 2.3s forwards,
    float7 23s ease-in-out infinite;
}

.floating-text-8 {
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInFloat 2s ease 2.6s forwards,
    float8 20s ease-in-out infinite;
}

@keyframes fadeInFloat {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -40px) rotate(2deg);
  }
  50% {
    transform: translate(-20px, -60px) rotate(-2deg);
  }
  75% {
    transform: translate(40px, -30px) rotate(1deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-35px, 45px) rotate(-2deg);
  }
  50% {
    transform: translate(25px, 50px) rotate(2deg);
  }
  75% {
    transform: translate(-30px, 35px) rotate(-1deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(40px, 30px) rotate(2deg);
  }
  50% {
    transform: translate(-25px, 50px) rotate(-2deg);
  }
  75% {
    transform: translate(35px, 25px) rotate(1deg);
  }
}

@keyframes float4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-30px, -35px) rotate(-2deg);
  }
  50% {
    transform: translate(20px, -50px) rotate(2deg);
  }
  75% {
    transform: translate(-25px, -30px) rotate(-1deg);
  }
}

@keyframes float5 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(25px, 40px) rotate(1deg);
  }
  50% {
    transform: translate(-35px, 45px) rotate(-1deg);
  }
  75% {
    transform: translate(30px, 35px) rotate(2deg);
  }
}

@keyframes float6 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-40px, -30px) rotate(-2deg);
  }
  50% {
    transform: translate(30px, -45px) rotate(2deg);
  }
  75% {
    transform: translate(-35px, -25px) rotate(-1deg);
  }
}

@keyframes float7 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(35px, 40px) rotate(2deg);
  }
  50% {
    transform: translate(-25px, 50px) rotate(-2deg);
  }
  75% {
    transform: translate(40px, 30px) rotate(1deg);
  }
}

@keyframes float8 {
  0%, 100% {
    transform: translate(-50%, 0) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -50px) rotate(2deg);
  }
  50% {
    transform: translate(-50%, -70px) rotate(-2deg);
  }
  75% {
    transform: translate(-50%, -40px) rotate(1deg);
  }
}

/* Hero Decorative Wave */
.hero-text-overlay::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(27, 73, 101, 0.3) 50%,
    rgba(27, 73, 101, 0.5) 100%
  );
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInGlow {
  0% {
    opacity: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  50% {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7),
      0 0 20px rgba(190, 233, 232, 0.3);
  }
  100% {
    opacity: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7),
      0 0 30px rgba(190, 233, 232, 0.2);
  }
}

/* Mobile video adjustments - fit horizontal video vertically */
@media (max-width: 768px) {
  .video-background {
    height: 100vh;
  }

  .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: 2px;
  }

  .hero-subtitle p {
    font-size: 1.15rem;
    line-height: 1.5;
  }

  .hero-cta-button {
    padding: 15px 35px;
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .hero-content {
    max-width: 95%;
    padding: 0 20px;
  }

  .hero-content::before {
    width: 50px;
    height: 50px;
    top: -25px;
  }

  .hero-divider {
    width: 80px;
    height: 3px;
    margin: 25px auto;
  }

  .social-media {
    gap: 15px;
    margin-top: 25px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon i {
    font-size: 20px;
  }

  .scroll-indicator {
    bottom: 30px;
  }

  .scroll-indicator-text {
    font-size: 0.75rem;
  }

  .scroll-indicator-arrow {
    width: 32px;
    height: 32px;
  }

  .scroll-indicator-arrow i {
    font-size: 14px;
  }

  .floating-text {
    font-size: 0.75rem;
    padding: 6px 12px;
    letter-spacing: 1px;
  }

  .hero-badge {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.3;
    letter-spacing: 1.5px;
  }

  .hero-subtitle p {
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 1px;
  }

  .hero-cta-button {
    padding: 14px 30px;
    font-size: 0.9rem;
    letter-spacing: 1.8px;
  }

  .hero-content {
    max-width: 98%;
    padding: 0 15px;
  }

  .hero-content::before {
    width: 40px;
    height: 40px;
    top: -20px;
  }

  .hero-divider {
    width: 70px;
    margin: 20px auto;
  }

  .hero-divider::before,
  .hero-divider::after {
    width: 6px;
    height: 6px;
  }

  .hero-divider::before {
    left: -12px;
  }

  .hero-divider::after {
    right: -12px;
  }

  .social-media {
    gap: 12px;
    margin-top: 20px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon i {
    font-size: 18px;
  }

  .scroll-indicator {
    bottom: 25px;
  }

  .scroll-indicator-text {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .scroll-indicator-arrow {
    width: 28px;
    height: 28px;
  }

  .scroll-indicator-arrow i {
    font-size: 12px;
  }

  .floating-text {
    font-size: 0.65rem;
    padding: 5px 10px;
    letter-spacing: 0.8px;
  }

  /* Hide some floating text on very small screens to reduce clutter */
  .floating-text-5,
  .floating-text-6,
  .floating-text-7,
  .floating-text-8 {
    display: none;
  }

  .hero-badge {
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 15px;
  }
}

/* Reviews and Weather Bar Section */
.reviews-weather-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(27, 73, 101, 0.85) 0%,
    rgba(27, 73, 101, 0.95) 100%
  );
  backdrop-filter: blur(15px);
  padding: 8px 0;
  z-index: 100;
  overflow: visible;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUpBar 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  pointer-events: all;
}

@keyframes slideUpBar {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Wave Form Design for Banner Top Edge */
.reviews-weather-bar::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 25' preserveAspectRatio='none'%3E%3Cpath fill='rgba(27, 73, 101, 0.95)' d='M0,25 L0,15 C240,12 480,13 720,12 C960,11 1200,13 1440,12 L1440,25 Z'/%3E%3C/svg%3E")
    no-repeat center top;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
  animation: waveMove 20s ease-in-out infinite;
}

.reviews-weather-bar::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 18' preserveAspectRatio='none'%3E%3Cpath fill='rgba(27, 73, 101, 0.85)' d='M0,18 L0,11 C180,9 360,10 540,9 C720,8 900,10 1080,9 C1260,8 1440,10 1440,11 L1440,18 Z'/%3E%3C/svg%3E")
    no-repeat center top;
  background-size: 100% 100%;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
  animation: waveMove 25s ease-in-out infinite reverse;
}

@keyframes waveMove {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px);
  }
}

.reviews-weather-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 101;
  pointer-events: all;
}

.reviews-section-left {
  flex: 1;
  min-width: 300px;
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
  pointer-events: all;
  z-index: 102;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reviews-section-left .review-platforms {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews-section-left .review-platforms .platform-logo:nth-child(1) {
  animation-delay: 1.2s;
}

.reviews-section-left .review-platforms .platform-logo:nth-child(2) {
  animation-delay: 1.4s;
}

.reviews-section-left .review-platforms .platform-logo:nth-child(3) {
  animation-delay: 1.6s;
}

.reviews-section-left .review-platforms .platform-logo {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  animation: platformAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes platformAppear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reviews-section-left .platform-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 110;
  pointer-events: all;
}

.reviews-section-left .platform-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(190, 233, 232, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.reviews-section-left .platform-logo:hover::before {
  left: 100%;
}

.reviews-section-left .platform-logo:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(190, 233, 232, 0.15);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(190, 233, 232, 0.3);
}

.reviews-section-left .platform-logo i {
  font-size: 2.5rem;
  color: var(--white);
  opacity: 0.95;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.reviews-section-left .platform-logo:hover i {
  color: var(--secondary-color);
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 4px 15px rgba(190, 233, 232, 0.5));
}

.reviews-section-left .platform-logo .tripadvisor-icon {
  width: 2.5rem;
  height: 2.5rem;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
  opacity: 0.95;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.reviews-section-left .platform-logo:hover .tripadvisor-icon {
  opacity: 1;
  transform: scale(1.2) rotate(-5deg);
  filter: brightness(0) invert(1) drop-shadow(0 4px 15px rgba(190, 233, 232, 0.5));
}

.reviews-section-left .platform-logo .stars {
  font-size: 0.85rem;
  color: #ffd700;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1;
  transition: all 0.4s ease;
  display: inline-block;
  pointer-events: none;
}

.reviews-section-left .platform-logo:hover .stars {
  transform: scale(1.1);
  color: #ffed4e;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.weather-section-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 200px;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
  pointer-events: all;
  z-index: 102;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.weather-section-right .weather-date {
  align-self: flex-end;
  text-align: right;
  font-family: "Quicksand", sans-serif;
  font-size: 0.85rem;
  color: var(--white);
  opacity: 0.95;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.weather-section-right .weather-date:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.weather-section-right .weather-info {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.weather-section-right .weather-info:hover {
  background: rgba(190, 233, 232, 0.2);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(190, 233, 232, 0.3);
}

.weather-section-right .weather-icon {
  font-size: 1.5rem;
  color: #ffd700;
  opacity: 1;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4));
  animation: sunRotate 20s linear infinite;
  transition: all 0.3s ease;
}

@keyframes sunRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.weather-section-right .weather-info:hover .weather-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 15px rgba(255, 215, 0, 0.6));
}

.weather-section-right .weather-temp {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  transition: all 0.4s ease;
  letter-spacing: 1px;
}

.weather-section-right .weather-info:hover .weather-temp {
  color: #ffffff;
  transform: scale(1.05);
}

.weather-section-right .weather-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
  width: 100%;
  flex-wrap: wrap;
}

.weather-section-right .weather-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 110;
  pointer-events: all;
}

.weather-section-right .weather-social-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--secondary-color), transparent);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  transition: width 0.4s ease, height 0.4s ease;
}

.weather-section-right .weather-social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.weather-section-right .weather-social-icon:hover {
  opacity: 1;
  transform: translateY(-5px) scale(1.15) rotate(5deg);
  color: var(--white);
  background: rgba(190, 233, 232, 0.25);
  border-color: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(190, 233, 232, 0.4);
}

.weather-section-right .weather-social-icon i {
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.weather-section-right .weather-social-icon:hover i {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .reviews-weather-bar {
    padding: 10px 0;
  }

  .reviews-weather-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    gap: 15px;
  }

  .reviews-section-left {
    min-width: auto;
    width: 100%;
  }

  .reviews-section-left .review-platforms {
    justify-content: center;
    gap: 20px;
  }

  .reviews-section-left .platform-logo i {
    font-size: 2.2rem;
  }

  .reviews-section-left .platform-logo .tripadvisor-icon {
    width: 2.2rem;
    height: 2.2rem;
  }
  
  .weather-section-right .weather-social-icon {
    width: 38px;
    height: 38px;
  }
  
  .weather-section-right .weather-social-icon i {
    font-size: 1.1rem;
  }

  .reviews-section-left .platform-logo .stars {
    font-size: 0.8rem;
  }

  .weather-section-right {
    align-items: center;
    min-width: auto;
  }

  .weather-section-right .weather-temp {
    font-size: 1.6rem;
  }

  .weather-section-right .weather-icon {
    font-size: 1.3rem;
  }

  .weather-section-right .weather-date {
    font-size: 0.85rem;
  }

  .reviews-weather-bar::before {
    top: -20px;
    height: 20px;
  }

  .reviews-weather-bar::after {
    top: -15px;
    height: 15px;
  }
}

@media (max-width: 480px) {
  .reviews-weather-bar {
    padding: 8px 0;
  }

  .reviews-weather-container {
    padding: 0 15px;
    gap: 12px;
  }

  .reviews-section-left .review-platforms {
    gap: 15px;
  }

  .reviews-section-left .platform-logo i {
    font-size: 2rem;
  }

  .reviews-section-left .platform-logo .tripadvisor-icon {
    width: 2rem;
    height: 2rem;
  }

  .reviews-section-left .platform-logo .stars {
    font-size: 0.75rem;
  }

  .weather-section-right .weather-temp {
    font-size: 1.4rem;
  }

  .weather-section-right .weather-icon {
    font-size: 1.2rem;
  }

  .weather-section-right .weather-date {
    font-size: 0.8rem;
  }

  .weather-section-right .weather-social-icon {
    width: 36px;
    height: 36px;
  }

  .weather-section-right .weather-social-icon i {
    font-size: 1rem;
  }

  .reviews-weather-bar::before {
    top: -18px;
    height: 18px;
  }

  .reviews-weather-bar::after {
    top: -12px;
    height: 12px;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: headerIntro 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes headerIntro {
  from {
    opacity: 0;
    transform: translate(-50%, -20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.header.scrolled {
  top: 10px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  width: calc(100% - 20px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 25px;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .nav-container {
  padding: 10px 25px;
}

.header.scrolled .nav-link {
  font-size: 0.9rem;
  padding: 6px 12px;
}

.header.scrolled .nav-menu {
  gap: 15px;
}

.header.scrolled .logo img {
  width: 3.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  width: 4rem;
  height: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: contain;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
  transition: gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .nav-menu {
  gap: 15px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 14px;
  border-radius: 25px;
  font-family: "Quicksand", sans-serif;
}

.header.scrolled .nav-link {
  font-size: 0.9rem;
  padding: 6px 12px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link:hover::after {
  width: 80%;
}

/* Active nav link (persist underline/color on current page) */
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  width: 80%;
}

/* Dropdown Menu Styles */
.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(27, 73, 101, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 8px 0;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition-property: opacity, transform, visibility;
  transition-duration: 0.25s, 0.25s, 0s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1),
    cubic-bezier(0.4, 0, 0.2, 1), linear;
  transition-delay: 0.12s, 0.12s, 0.12s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s, 0s;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown-menu li {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-menu li:first-child a {
  border-radius: 0;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li:last-child a {
  border-radius: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0;
  font-family: "Quicksand", sans-serif;
  position: relative;
  cursor: pointer;
}

.dropdown-menu a::before {
  content: "→";
  position: absolute;
  left: 8px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.6);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding-left: 28px;
  transform: translateX(3px);
}

.dropdown-menu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.dropdown-menu a:active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(3px) scale(0.98);
}

.dropdown-menu a::after {
  display: none;
}

/* Dropdown divider and header styles */
.dropdown-divider {
  height: 1px;
  margin: 8px 0;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-header {
  display: block;
  padding: 10px 20px 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Quicksand", sans-serif;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 4px;
}

.dropdown-header + li {
  border-top: none;
}

/* Adjust nav-link hover effect when dropdown is present */
.nav-item:hover .nav-link {
  color: var(--primary-color);
}

.nav-item:hover .nav-link::after {
  width: 80%;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 5px;
  transition: all 0.3s ease;
  font-weight: 300;
}

.mobile-menu-btn:hover {
  color: var(--primary-color);
  transform: scale(1.1);
  opacity: 0.7;
}

/* Mobile menu styles */
.nav-menu.mobile-active {
  display: flex;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  flex-direction: column;
  background: #fff;
  backdrop-filter: blur(15px);
  padding: 0;
  box-shadow: 0 10px 30px var(--shadow-dark);
  border-radius: 25px;
  animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(27, 73, 101, 0.3) transparent;
}

.nav-menu.mobile-active::-webkit-scrollbar {
  width: 6px;
}

.nav-menu.mobile-active::-webkit-scrollbar-track {
  background: transparent;
}

.nav-menu.mobile-active::-webkit-scrollbar-thumb {
  background-color: rgba(27, 73, 101, 0.3);
  border-radius: 3px;
}

.nav-menu.mobile-active .nav-item {
  margin: 0;
  text-align: left;
  width: 100%;
  position: relative;
}

.nav-menu.mobile-active .nav-item::after {
  display: none;
}

.nav-menu.mobile-active .nav-link {
  font-size: 1rem;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #333;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}


.nav-menu.mobile-active .nav-item.has-dropdown > .nav-link::after {
  display: none;
}

.nav-menu.mobile-active .nav-item.has-dropdown.mobile-dropdown-open > .nav-link::after {
  display: none;
}

/* Fallback for browsers that support :has() */
@supports selector(:has(*)) {
  .nav-menu.mobile-active .nav-item:has(.dropdown-menu) > .nav-link::after {
    display: none;
  }

  .nav-menu.mobile-active .nav-item:has(.dropdown-menu).mobile-dropdown-open > .nav-link::after {
    display: none;
  }
}

.nav-menu.mobile-active .nav-link:hover {
  background: rgba(0, 0, 0, 0.03);
  color: #333;
}

.nav-menu.mobile-active .nav-item.mobile-dropdown-open > .nav-link {
  background: rgba(0, 0, 0, 0.03);
  color: #333;
  font-weight: 500;
}

@media (max-width: 768px) {
  .header {
    top: 10px;
    transform: translateX(-50%);
    width: calc(100% - 20px);
  }

  .nav-container {
    padding: 10px 20px;
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  .header {
    top: 10px;
    transform: translateX(-50%);
    width: calc(100% - 20px);
  }

  .nav-container {
    padding: 10px 15px;
  }

  .nav-menu.mobile-active {
    max-height: calc(100vh - 100px);
    padding: 0;
  }

  .nav-menu.mobile-active .nav-item {
    margin: 0;
  }

  .nav-menu.mobile-active .nav-link {
    font-size: 0.95rem;
    padding: 14px 20px 14px 20px;
  }

  .nav-menu.mobile-active .nav-item::after {
    left: 15px;
    right: 15px;
  }

  .nav-menu.mobile-active .dropdown-menu a {
    padding: 11px 20px 11px 40px;
    font-size: 0.9rem;
  }

  .nav-menu.mobile-active .dropdown-menu a:hover {
    padding-left: 45px;
  }

  .nav-menu.mobile-active .dropdown-menu a::before {
    display: none;
  }


  /* Mobile dropdown menus - Show as expandable list */
  .nav-menu.mobile-active .dropdown-menu {
    display: block;
    position: static;
    transform: none;
    background: rgba(250, 250, 250, 0.5);
    box-shadow: none;
    padding: 0;
    margin: 0;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    min-width: auto;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s ease 0.1s,
      visibility 0s linear 0.4s;
  }

  .nav-menu.mobile-active .nav-item.mobile-dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    max-height: 2000px;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.3s ease 0.1s,
      visibility 0s linear 0s;
  }

  .nav-menu.mobile-active .dropdown-menu li {
    border-bottom: none;
    position: relative;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s ease,
      transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: calc(var(--item-index, 0) * 0.04s);
  }

  .nav-menu.mobile-active .nav-item.mobile-dropdown-open .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu.mobile-active .dropdown-menu li::before {
    display: none;
  }

  .nav-menu.mobile-active .dropdown-menu li {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.25s ease,
      transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: calc(var(--item-index, 0) * 0.04s);
  }

  .nav-menu.mobile-active .nav-item.mobile-dropdown-open .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu.mobile-active .dropdown-menu a {
    padding: 12px 20px 12px 45px;
    color: #555;
    font-size: 0.95rem;
    font-weight: 400;
    background: transparent;
    display: block;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .nav-menu.mobile-active .dropdown-menu a::before {
    display: none;
  }

  .nav-menu.mobile-active .dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.04);
    padding-left: 50px;
    color: #333;
  }

  .nav-menu.mobile-active .dropdown-menu a:active {
    background: rgba(0, 0, 0, 0.06);
  }

  .logo img {
    width: 3rem;
    height: auto;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .logo img {
    height: 40px;
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .nav-menu.mobile-active {
    max-height: calc(100vh - 90px);
    padding: 0;
    border-radius: 20px;
  }

  .nav-menu.mobile-active .nav-item {
    margin: 0;
  }

  .nav-menu.mobile-active .nav-link {
    font-size: 0.9rem;
    padding: 12px 15px 12px 15px;
  }

  .nav-menu.mobile-active .nav-item::after {
    left: 10px;
    right: 10px;
  }

  .nav-menu.mobile-active .dropdown-menu a {
    padding: 10px 15px 10px 35px;
    font-size: 0.85rem;
  }

  .nav-menu.mobile-active .dropdown-menu a:hover {
    padding-left: 40px;
  }

  .nav-menu.mobile-active .dropdown-menu a::before {
    left: 22px;
  }

  .nav-menu.mobile-active .dropdown-menu li::before {
    left: 30px;
    right: 10px;
  }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-menu {
    gap: 15px;
  }

  .nav-container {
    padding: 15px 25px;
  }

  .dropdown-menu {
    min-width: 180px;
    padding: 10px 0;
  }

  .dropdown-menu a {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Anchor offset for sticky header */
section[id],
article[id],
div[id] {
  scroll-margin-top: 140px;
}

@media (max-width: 768px) {
  section[id],
  article[id],
  div[id] {
    scroll-margin-top: 110px;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  position: relative;
  background: #f4f8ff;
  padding: 100px 0;
  margin-top: 0;
  z-index: 100;
}

.why-choose-us::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 50%,
    transparent 100%
  );
}

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

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

.section-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

/* Remove underline for reviews section, photo gallery, why choose us, and packages */
.reviews-section .section-title::after,
.photo-gallery .section-title::after,
.why-choose-us .section-title::after,
.packages-section .section-title::after {
  display: none;
}

.section-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0.8;
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.story-block {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(27, 73, 101, 0.1);
  border-left: 5px solid var(--secondary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.story-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(190, 233, 232, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.story-block:hover::before {
  left: 100%;
}

.story-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(27, 73, 101, 0.15);
}

.story-block h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.story-block p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.value-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(27, 73, 101, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(190, 233, 232, 0.3);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(27, 73, 101, 0.15);
  border-color: var(--secondary-color);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(27, 73, 101, 0.2);
}

.value-icon i {
  font-size: 1.5rem;
  color: var(--white);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
  transform: scale(1.1);
}

.value-card h4 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.value-card:hover h4 {
  color: var(--secondary-color);
}

.value-card p {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.8;
}

.team-section {
  background: var(--white);
  border-radius: 25px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(27, 73, 101, 0.1);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(190, 233, 232, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
}

.team-section h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.team-section p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.05),
    rgba(190, 233, 232, 0.1)
  );
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.1),
    rgba(190, 233, 232, 0.15)
  );
}

.stat-number {
  display: block;
  font-family: "Alan Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* New Why Choose Us Styles */
.why-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  position: relative;
}

.why-content::before {
  display: none;
}

.why-title-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  text-align: left;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 800px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.feature-icon i,
.checkmark {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 300;
}

.checkmark {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item:hover .checkmark {
  color: var(--white);
}

.feature-content h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-content p {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.8;
}

/* Photo Gallery Section */
/* Combined Services Map Section */
.services-map-section {
  position: relative;
  background: var(--primary-color);
  padding: 100px 0;
  z-index: 100;
  color: var(--white);
}

.services-top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 20px;
  align-items: start;
}

.services-text-content {
  text-align: left;
}

.services-main-title {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: "Alan Sans", sans-serif;
}

.services-intro-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.7;
}

.services-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  line-height: 1.7;
}

.discover-center-btn {
  display: inline-block;
  padding: 15px 35px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.discover-center-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(190, 233, 232, 0.3);
}

.dive-map-container {
  position: relative;
}

.dive-map-wrapper {
  position: relative;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0;
  padding: 40px;
  margin-bottom: 20px;
  overflow: hidden;
}

.dive-map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  filter: brightness(0.9) contrast(1.1);
}

.map-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  font-family: "Alan Sans", sans-serif;
  letter-spacing: 5px;
  white-space: nowrap;
}

.map-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1rem;
  padding-left: 0;
}

.map-cta i {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.map-cta a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.map-cta a:hover {
  color: var(--secondary-color);
}

.services-separator {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  height: 1px;
  background: rgba(190, 233, 232, 0.3);
}

.services-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-column {
  background: transparent;
  padding: 40px 30px;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
  position: relative;
}

.service-column:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(190, 233, 232, 0.3);
}

.service-column:hover {
  background: transparent;
}

.service-column h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  font-family: "Alan Sans", sans-serif;
}

.service-column p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

.more-info-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.more-info-btn:hover {
  background: #a8e6e3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(190, 233, 232, 0.4);
}

@media (max-width: 1024px) {
  .services-top-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-main-title {
    font-size: 2.4rem;
  }

  .services-separator {
    margin-bottom: 50px;
  }

  .services-columns {
    gap: 0;
  }

  .service-column:not(:last-child)::after {
    display: none;
  }

  .map-overlay-text {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .services-map-section {
    padding: 60px 0;
  }

  .services-top-section {
    gap: 40px;
    margin-bottom: 60px;
  }

  .services-main-title {
    font-size: 2rem;
  }

  .services-intro-text {
    font-size: 1.1rem;
  }

  .services-description {
    font-size: 0.95rem;
  }

  .dive-map-wrapper {
    padding: 25px;
  }

  .map-overlay-text {
    font-size: 2.5rem;
  }

  .services-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-column {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(190, 233, 232, 0.3);
  }

  .service-column:last-child {
    border-bottom: none;
  }

  .service-column:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .services-map-section {
    padding: 50px 0;
  }

  .services-main-title {
    font-size: 1.8rem;
  }

  .services-intro-text {
    font-size: 1rem;
  }

  .services-description {
    font-size: 0.9rem;
  }

  .discover-center-btn {
    padding: 12px 25px;
    font-size: 0.85rem;
  }

  .dive-map-wrapper {
    padding: 20px;
  }

  .map-overlay-text {
    font-size: 2rem;
  }

  .service-column {
    padding: 25px 20px;
  }

  .service-column h3 {
    font-size: 1.3rem;
  }

  .service-column p {
    font-size: 0.95rem;
  }

  .more-info-btn {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  transition: all 0.4s ease;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(27, 73, 101, 0.1);
}

.gallery-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(27, 73, 101, 0.2);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
}

.gallery-item:nth-child(2) {
  grid-row: span 2;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 255, 255, 0.9)
  );
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(27, 73, 101, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.02),
    rgba(190, 233, 232, 0.05)
  );
  border-radius: 25px;
  z-index: 1;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(190, 233, 232, 0.15),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 2;
}

.image-placeholder:hover::after {
  left: 100%;
}

.image-placeholder:hover {
  border-color: var(--secondary-color);
}

.image-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  color: var(--white);
  font-family: "Quicksand", sans-serif;
  letter-spacing: 0.3px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.15),
    transparent
  );
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery-caption h4 {
  margin: 0 0 4px 0;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-caption p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.placeholder-content {
  text-align: center;
  color: var(--text-dark);
  opacity: 0.8;
  z-index: 3;
  position: relative;
  padding: 20px;
}

.placeholder-content i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
  opacity: 0.7;
}

.placeholder-content p {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.placeholder-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.6;
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  background: #f5f5f5;
  padding: 100px 0;
  z-index: 100;
  overflow: hidden;
}

/* Packages Section */
.packages-section {
  position: relative;
  background: #f4f8ff;
  padding: 100px 0;
  z-index: 10;
}

.packages-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--secondary-color) 50%,
    transparent 100%
  );
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(27, 73, 101, 0.1);
  border: 1px solid rgba(190, 233, 232, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(27, 73, 101, 0.18);
}

.package-header {
  padding: 24px 24px 18px 24px;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.08),
    rgba(190, 233, 232, 0.12)
  );
}

.package-header h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.6rem;
  color: var(--primary-color);
  margin: 0 0 6px 0;
}

.package-header .tag {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--primary-color);
  padding: 6px 10px;
  border-radius: 999px;
}

.package-header.beginner {
  background: linear-gradient(135deg, #e7f6ff, #e9fffb);
}
.package-header.beginner .tag {
  background: #2f77a8;
}

.package-header.explorer {
  background: linear-gradient(135deg, #e8faff, #e6fff6);
}
.package-header.explorer .tag {
  background: #1b8f7a;
}

.package-header.bigblue {
  background: linear-gradient(135deg, #eaf5ff, #eaffff);
}
.package-header.bigblue .tag {
  background: #1b4965;
}

.package-list {
  list-style: none;
  margin: 0;
  padding: 18px 24px 26px 24px;
}

.package-list li {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px dashed rgba(27, 73, 101, 0.12);
}

.package-list li:last-child {
  border-bottom: none;
}

.package-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  background: var(--secondary-color);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
}

.packages-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-hint {
  margin-top: 12px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.8;
}

/* Responsive: Packages */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .packages-section {
    padding: 60px 0;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .package-header h3 {
    font-size: 1.4rem;
  }
  .package-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .packages-section {
    padding: 40px 0;
  }
  .package-image {
    height: 160px;
  }
  .cta-hint {
    font-size: 0.9rem;
  }
}

/* PADI Courses Section */
.courses-section {
  position: relative;
  background: #f4f8ff;
  padding: 100px 0;
  z-index: 10;
}

.courses-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--secondary-color) 50%,
    transparent 100%
  );
}

.courses-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-color) 50%,
    transparent 100%
  );
}

.courses-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  position: relative;
}

.courses-title-wrapper {
  flex: 1;
  max-width: 600px;
}

.courses-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}

.courses-title .highlight {
  color: var(--primary-color);
  position: relative;
}

.courses-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 2px;
}

.courses-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}

.padi-badge {
  background: linear-gradient(135deg, var(--primary-color), #2a5f7a);
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 15px 35px rgba(27, 73, 101, 0.2);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.padi-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(190, 233, 232, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.badge-content i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* Courses Grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.course-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(27, 73, 101, 0.1);
  border: 1px solid rgba(190, 233, 232, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(27, 73, 101, 0.18);
}

.course-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.course-content {
  padding: 25px;
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.course-header h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.3;
}

.level-number {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.level-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

.level-badge.beginner {
  background: linear-gradient(135deg, #2f77a8, #4a90c2);
}

.level-badge.advanced {
  background: linear-gradient(135deg, #1b8f7a, #2db8a3);
}

.level-badge.rescue {
  background: linear-gradient(135deg, #d63384, #e55a9b);
}

.level-badge.specialty {
  background: linear-gradient(135deg, #6f42c1, #8b5cf6);
}

.course-description {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  opacity: 0.9;
}

.course-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.detail-item i {
  width: 16px;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.course-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.1),
    rgba(190, 233, 232, 0.2)
  );
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(27, 73, 101, 0.2);
}

.courses-cta {
  margin-top: 60px;
  text-align: center;
}

.cta-main {
  text-align: center;
}

.cta-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.cta-features .feature-tag {
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.1),
    rgba(190, 233, 232, 0.2)
  );
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(27, 73, 101, 0.2);
  transition: all 0.3s ease;
}

.cta-features .feature-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.15),
    rgba(190, 233, 232, 0.25)
  );
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

.primary-btn {
  background: linear-gradient(135deg, var(--secondary-color), #a8e6e3);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(190, 233, 232, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(190, 233, 232, 0.5);
  background: linear-gradient(135deg, #a8e6e3, var(--secondary-color));
}

.primary-btn i {
  transition: transform 0.3s ease;
}

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

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--secondary-color) 50%,
    transparent 100%
  );
}

/* Reviews Container - Two Column Layout */
.reviews-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.review-platform {
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  min-height: 100%;
  align-items: stretch;
  position: relative;
}

.platform-header {
  text-align: center;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90px;
  position: relative;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  padding: 14px 24px;
  border-radius: 10px;
  background: var(--primary-color);
  box-shadow: 0 3px 10px rgba(27, 73, 101, 0.25);
  border: none;
  min-height: 56px;
  position: relative;
  overflow: hidden;
}

.platform-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(27, 73, 101, 0.35);
  background: #2c5f7c;
}

.tripadvisor-platform .platform-link {
  background: var(--primary-color);
}

.tripadvisor-platform .platform-link:hover {
  background: #2c5f7c;
}

.google-platform .platform-link {
  background: var(--primary-color);
}

.google-platform .platform-link:hover {
  background: #2c5f7c;
}

.platform-icon {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  filter: none;
  background: none;
  border-radius: 0;
  padding: 0;
}

/* Font Awesome icon sizing */
.platform-icon.fab,
.platform-icon.fas {
  font-size: 32px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: var(--white);
}

/* Make Google icon same size as TripAdvisor */
.google-platform .platform-icon.fab {
  font-size: 32px;
  width: 32px;
  height: 32px;
  line-height: 32px;
}

/* Image icon sizing - for img tags with platform-icon class */
img.platform-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.platform-link:hover .platform-icon {
  transform: scale(1.05);
}

.platform-link:hover img.platform-icon {
  filter: brightness(0) invert(1);
}

.platform-title {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  text-shadow: none;
  letter-spacing: 0.3px;
}

.platform-external {
  font-size: 0.9rem;
  opacity: 0.9;
  transition: all 0.3s ease;
  color: var(--white);
  text-shadow: none;
}

.platform-link:hover .platform-external {
  opacity: 1;
}

.reviews-slider {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-platform .reviews-slider {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 500px;
}

.review-slide {
  display: none;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transform: translateX(30px);
  width: 100%;
}

.review-slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.review-card {
  background: #f8f9fa;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  border: 1px solid rgba(27, 73, 101, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 6px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(27, 73, 101, 0.15);
}

.review-headline {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 15px 0;
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
  line-height: 1.3;
}

.stars {
  font-size: 1.3rem;
  color: #ffa500;
  margin-bottom: 20px;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  display: block;
  text-shadow: none;
}

.review-card blockquote {
  margin: 0 0 25px 0;
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  z-index: 2;
}

.review-card blockquote p {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary-color);
  font-style: normal;
  margin: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  font-weight: 400;
  text-align: left;
  padding: 0;
  border: none;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.reviewer-info {
  display: flex;
  align-items: center;
  flex: 1;
}

.reviewer-name {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  font-style: italic;
  color: var(--primary-color);
  position: relative;
  padding: 0;
  background: none;
  border-radius: 0;
  display: inline-block;
  text-shadow: none;
  opacity: 0.8;
}

.platform-logo-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.platform-logo-small {
  width: 24px;
  height: 24px;
  filter: none;
  opacity: 0.7;
}

.platform-logo-small.fab,
.platform-logo-small.fas {
  font-size: 24px;
  color: var(--primary-color);
  opacity: 0.7;
}

.review-date {
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  flex-shrink: 0;
  padding: 0;
  position: relative;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  background: transparent;
  color: var(--secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(190, 233, 232, 0.3);
  position: relative;
  overflow: hidden;
}

.slider-btn:hover {
  background: rgba(190, 233, 232, 0.2);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(190, 233, 232, 0.4);
  border-color: var(--secondary-color);
}

.slider-btn:active {
  transform: scale(0.95);
}

.slider-btn i {
  position: relative;
  z-index: 1;
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: rgba(190, 233, 232, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border: none;
  box-shadow: 0 1px 3px rgba(190, 233, 232, 0.3);
}

.dot.active {
  background: var(--secondary-color);
  width: 10px;
  height: 10px;
  box-shadow: 0 2px 6px rgba(190, 233, 232, 0.5);
}

.dot:hover {
  background: rgba(190, 233, 232, 0.8);
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), #2a5f7a);
  border-radius: 25px;
  padding: 60px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(190, 233, 232, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-section h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.cta-button {
  background: linear-gradient(135deg, var(--secondary-color), #a8e6e3);
  color: var(--primary-color);
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(190, 233, 232, 0.4);
  background: linear-gradient(135deg, #a8e6e3, var(--secondary-color));
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive Design for Why Choose Us */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 0;
    margin-top: 0;
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }

  .why-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .feature-item {
    gap: 15px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-icon i {
    font-size: 1.1rem;
  }

  .feature-content h3 {
    font-size: 1.3rem;
  }

  .feature-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 40px 0;
  }

  .why-content {
    padding: 0 15px;
    gap: 40px;
  }

  .why-title {
    font-size: 2rem;
  }

  .features-grid {
    gap: 25px;
  }

  .feature-item {
    gap: 12px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-icon i {
    font-size: 1rem;
  }

  .feature-content h3 {
    font-size: 1.2rem;
  }

  .feature-content p {
    font-size: 0.9rem;
  }
}

/* Responsive Design for Photo Gallery */
@media (max-width: 768px) {
  .photo-gallery {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(2) {
    grid-row: span 2;
  }

  .image-placeholder {
    min-height: 280px;
  }

  .placeholder-content i {
    font-size: 2.2rem;
  }

  .placeholder-content p {
    font-size: 1.2rem;
  }

  .placeholder-subtitle {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .photo-gallery {
    padding: 40px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .image-placeholder {
    min-height: 250px;
  }

  .placeholder-content i {
    font-size: 2rem;
  }

  .placeholder-content p {
    font-size: 1.1rem;
  }

  .placeholder-subtitle {
    font-size: 0.8rem;
  }
}

/* Responsive Design for Reviews */
@media (max-width: 1024px) {
  .reviews-container {
    gap: 30px;
  }

  .platform-title {
    font-size: 1.2rem;
  }

  .platform-icon {
    width: 30px;
    height: 30px;
  }

  .platform-icon.fab,
  .platform-icon.fas {
    font-size: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .google-platform .platform-icon.fab {
    font-size: 22px;
    width: 22px;
    height: 22px;
    line-height: 22px;
  }

  img.platform-icon {
    width: 30px;
    height: 30px;
  }

  .platform-header {
    min-height: 80px;
  }

  .platform-link {
    min-height: 65px;
    padding: 15px 30px;
  }

  .platform-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0;
  }

  .reviews-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .review-platform .reviews-slider {
    min-height: 550px;
  }

  .slider-container {
    min-height: 450px;
  }

  .review-card {
    min-height: 450px;
  }

  .platform-link {
    padding: 10px 18px;
  }

  .platform-title {
    font-size: 1.1rem;
  }

  .platform-icon {
    width: 28px;
    height: 28px;
  }

  .platform-icon.fab,
  .platform-icon.fas {
    font-size: 28px;
    width: 28px;
    height: 28px;
    line-height: 28px;
  }

  .google-platform .platform-icon.fab {
    font-size: 20px;
    width: 20px;
    height: 20px;
    line-height: 20px;
  }

  img.platform-icon {
    width: 28px;
    height: 28px;
  }

  .platform-header {
    min-height: 75px;
  }

  .platform-link {
    min-height: 60px;
    padding: 14px 25px;
    gap: 12px;
  }

  .platform-title {
    font-size: 1.15rem;
  }

  .reviews-slider {
    padding: 0 20px;
  }

  .review-card {
    padding: 40px 25px;
  }

  .review-card::before {
    font-size: 3rem;
    top: -5px;
  }

  .stars {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .review-card blockquote p {
    font-size: 1.1rem;
  }

  .reviewer-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .slider-controls {
    gap: 20px;
    margin-top: 30px;
  }

  .slider-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .reviews-section {
    padding: 40px 0;
  }

  .reviews-container {
    gap: 30px;
  }

  .review-platform .reviews-slider {
    min-height: 500px;
  }

  .slider-container {
    min-height: 400px;
  }

  .review-card {
    min-height: 400px;
    padding: 30px 20px;
  }

  .platform-link {
    padding: 8px 15px;
    gap: 10px;
  }

  .platform-title {
    font-size: 1rem;
  }

  .platform-icon {
    width: 26px;
    height: 26px;
  }

  .platform-icon.fab,
  .platform-icon.fas {
    font-size: 26px;
    width: 26px;
    height: 26px;
    line-height: 26px;
  }

  .google-platform .platform-icon.fab {
    font-size: 18px;
    width: 18px;
    height: 18px;
    line-height: 18px;
  }

  img.platform-icon {
    width: 26px;
    height: 26px;
  }

  .platform-header {
    min-height: 70px;
  }

  .platform-link {
    min-height: 55px;
    padding: 12px 20px;
    gap: 10px;
  }

  .platform-title {
    font-size: 1.05rem;
  }

  .platform-external {
    font-size: 0.8rem;
  }

  .reviews-slider {
    padding: 0 15px;
  }

  .review-card::before {
    font-size: 2.5rem;
  }

  .stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .review-card blockquote p {
    font-size: 1rem;
  }

  .slider-controls {
    gap: 15px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

/* Responsive Design for Courses Section */
@media (max-width: 1024px) {
  .courses-section {
    padding: 80px 0;
  }

  .courses-header {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .courses-title {
    font-size: 2.8rem;
  }

  .padi-badge {
    align-self: center;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .courses-section {
    padding: 60px 0;
  }

  .courses-header {
    margin-bottom: 50px;
  }

  .courses-title {
    font-size: 2.4rem;
  }

  .courses-subtitle {
    font-size: 1.1rem;
  }

  .padi-badge {
    padding: 15px 20px;
  }

  .badge-content {
    font-size: 1rem;
  }

  .badge-content i {
    font-size: 1.3rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }

  .course-image {
    height: 180px;
  }

  .course-content {
    padding: 20px;
  }

  .course-header h3 {
    font-size: 1.3rem;
  }

  .course-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .course-details {
    gap: 6px;
    margin-bottom: 15px;
  }

  .detail-item {
    font-size: 0.85rem;
  }

  .courses-cta {
    margin-top: 50px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-features {
    gap: 12px;
    margin-bottom: 25px;
  }

  .cta-features .feature-tag {
    font-size: 0.85rem;
    padding: 6px 12px;
  }

  .primary-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .courses-section {
    padding: 50px 0;
  }

  .courses-header {
    margin-bottom: 40px;
  }

  .courses-title {
    font-size: 2rem;
  }

  .courses-subtitle {
    font-size: 1rem;
  }

  .padi-badge {
    padding: 12px 16px;
  }

  .badge-content {
    font-size: 0.9rem;
    gap: 8px;
  }

  .badge-content i {
    font-size: 1.1rem;
  }

  .courses-grid {
    gap: 15px;
    margin-top: 40px;
  }

  .course-image {
    height: 160px;
  }

  .course-overlay {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }

  .level-number {
    font-size: 1rem;
  }

  .course-content {
    padding: 15px;
  }

  .course-header h3 {
    font-size: 1.2rem;
  }

  .level-badge {
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .course-description {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .course-details {
    gap: 5px;
    margin-bottom: 12px;
  }

  .detail-item {
    font-size: 0.8rem;
    gap: 8px;
  }

  .detail-item i {
    width: 14px;
    font-size: 0.8rem;
  }

  .feature-tag {
    padding: 3px 8px;
    font-size: 0.75rem;
  }

  .courses-cta {
    margin-top: 40px;
  }

  .cta-title {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }

  .cta-features {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }

  .cta-features .feature-tag {
    font-size: 0.8rem;
    padding: 5px 10px;
    justify-content: center;
  }

  .primary-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* About Us Section - Creative Redesign */
.about-us-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
  z-index: 100;
  overflow: hidden;
}

.about-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(27, 73, 101, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(190, 233, 232, 0.15) 0%,
      transparent 50%
    );
  z-index: 1;
}

.about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 400px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(27, 73, 101, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  background: var(--white);
  position: relative;
}

.about-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.02) 0%,
    rgba(190, 233, 232, 0.05) 100%
  );
  z-index: 1;
}

.about-text {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  padding: 50px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-radius: 25px 0 0 25px;
}

.about-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg,
      rgba(27, 73, 101, 0.9) 0%,
      rgba(30, 41, 59, 0.95) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  border-radius: 25px 0 0 25px;
  z-index: 1;
}

.about-text::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    rgba(190, 233, 232, 0.3)
  );
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.about-text > * {
  position: relative;
  z-index: 2;
}

.about-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.1;
  position: relative;
}

.about-title::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  border-radius: 2px;
}

.about-title .highlight {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.about-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary-color);
  opacity: 0.3;
  border-radius: 1px;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 10px;
}

.about-description p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  position: relative;
  padding-left: 20px;
}

.about-description p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: bold;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 0 25px 25px 0;
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.1) 0%,
    rgba(190, 233, 232, 0.05) 100%
  );
  z-index: 2;
  transition: opacity 0.3s ease;
}

.about-content:hover .about-image::before {
  opacity: 0.7;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: brightness(1.05) contrast(1.1);
}

.about-content:hover .about-image img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.15);
}

/* Floating elements for visual interest */
.about-content::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 20px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    rgba(190, 233, 232, 0.3)
  );
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
}

/* Responsive Design for About Us */
@media (max-width: 1024px) {
  .about-us-section {
    padding: 60px 0;
  }

  .about-container {
    padding: 0 15px;
  }

  .about-content {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 20px;
  }

  .about-text {
    padding: 40px 35px;
    order: 2;
    border-radius: 0 0 20px 20px;
  }

  .about-text::before {
    border-radius: 0 0 20px 20px;
  }

  .about-image {
    height: 300px;
    order: 1;
    border-radius: 20px 20px 0 0;
  }

  .about-title {
    font-size: 2.8rem;
    text-align: center;
  }

  .about-title::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .about-us-section {
    padding: 50px 0;
  }

  .about-text {
    padding: 35px 30px;
  }

  .about-image {
    height: 280px;
  }

  .about-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }

  .about-description p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-us-section {
    padding: 40px 0;
  }

  .about-container {
    padding: 0 10px;
  }

  .about-content {
    border-radius: 15px;
  }

  .about-text {
    padding: 30px 25px;
    border-radius: 0 0 15px 15px;
  }

  .about-text::before {
    border-radius: 0 0 15px 15px;
  }

  .about-image {
    height: 250px;
    border-radius: 15px 15px 0 0;
  }

  .about-title {
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .about-description {
    gap: 15px;
  }

  .about-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-description p::before {
    font-size: 1.1rem;
  }
}

/* Excursions Section - New Design */
.excursions-section {
  position: relative;
  background: #f8fafc;
  padding: 80px 0;
  z-index: 10;
}

.excursions-section .container {
  max-width: 90%;
}

.excursions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--secondary-color) 50%,
    transparent 100%
  );
}

.excursions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
  position: relative;
}

.excursions-title-wrapper {
  flex: 1;
  max-width: 600px;
}

.excursions-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}

.excursions-title .highlight {
  color: var(--secondary-color);
  position: relative;
}

.excursions-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), transparent);
  border-radius: 2px;
}

.excursions-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}

.excursions-badge {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.excursions-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.badge-content i {
  font-size: 1.5rem;
  color: var(--white);
}

/* Excursions Grid */
.excursions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.excursion-card {
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(27, 73, 101, 0.1);
  border: 1px solid rgba(190, 233, 232, 0.3);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
}

.excursion-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(27, 73, 101, 0.2);
}

.excursion-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: 2;
}

.excursion-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.excursion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.excursion-card:hover .excursion-image img {
  transform: scale(1.1);
}

.excursion-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.excursion-icon {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.excursion-card:hover .excursion-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--secondary-color);
}

.excursion-icon i {
  font-size: 1.3rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.excursion-card:hover .excursion-icon i {
  color: var(--white);
}

.excursion-duration {
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.excursion-content {
  padding: 25px;
}

.excursion-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.excursion-header h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  line-height: 1.3;
}

.difficulty-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
}

.difficulty-badge.easy {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.excursion-description {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  opacity: 0.9;
}

.excursion-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.excursion-features .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.excursion-features .feature-item i {
  width: 16px;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.excursion-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.excursion-highlights .highlight-tag {
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.1),
    rgba(190, 233, 232, 0.2)
  );
  color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 12px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(27, 73, 101, 0.2);
  transition: all 0.3s ease;
}

.excursion-highlights .highlight-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.2),
    rgba(190, 233, 232, 0.3)
  );
  transform: translateY(-2px);
}

/* Excursions CTA */
.excursions-cta {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.excursions-cta .cta-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 25px;
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.excursions-cta .cta-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.excursions-cta .bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.excursions-cta .bubble-1 {
  width: 50px;
  height: 50px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.excursions-cta .bubble-2 {
  width: 35px;
  height: 35px;
  top: 70%;
  right: 15%;
  animation-delay: 1.5s;
}

.excursions-cta .bubble-3 {
  width: 25px;
  height: 25px;
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

.excursions-cta .cta-main {
  text-align: center;
  position: relative;
  z-index: 2;
}

.excursions-cta .cta-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.excursions-cta .cta-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.excursions-cta .cta-features .feature-tag {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.excursions-cta .cta-buttons {
  display: flex;
  justify-content: center;
}

.excursions-cta .primary-btn {
  background: linear-gradient(135deg, var(--secondary-color), #a8e6e3);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(190, 233, 232, 0.3);
}

.excursions-cta .primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(190, 233, 232, 0.5);
  background: linear-gradient(135deg, #a8e6e3, var(--secondary-color));
}

.excursions-cta .primary-btn i {
  transition: transform 0.3s ease;
}

.excursions-cta .primary-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design for Excursions */
@media (max-width: 1024px) {
  .excursions-section {
    padding: 80px 0;
  }

  .excursions-header {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .excursions-title {
    font-size: 2.8rem;
  }

  .excursions-badge {
    align-self: center;
  }

  .excursions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .excursions-section {
    padding: 60px 0;
  }

  .excursions-header {
    margin-bottom: 50px;
  }

  .excursions-title {
    font-size: 2.4rem;
  }

  .excursions-subtitle {
    font-size: 1.1rem;
  }

  .excursions-badge {
    padding: 15px 20px;
  }

  .badge-content {
    font-size: 1rem;
  }

  .badge-content i {
    font-size: 1.3rem;
  }

  .excursions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }

  .excursion-image {
    height: 180px;
  }

  .excursion-content {
    padding: 20px;
  }

  .excursion-header h3 {
    font-size: 1.3rem;
  }

  .excursion-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .excursion-features {
    gap: 6px;
    margin-bottom: 15px;
  }

  .excursion-features .feature-item {
    font-size: 0.85rem;
  }

  .excursions-cta {
    margin-top: 50px;
  }

  .excursions-cta .cta-container {
    padding: 40px 25px;
  }

  .excursions-cta .cta-title {
    font-size: 2rem;
  }

  .excursions-cta .cta-features {
    gap: 20px;
    margin-bottom: 30px;
  }

  .excursions-cta .primary-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .excursions-section {
    padding: 50px 0;
  }

  .excursions-header {
    margin-bottom: 40px;
  }

  .excursions-title {
    font-size: 2rem;
  }

  .excursions-subtitle {
    font-size: 1rem;
  }

  .excursions-badge {
    padding: 12px 16px;
  }

  .badge-content {
    font-size: 0.9rem;
    gap: 8px;
  }

  .badge-content i {
    font-size: 1.1rem;
  }

  .excursions-grid {
    gap: 15px;
    margin-top: 40px;
  }

  .excursion-image {
    height: 160px;
  }

  .excursion-overlay {
    top: 10px;
    right: 10px;
  }

  .excursion-icon {
    width: 40px;
    height: 40px;
  }

  .excursion-icon i {
    font-size: 1.1rem;
  }

  .excursion-duration {
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .excursion-content {
    padding: 15px;
  }

  .excursion-header h3 {
    font-size: 1.2rem;
  }

  .difficulty-badge {
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .excursion-description {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .excursion-features {
    gap: 5px;
    margin-bottom: 12px;
  }

  .excursion-features .feature-item {
    font-size: 0.8rem;
    gap: 8px;
  }

  .excursion-features .feature-item i {
    width: 14px;
    font-size: 0.8rem;
  }

  .excursion-highlights .highlight-tag {
    padding: 3px 8px;
    font-size: 0.75rem;
  }

  .excursions-cta {
    margin-top: 40px;
  }

  .excursions-cta .cta-container {
    padding: 30px 20px;
  }

  .excursions-cta .cta-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .excursions-cta .cta-features {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }

  .excursions-cta .cta-features .feature-tag {
    font-size: 0.85rem;
    justify-content: center;
  }

  .excursions-cta .primary-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    justify-content: center;
  }
}

/* New Excursions Design */
.excursions-intro {
  text-align: center;
  margin-bottom: 60px;
}

.excursions-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.excursion-portrait {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
}

.excursion-portrait:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.portrait-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portrait-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.excursion-portrait:hover .portrait-image img {
  transform: scale(1.1);
}

.portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  padding: 30px 20px 30px;
  color: white;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.excursion-portrait:hover .portrait-overlay {
  transform: translateY(0);
}

.portrait-content h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
}

.portrait-content p {
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  opacity: 0.9;
}

.portrait-details {
  display: flex;
  gap: 15px;
  align-items: center;
}

.portrait-details .duration,
.portrait-details .level {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 15px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Same gradient for all excursions */
.excursion-portrait .portrait-overlay {
  background: linear-gradient(
    to top,
    rgba(27, 73, 101, 0.9) 0%,
    rgba(27, 73, 101, 0.5) 50%,
    transparent 100%
  );
}

/* Footer */
.excursions-footer {
  text-align: center;
  padding: 30px 0;
}

.excursions-footer p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  opacity: 0.8;
}

.contact-link {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-link:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 73, 101, 0.3);
}

/* Responsive Design for New Excursions */
@media (max-width: 1200px) {
  .excursions-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .excursions-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .excursion-portrait {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .excursions-showcase {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 10px;
  }

  .excursion-portrait {
    height: 450px;
    border-radius: 15px;
  }

  .portrait-overlay {
    padding: 30px 20px 30px;
  }

  .portrait-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .portrait-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .portrait-details {
    gap: 12px;
  }

  .portrait-details .duration,
  .portrait-details .level {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .excursions-showcase {
    padding: 0 5px;
    gap: 20px;
  }

  .excursion-portrait {
    height: 400px;
    border-radius: 12px;
  }

  .portrait-overlay {
    padding: 25px 15px 25px;
  }

  .portrait-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .portrait-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .portrait-details {
    gap: 10px;
  }

  .portrait-details .duration,
  .portrait-details .level {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .excursions-footer p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .contact-link {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Slide down animation for mobile menu */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* How to Get Here Section */
.how-to-get-here-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  font-family: "Alan Sans", sans-serif;
}

.how-to-get-here-section .section-header {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.how-to-get-here-section .section-header.animate {
  opacity: 1;
  transform: translateY(0);
}

.travel-info-triggers {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.1s;
}

.travel-info-triggers.animate {
  opacity: 1;
  transform: translateY(0);
}

.transport-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.2s;
}

.transport-content.animate {
  opacity: 1;
  transform: translateY(0);
}

.transport-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.3s;
}

.transport-cta.animate {
  opacity: 1;
  transform: translateY(0);
}

.how-to-get-here-section * {
  font-family: "Alan Sans", sans-serif !important;
}

/* Ensure icons display properly */
.fas,
.fab,
.far,
.fal,
.fa {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro",
    "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome" !important;
}

/* Ensure popup close button icons work */
.close-btn i {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro",
    "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome" !important;
}

/* Ensure travel info button icons work */
.travel-info-btn i {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro",
    "Font Awesome 5 Free", "Font Awesome 5 Pro", "FontAwesome" !important;
}

/* Travel Information Popup Styles */
.travel-info-triggers {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.travel-info-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f7c 100%);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(27, 73, 101, 0.3);
  min-width: 140px;
  justify-content: center;
}

.travel-info-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(27, 73, 101, 0.4);
  background: linear-gradient(135deg, #2c5f7c 0%, var(--primary-color) 100%);
}

.travel-info-btn i {
  font-size: 1.1rem;
}

.travel-info-btn.active {
  background: linear-gradient(135deg, #2c5f7c 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
}

/* Individual button colors */
.airport-btn {
  background: linear-gradient(135deg, #1b4965 0%, #2c5f7c 100%);
}

.airport-btn:hover {
  background: linear-gradient(135deg, #2c5f7c 0%, #1b4965 100%);
}

.immigration-btn {
  background: linear-gradient(135deg, #2c5f7c 0%, #1b4965 100%);
}

.immigration-btn:hover {
  background: linear-gradient(135deg, #1b4965 0%, #2c5f7c 100%);
}

.tips-btn {
  background: linear-gradient(135deg, #1b4965 0%, #2c5f7c 100%);
}

.tips-btn:hover {
  background: linear-gradient(135deg, #2c5f7c 0%, #1b4965 100%);
}

.travel-info-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
  overflow-y: auto;
}

.travel-info-popup.active {
  display: flex !important;
}

.travel-info-popup[style*="display: flex"] {
  display: flex !important;
}

.popup-content {
  background: white;
  border-radius: 20px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease-out;
  margin: 20px;
  position: relative;
  z-index: 10000;
}

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

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #e9ecef;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f7c 100%);
  color: white;
  border-radius: 20px 20px 0 0;
}

.popup-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  font-family: "Alan Sans", sans-serif;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.popup-body {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.popup-body .info-section {
  position: relative;
  z-index: 1;
}

.popup-body .info-content {
  position: relative;
  z-index: 1;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 25px;
}

.info-section {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  border-left: 4px solid var(--secondary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(27, 73, 101, 0.1);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.info-header i {
  font-size: 1.5rem;
  color: var(--primary-color);
  background: white;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(27, 73, 101, 0.2);
}

.info-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  font-family: "Alan Sans", sans-serif;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid rgba(27, 73, 101, 0.1);
}

.info-item:last-child {
  border-bottom: none;
}

.info-item strong {
  color: var(--primary-color);
  font-weight: 600;
  min-width: 120px;
  flex-shrink: 0;
  font-family: "Alan Sans", sans-serif;
}

/* Responsive Design for Travel Info Popups */
@media (max-width: 768px) {
  .travel-info-triggers {
    gap: 15px;
    margin-bottom: 30px;
  }

  .travel-info-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
    min-width: 120px;
  }

  .popup-content {
    margin: 10px;
    max-height: 95vh;
    max-width: 95vw;
  }

  .popup-header {
    padding: 20px;
  }

  .popup-header h3 {
    font-size: 1.3rem;
  }

  .popup-body {
    padding: 20px;
  }

  .info-section {
    padding: 20px;
  }

  .info-item {
    flex-direction: column;
    gap: 4px;
  }

  .info-item strong {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .travel-info-triggers {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .travel-info-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 200px;
    width: 100%;
    max-width: 280px;
  }

  .popup-content {
    margin: 5px;
    max-height: 98vh;
    max-width: 98vw;
    border-radius: 15px;
  }

  .popup-header {
    padding: 15px;
  }

  .popup-header h3 {
    font-size: 1.2rem;
  }

  .popup-body {
    padding: 15px;
  }

  .info-section {
    padding: 15px;
  }

  .info-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .travel-info-btn {
    min-width: 180px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .popup-header h3 {
    font-size: 1.1rem;
  }

  .popup-body {
    padding: 12px;
  }

  .info-section {
    padding: 12px;
  }
}

.how-to-get-here-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-to-get-here-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-to-get-here-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: "Alan Sans", sans-serif;
}

.how-to-get-here-section .section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.transport-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}

.transport-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.transport-intro h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: "Alan Sans", sans-serif;
}

.transport-intro p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.schedule-container {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(27, 73, 101, 0.1);
  border: 1px solid #e9ecef;
}

.schedule-container h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-align: center;
  font-family: "Alan Sans", sans-serif;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.schedule-item {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f7c 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(27, 73, 101, 0.3);
}

.schedule-item .time {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: "Alan Sans", sans-serif;
}

.schedule-item .route {
  font-size: 0.9rem;
  opacity: 0.9;
}

.transport-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transport-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(27, 73, 101, 0.08);
  border-left: 4px solid var(--secondary-color);
}

.transport-details .detail-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
  flex-shrink: 0;
}

.transport-details .detail-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-family: "Alan Sans", sans-serif;
}

.transport-details .detail-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.transport-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 20px rgba(27, 73, 101, 0.15);
}

.transport-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.transport-image:hover img {
  transform: scale(1.05);
}

.transport-cta {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(27, 73, 101, 0.1);
  border: 1px solid #e9ecef;
}

.transport-cta p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

.transport-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5f7c 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(27, 73, 101, 0.3);
}

.transport-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(27, 73, 101, 0.4);
  background: linear-gradient(135deg, #2c5f7c 0%, var(--primary-color) 100%);
}

/* Responsive Design for How to Get Here Section */
@media (max-width: 768px) {
  .how-to-get-here-section {
    padding: 60px 0;
  }

  .how-to-get-here-section .section-title {
    font-size: 2rem;
  }

  .transport-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .transport-details .detail-item {
    padding: 15px;
  }

  .transport-image img {
    height: 300px;
  }

  .transport-cta {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .how-to-get-here-section .section-title {
    font-size: 1.8rem;
  }

  .schedule-item {
    padding: 15px;
  }

  .schedule-item .time {
    font-size: 1.1rem;
  }

  .transport-cta .cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

/* Location Section */
.location-section {
  position: relative;
  background: linear-gradient(135deg, #f8fbff 0%, #e4f2ff 100%);
  padding: 80px 0;
  overflow: hidden;
  z-index: 100;
}

.location-section::before,
.location-section::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(27, 73, 101, 0.12) 0%,
    rgba(27, 73, 101, 0.05) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.location-section::before {
  top: -80px;
  right: -60px;
}

.location-section::after {
  bottom: -90px;
  left: -70px;
}

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

.location-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.location-title .highlight {
  color: var(--primary-color);
  position: relative;
}

.location-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 2px;
}

.location-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  opacity: 0.8;
  margin: 0;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.location-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-details {
  text-align: left;
}

.location-details h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.address {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  opacity: 0.9;
}

.location-actions {
  margin-top: 20px;
}

.directions-btn {
  background: linear-gradient(135deg, var(--secondary-color), #a8e6e3);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(190, 233, 232, 0.3);
}

.directions-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(190, 233, 232, 0.5);
  background: linear-gradient(135deg, #a8e6e3, var(--secondary-color));
}

.directions-btn i {
  transition: transform 0.3s ease;
}

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

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(27, 73, 101, 0.1);
  border: 1px solid rgba(190, 233, 232, 0.3);
}

.map-container iframe {
  border-radius: 20px;
  filter: saturate(1.1) contrast(1.05);
}

/* Responsive: Location */
@media (max-width: 768px) {
  .location-section {
    padding: 60px 0;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-title {
    font-size: 2rem;
  }

  .location-details {
    text-align: center;
  }

  .location-details h3 {
    font-size: 1.5rem;
  }

  .address {
    font-size: 1rem;
  }

  .directions-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .location-section {
    padding: 50px 0;
  }

  .location-header {
    margin-bottom: 30px;
  }

  .location-title {
    font-size: 1.8rem;
  }

  .location-subtitle {
    font-size: 1rem;
  }

  .location-details h3 {
    font-size: 1.3rem;
  }

  .address {
    font-size: 0.95rem;
  }

  .directions-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Responsive: Section Titles to match Island Adventures */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
}

/* Ensure default h2 uses Alan Sans unless overridden by a class */
h2 {
  font-family: "Alan Sans", sans-serif;
}

/* About Page Layout */
.about-main {
  margin: 0;
  padding: 0;
}

/* Our Story Section */
.our-story-section {
  position: relative;
  background: linear-gradient(135deg, #0d2130 0%, #0f2a3d 100%);
  color: #e8f4f6;
  padding: 80px 0 50px;
}

.our-story-section .container {
  max-width: 1100px;
}

.story-header {
  text-align: center;
  margin-bottom: 30px;
}

.story-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}

.story-body {
  display: grid;
  gap: 18px;
  margin: 0 auto 35px;
  max-width: 1000px;
}

.story-body p {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(232, 244, 246, 0.95);
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight {
  text-align: center;
}

.highlight-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 8px;
  position: relative;
}

.highlight-title span {
  color: var(--secondary-color);
}

.highlight p {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  color: rgba(232, 244, 246, 0.85);
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .our-story-section {
    padding: 60px 0 40px;
  }
  .story-title {
    font-size: 1.8rem;
  }
  .story-highlights {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .story-title {
    font-size: 1.6rem;
  }
}

/* Dive Center Showcase */
.center-showcase {
  background: linear-gradient(180deg, #0f2a3d, #12344a 55%, #f8fafc 55%);
  padding: 50px 0 80px;
}

.center-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.center-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
}

.center-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.08),
    rgba(190, 233, 232, 0.12)
  );
  z-index: 1;
}

.center-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.5s ease;
}

.center-frame:hover img {
  transform: scale(1.08);
}

.center-stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  padding: 10px 14px;
  border-radius: 12px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.center-stamp i {
  color: var(--secondary-color);
}

.center-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.center-bubble.b1 {
  width: 26px;
  height: 26px;
  bottom: 18px;
  left: 20px;
  animation-delay: 0s;
}
.center-bubble.b2 {
  width: 18px;
  height: 18px;
  bottom: 26px;
  left: 60px;
  animation-delay: 1.3s;
}
.center-bubble.b3 {
  width: 12px;
  height: 12px;
  bottom: 40px;
  left: 30px;
  animation-delay: 2.1s;
}

.center-content {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 20px 45px rgba(27, 73, 101, 0.18);
  border: 1px solid rgba(190, 233, 232, 0.35);
}

.center-content h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.center-content p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 16px;
}

.center-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.08),
    rgba(190, 233, 232, 0.18)
  );
  border: 1px solid rgba(27, 73, 101, 0.2);
  color: var(--primary-color);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.chip i {
  color: var(--primary-color);
  opacity: 0.9;
}

/* Reveal helper */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 1024px) {
  .center-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .center-frame {
    transform: rotate(0deg);
  }
  .center-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .center-showcase {
    padding: 30px 0 50px;
  }
  .center-content h3 {
    font-size: 1.6rem;
  }
}

/* Center Stage (unique blob + badges + panel) */
.center-stage {
  position: relative;
  padding: 30px 0 10px;
}

.wave-bg {
  position: absolute;
  inset: -20px 0 auto 0;
  height: 220px;
  pointer-events: none;
}
.wave-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.center-blob {
  --blob: polygon(14% 0%, 92% 6%, 100% 70%, 80% 100%, 6% 92%, 0% 18%);
  position: relative;
  width: min(900px, 90%);
  margin: 0 auto;
  border-radius: 22px;
  clip-path: var(--blob);
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
}

.center-blob::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.06),
    rgba(190, 233, 232, 0.12)
  );
}
.center-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.5s ease;
}
.center-blob:hover img {
  transform: scale(1.07);
}

.badge-tag {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  padding: 10px 14px;
  border-radius: 14px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.badge-tag i {
  color: var(--secondary-color);
}
.badge-tag.bt1 {
  top: 30px;
  left: 12%;
}
.badge-tag.bt2 {
  top: 70px;
  right: 10%;
}
.badge-tag.bt3 {
  bottom: 30px;
  left: 18%;
}

.center-panel {
  margin: 26px auto 0;
  max-width: 800px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: 0 20px 45px rgba(27, 73, 101, 0.18);
  border: 1px solid rgba(190, 233, 232, 0.35);
}
.center-panel h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  text-align: center;
}
.center-panel p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  opacity: 0.9;
  text-align: center;
  margin-bottom: 14px;
}
.center-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Poster style showcase */
.center-poster {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.poster-media {
  position: relative;
}
.poster-circle {
  width: 520px;
  height: 520px;
  max-width: 95vw;
  max-height: 95vw;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
  border: 4px solid rgb(255, 255, 255);
  background: radial-gradient(
    circle at 60% 40%,
    rgba(190, 233, 232, 0.25),
    transparent 60%
  );
}
.poster-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.6s ease;
}
.poster-circle:hover img {
  transform: scale(1.1);
}

.mini-shot {
  position: absolute;
  width: 180px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  border: 2px solid #fff;
}
.mini-shot.ms1 {
  bottom: 10%;
  left: -20px;
  transform: rotate(-6deg);
}
.mini-shot.ms2 {
  top: 8%;
  right: -20px;
  transform: rotate(5deg);
}

.poster-pin {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.poster-pin i {
  color: var(--secondary-color);
}

.poster-info {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 20px 45px rgba(27, 73, 101, 0.18);
  border: 1px solid rgba(190, 233, 232, 0.35);
}
.poster-info h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.poster-info p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 16px;
}
.poster-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.poster-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.08),
    rgba(190, 233, 232, 0.18)
  );
  border: 1px solid rgba(27, 73, 101, 0.2);
  color: var(--primary-color);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .center-poster {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .poster-circle {
    width: 460px;
    height: 460px;
  }
  .mini-shot.ms1 {
    left: 10px;
  }
  .mini-shot.ms2 {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .poster-circle {
    width: 86vw;
    height: 86vw;
    border-width: 8px;
  }
  .mini-shot {
    width: 120px;
    height: 120px;
  }
  .poster-info h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 1024px) {
  .badge-tag.bt1 {
    left: 6%;
  }
  .badge-tag.bt2 {
    right: 6%;
  }
}

@media (max-width: 480px) {
  .center-panel h3 {
    font-size: 1.6rem;
  }
}

/* About Page (About Hero) */
.about-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -100px;
  padding-top: 180px;
}

.about-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.about-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.55) 0%,
    rgba(85, 144, 181, 0.45) 100%
  );
  z-index: 2;
}

.about-hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.about-hero__bubbles span {
  position: absolute;
  background: rgba(190, 233, 232, 0.3);
  border-radius: 50%;
  animation: bubbleUp 12s infinite linear;
  box-shadow: 0 0 10px rgba(190, 233, 232, 0.4);
}

.about-hero__bubbles span:nth-child(1) {
  left: 10%;
  bottom: -20px;
  animation-duration: 10s;
  animation-delay: 0s;
  width: 12px;
  height: 12px;
}

.about-hero__bubbles span:nth-child(2) {
  left: 30%;
  bottom: -30px;
  animation-duration: 14s;
  animation-delay: 2s;
  width: 8px;
  height: 8px;
}

.about-hero__bubbles span:nth-child(3) {
  left: 50%;
  bottom: -25px;
  animation-duration: 12s;
  animation-delay: 4s;
  width: 10px;
  height: 10px;
}

.about-hero__bubbles span:nth-child(4) {
  left: 70%;
  bottom: -20px;
  animation-duration: 13s;
  animation-delay: 1s;
  width: 9px;
  height: 9px;
}

.about-hero__bubbles span:nth-child(5) {
  left: 85%;
  bottom: -30px;
  animation-duration: 11s;
  animation-delay: 3s;
  width: 11px;
  height: 11px;
}

.about-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  animation: fadeInUp 1s ease both;
}

.about-hero__title {
  font-size: 4.5rem;
  color: #bee9e8;
  margin: 0 0 25px 0;
  font-family: "Alan Sans", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  animation: slideInDown 0.8s ease 0.2s both;
}

.about-hero__subtitle {
  font-size: 1.4rem;
  color: rgba(190, 233, 232, 0.95);
  margin: 0 0 40px 0;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease 0.4s both;
  font-weight: 400;
}

.about-hero__features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
  margin-bottom: 40px;
}

.about-hero__features .hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bee9e8;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.about-hero__features .hero-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.about-hero__features .hero-feature i {
  font-size: 1.3rem;
  color: #0ea5e9;
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.6));
}

/* Hero Buttons */
.about-hero__buttons {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
  animation: heroButtonsIn 1s ease 0.3s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn:hover::before {
  left: 100%;
}

.hero-btn i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover i {
  transform: scale(1.2) rotate(5deg);
}

.hero-btn:active {
  transform: translateY(-1px);
}

/* Individual Button Styles */
.hero-btn--story {
  background: linear-gradient(135deg, rgba(190, 233, 232, 0.3), rgba(27, 73, 101, 0.3));
}

.hero-btn--story:hover {
  background: linear-gradient(135deg, rgba(190, 233, 232, 0.5), rgba(27, 73, 101, 0.5));
}

.hero-btn--team {
  background: linear-gradient(135deg, rgba(27, 73, 101, 0.3), rgba(190, 233, 232, 0.3));
}

.hero-btn--team:hover {
  background: linear-gradient(135deg, rgba(27, 73, 101, 0.5), rgba(190, 233, 232, 0.5));
}

.hero-btn--rasdhoo {
  background: linear-gradient(135deg, rgba(190, 233, 232, 0.25), rgba(27, 73, 101, 0.35));
}

.hero-btn--rasdhoo:hover {
  background: linear-gradient(135deg, rgba(190, 233, 232, 0.45), rgba(27, 73, 101, 0.55));
}

.hero-btn--travel {
  background: linear-gradient(135deg, rgba(27, 73, 101, 0.25), rgba(190, 233, 232, 0.35));
}

.hero-btn--travel:hover {
  background: linear-gradient(135deg, rgba(27, 73, 101, 0.45), rgba(190, 233, 232, 0.55));
}

@keyframes heroButtonsIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Hero Buttons */
@media (max-width: 1024px) {
  .about-hero__title {
    font-size: 3.5rem;
    letter-spacing: 1.5px;
  }

  .about-hero__buttons {
    gap: 12px;
  }

  .hero-btn {
    padding: 11px 18px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .hero-btn i {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .about-hero__title {
    font-size: 2.8rem;
  }

  .about-hero__subtitle {
    font-size: 1.1rem;
  }

  .about-hero__features {
    gap: 20px;
    margin-bottom: 30px;
  }

  .about-hero__features .hero-feature {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .about-hero__features .hero-feature i {
    font-size: 0.9rem;
  }

  .about-hero__buttons {
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .hero-btn {
    padding: 10px 16px;
    font-size: 0.75rem;
    gap: 6px;
  }

  .hero-btn i {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-hero__title {
    font-size: 2.2rem;
  }

  .about-hero__buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.85rem;
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroTitleIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  /* Soft linear tint only (no vignette) */
  background: linear-gradient(
    180deg,
    rgba(27, 73, 101, 0.22),
    rgba(27, 73, 101, 0.34)
  );
  z-index: 1;
}

/* Bubble accents */
.about-hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.about-hero__bubbles span {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: bubbleUp 10s linear infinite;
}

.about-hero__bubbles span:nth-child(1) {
  left: 12%;
  bottom: -20px;
  animation-duration: 12s;
  width: 8px;
  height: 8px;
}
.about-hero__bubbles span:nth-child(2) {
  left: 48%;
  bottom: -30px;
  animation-duration: 10s;
  width: 12px;
  height: 12px;
}
.about-hero__bubbles span:nth-child(3) {
  left: 78%;
  bottom: -25px;
  animation-duration: 14s;
  width: 9px;
  height: 9px;
}

@keyframes bubbleUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-50vh) translateX(20px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-100vh) translateX(-20px);
    opacity: 0;
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: About Page (scoped to About section only) */
@media (max-width: 1024px) {
  .about-hero {
    min-height: 55vh;
    margin-top: -80px;
    padding-top: 170px;
  }

  .about-hero__title {
    font-size: 3.5rem;
  }

  .about-hero__subtitle {
    font-size: 1.2rem;
  }

  .about-hero__features {
    gap: 25px;
  }

  .about-hero__features .hero-feature {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .about-hero__buttons {
    gap: 12px;
  }

  .hero-btn {
    padding: 11px 18px;
    font-size: 0.8rem;
    gap: 6px;
  }

  .hero-btn i {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
    margin-top: -70px;
    padding-top: 160px;
  }

  .about-hero__content {
    padding: 30px 20px;
  }

  .about-hero__title {
    font-size: 2.8rem;
  }

  .about-hero__subtitle {
    font-size: 1.1rem;
  }

  .about-hero__features {
    gap: 20px;
    margin-bottom: 30px;
  }

  .about-hero__features .hero-feature {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .about-hero__features .hero-feature i {
    font-size: 0.9rem;
  }

  .about-hero__buttons {
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .hero-btn {
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .hero-btn i {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 45vh;
    margin-top: -70px;
    padding-top: 150px;
  }

  .about-hero__title {
    font-size: 2.2rem;
  }

  .about-hero__subtitle {
    font-size: 1rem;
  }

  .about-hero__features {
    gap: 15px;
    margin-bottom: 25px;
  }

  .about-hero__features .hero-feature {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .about-hero__features .hero-feature i {
    font-size: 0.85rem;
  }

  .about-hero__buttons {
    gap: 8px;
    margin-top: 25px;
  }

  .hero-btn {
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  .hero-btn i {
    font-size: 1rem;
    margin: 0;
  }
  }
}


/* Footer Section */
footer,
footer.footer,
.footer {
  background: #1b4965 !important;
  background-color: #1b4965 !important;
  padding: 100px 0 30px !important;
  position: relative !important;
  z-index: 500 !important;
  width: 100% !important;
  min-height: 350px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 0 !important;
  clear: both !important;
  color: #ffffff !important;
  overflow: visible !important;
  box-sizing: border-box !important;
  isolation: isolate !important;
}

footer::before,
footer.footer::before,
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #bee9e8 50%,
    transparent 100%
  ) !important;
  z-index: 1;
}

footer .footer-container,
footer.footer .footer-container,
.footer .footer-container,
.footer-container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 40px 20px 0 20px !important;
  background: none !important;
  background-color: transparent !important;
  position: relative !important;
  z-index: 502 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

footer .footer-content,
footer.footer .footer-content,
.footer .footer-content,
.footer-content {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr !important;
  gap: 40px !important;
  margin-bottom: 30px !important;
  position: relative !important;
  background: none !important;
  background-color: transparent !important;
  z-index: 502 !important;
  width: 100% !important;
  overflow: visible !important;
}

footer .footer-column,
footer.footer .footer-column,
.footer .footer-column,
.footer-column {
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  background: none !important;
  background-color: transparent !important;
  z-index: 2 !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  box-sizing: border-box !important;
  margin-top: 20px !important;
}

.footer-column:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(190, 233, 232, 0.3) 20%,
    rgba(190, 233, 232, 0.5) 50%,
    rgba(190, 233, 232, 0.3) 80%,
    transparent 100%
  );
}

.company-info {
  max-width: 300px;
  align-items: flex-start !important;
  text-align: left !important;
  margin-top: 0 !important;
}

.company-avatar {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  border: 3px solid var(--white);
}

.company-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

footer .company-name,
footer.footer .company-name,
.footer .company-name,
.company-name {
  font-family: "Alan Sans", sans-serif !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 15px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.company-details {
  margin-bottom: 25px;
}

footer .company-details p,
footer.footer .company-details p,
.footer .company-details p,
.company-details p {
  font-family: "Quicksand", sans-serif !important;
  font-size: 0.95rem !important;
  color: #ffffff !important;
  margin-bottom: 5px !important;
  opacity: 0.9 !important;
  line-height: 1.4 !important;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

footer .social-icon,
footer.footer .social-icon,
.footer .social-icon {
  width: 45px !important;
  height: 45px !important;
  background: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #1b4965 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  font-size: 1.1rem !important;
}

footer .social-icon i,
footer.footer .social-icon i,
.footer .social-icon i {
  color: #1b4965 !important;
}

footer .social-icon:hover,
footer.footer .social-icon:hover,
.footer .social-icon:hover {
  background: #bee9e8 !important;
  color: #1b4965 !important;
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(27, 73, 101, 0.3) !important;
}

footer .social-icon:hover i,
footer.footer .social-icon:hover i,
.footer .social-icon:hover i {
  color: #1b4965 !important;
}

footer .footer-title,
footer.footer .footer-title,
.footer .footer-title,
.footer-title {
  font-family: "Quicksand", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-align: center !important;
  width: 100% !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: inline-block !important;
  transform: scale(1) !important;
}

.footer-title:hover {
  color: var(--secondary-color) !important;
  transform: scale(1.05) !important;
  text-shadow: 0 2px 10px rgba(190, 233, 232, 0.4) !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

footer .footer-links li,
footer.footer .footer-links li,
.footer .footer-links li,
.footer-links li {
  margin-bottom: 12px !important;
  color: #ffffff !important;
}

footer .footer-links a,
footer.footer .footer-links a,
.footer .footer-links a,
.footer-links a {
  font-family: "Quicksand", sans-serif !important;
  font-size: 0.95rem !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  opacity: 0.8 !important;
  position: relative !important;
  padding: 5px 10px !important;
  text-align: center !important;
  display: inline-block !important;
  transform: scale(1) translateY(0) !important;
  overflow: hidden !important;
  animation: fadeInUp 0.6s ease-out forwards !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

.footer-links li:nth-child(1) a {
  animation-delay: 0.1s !important;
}

.footer-links li:nth-child(2) a {
  animation-delay: 0.2s !important;
}

.footer-links li:nth-child(3) a {
  animation-delay: 0.3s !important;
}

.footer-links li:nth-child(4) a {
  animation-delay: 0.4s !important;
}

.footer-links a::before {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  width: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--secondary-color), transparent) !important;
  transform: translateX(-50%) !important;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 1 !important;
}

.footer-links a::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(190, 233, 232, 0.1) !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: -1 !important;
  border-radius: 4px !important;
}

.footer-links a:hover {
  color: var(--secondary-color) !important;
  opacity: 1 !important;
  transform: scale(1.08) translateY(-3px) !important;
  text-shadow: 0 2px 12px rgba(190, 233, 232, 0.5) !important;
}

.footer-links a:hover::before {
  width: 80% !important;
}

.footer-links a:hover::after {
  transform: scaleX(1) !important;
  transform-origin: center !important;
}

/* Certified Partners Section */
.footer-column.certified-partners {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border-top: none !important;
  border-bottom: none !important;
  width: 100% !important;
  grid-column: span 1 !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.certified-partners {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border-top: none !important;
  border-bottom: none !important;
  width: 100% !important;
}

.partners-title {
  font-family: "Quicksand", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-align: center !important;
}

.partners-logos {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 30px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}

.partner-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0.9 !important;
  transition: all 0.3s ease !important;
  min-height: 80px !important;
  position: relative !important;
}

.partner-item:hover {
  opacity: 1 !important;
  transform: translateY(-3px) !important;
}

.partner-logo {
  max-width: 120px !important;
  max-height: 80px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter: none !important;
  display: block !important;
}

.big-blue-logo {
  max-width: 140px !important;
  max-height: 60px !important;
  filter: none !important;
  display: block !important;
}

.insurance-partner {
  flex-direction: column !important;
  gap: 12px !important;
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 80px !important;
  position: relative !important;
}

.insurance-text {
  font-family: "Quicksand", sans-serif !important;
  font-size: 0.85rem !important;
  color: #ffffff !important;
  opacity: 0.8 !important;
  margin: 0 0 8px 0 !important;
  padding: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  order: -1 !important;
}

.insurance-name {
  font-family: "Alan Sans", sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
}

footer .footer-bottom,
footer.footer .footer-bottom,
.footer .footer-bottom,
.footer-bottom {
  margin-top: 30px !important;
  padding-top: 20px !important;
  padding-bottom: 0 !important;
  background: none !important;
  background-color: transparent !important;
  color: #ffffff !important;
  width: 100% !important;
  position: relative !important;
  bottom: 0 !important;
}

.footer-reviews-weather {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 30px 0;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-reviews {
  flex: 1;
  min-width: 300px;
}

.review-platforms {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.platform-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.platform-logo i {
  font-size: 2rem;
  color: var(--white);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.platform-logo:hover i {
  opacity: 1;
  transform: scale(1.1);
}

.platform-logo .stars {
  font-size: 0.9rem;
  color: #000;
  font-weight: 600;
  letter-spacing: 2px;
}

.footer-weather {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 200px;
}

.weather-date {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  opacity: 0.9;
  font-weight: 500;
}

.weather-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.weather-icon {
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.9;
}

.weather-temp {
  font-family: "Alan Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #dc3545;
  line-height: 1;
}

.weather-social {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.weather-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.weather-social-icon:hover {
  opacity: 1;
  transform: translateY(-3px);
  color: var(--secondary-color);
}

.weather-social-icon i {
  font-size: 1.1rem;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(190, 233, 232, 0.3) 50%,
    transparent 100%
  );
  margin-bottom: 25px;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

footer .copyright,
footer.footer .copyright,
.footer .copyright,
.copyright {
  font-family: "Quicksand", sans-serif !important;
  font-size: 0.9rem !important;
  color: #ffffff !important;
  opacity: 0.8 !important;
  margin: 0 !important;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr !important;
    gap: 30px !important;
  }
}

@media (max-width: 1024px) {
  footer,
  footer.footer,
  .footer {
    padding: 80px 0 20px !important;
    background: #1b4965 !important;
    background-color: #1b4965 !important;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    width: 100% !important;
    overflow: visible !important;
  }

  .footer-column {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  .company-info {
    grid-column: span 2;
    max-width: 100%;
    text-align: center;
    width: 100% !important;
  }

  .footer-column.certified-partners {
    grid-column: span 2 !important;
    text-align: center !important;
  }

  .partners-title {
    text-align: center !important;
  }

  .partners-logos {
    justify-content: center !important;
  }

  .company-avatar {
    margin: 0 auto 20px;
  }

  /* Hide dividers on tablet and mobile */
  .footer-column:not(:first-child)::before {
    display: none;
  }

  .footer-column.certified-partners {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .certified-partners {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .partners-logos {
    gap: 25px !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .partner-item {
    min-height: 70px !important;
  }

  .partner-logo {
    max-width: 100px !important;
    max-height: 70px !important;
  }

  .big-blue-logo {
    max-width: 120px !important;
    max-height: 55px !important;
  }

  .insurance-partner {
    min-height: 70px !important;
  }
}

@media (max-width: 768px) {
  /* Force mobile footer layout */
  footer,
  footer.footer,
  .footer,
  html body footer,
  body footer {
    padding: 70px 0 25px !important;
    background: #1b4965 !important;
    background-color: #1b4965 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .footer-container,
  html body footer .footer-container,
  body footer .footer-container {
    padding: 30px 20px 0 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* CRITICAL: Force single column layout */
  .footer-content,
  footer .footer-content,
  footer.footer .footer-content,
  html body footer .footer-content,
  body footer .footer-content {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 25px !important;
    margin-bottom: 35px !important;
    width: 100% !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  /* Ensure all columns are visible and stacked */
  .footer-column,
  footer .footer-column,
  footer.footer .footer-column,
  html body footer .footer-column,
  body footer .footer-column {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
    box-sizing: border-box !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Hide dividers on mobile */
  .footer-column:not(:first-child)::before {
    display: none !important;
  }

  .company-info,
  html body footer .company-info {
    grid-column: auto !important;
    text-align: center !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto 20px auto !important;
  }

  .company-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px auto !important;
  }

  .company-name,
  html body footer .company-name {
    font-size: 2rem !important;
    margin-bottom: 12px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center !important;
  }

  .company-details {
    width: 100% !important;
    text-align: center !important;
  }

  .company-details p {
    font-size: 1.1rem !important;
    margin-bottom: 5px !important;
    word-wrap: break-word !important;
    text-align: center !important;
  }

  .social-icons {
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin: 0 auto !important;
  }

  .footer .social-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.2rem !important;
  }

  .footer-title,
  html body footer .footer-title,
  body footer .footer-title {
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
  }

  .footer-links,
  html body footer .footer-links,
  body footer .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
  }

  .footer-links li,
  html body footer .footer-links li,
  body footer .footer-links li {
    margin-bottom: 10px !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    list-style: none !important;
  }

  .footer-links a,
  html body footer .footer-links a,
  body footer .footer-links a {
    font-size: 1.1rem !important;
    margin-bottom: 0 !important;
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    padding-left: 0 !important;
    color: #ffffff !important;
  }

  .footer-links a::before {
    display: none !important;
  }

  .footer-links a:hover {
    padding-left: 0 !important;
  }

  .footer-reviews-weather {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .footer-reviews {
    min-width: auto;
    width: 100%;
  }

  .review-platforms {
    justify-content: center;
    gap: 25px;
  }

  .footer-weather {
    align-items: center;
    min-width: auto;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .copyright {
    font-size: 1rem;
  }

  .footer-column.certified-partners {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    grid-column: span 1 !important;
  }

  .certified-partners {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .partners-title {
    font-size: 1rem !important;
    margin-bottom: 15px !important;
    text-align: center !important;
  }

  .partners-logos {
    gap: 20px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .partner-item {
    min-height: auto !important;
  }

  .partner-logo {
    max-width: 90px !important;
    max-height: 60px !important;
  }

  .big-blue-logo {
    max-width: 110px !important;
    max-height: 50px !important;
  }

  .insurance-partner {
    min-height: auto !important;
    gap: 10px !important;
  }

  .insurance-text {
    font-size: 0.75rem !important;
    white-space: normal !important;
  }
}

@media (max-width: 480px) {
  /* Small mobile footer layout */
  footer,
  footer.footer,
  .footer,
  html body footer,
  body footer {
    padding: 60px 0 20px !important;
    background: #1b4965 !important;
    background-color: #1b4965 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .footer-container,
  html body footer .footer-container,
  body footer .footer-container {
    padding: 25px 15px 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* CRITICAL: Force single column layout */
  .footer-content,
  footer .footer-content,
  footer.footer .footer-content,
  html body footer .footer-content,
  body footer .footer-content {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  /* Ensure all columns are visible on small mobile */
  .footer-column,
  footer .footer-column,
  footer.footer .footer-column,
  html body footer .footer-column,
  body footer .footer-column {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 0 12px 0 !important;
    box-sizing: border-box !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Hide dividers on small mobile */
  .footer-column:not(:first-child)::before {
    display: none !important;
  }

  .company-info,
  html body footer .company-info {
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
  }

  .company-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px auto !important;
  }

  .company-name,
  html body footer .company-name {
    font-size: 1.8rem !important;
    margin-bottom: 10px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center !important;
  }

  .company-details {
    margin-bottom: 15px !important;
    width: 100% !important;
    text-align: center !important;
  }

  .company-details p {
    font-size: 1rem !important;
    margin-bottom: 4px !important;
    word-wrap: break-word !important;
    text-align: center !important;
  }

  .social-icons {
    gap: 18px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin: 0 auto !important;
  }

  .footer .social-icon {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.1rem !important;
  }

  .footer-title,
  html body footer .footer-title,
  body footer .footer-title {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
  }

  .footer-links,
  html body footer .footer-links,
  body footer .footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }

  .footer-links li,
  html body footer .footer-links li,
  body footer .footer-links li {
    margin-bottom: 8px !important;
    width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    list-style: none !important;
  }

  .footer-links a,
  html body footer .footer-links a,
  body footer .footer-links a {
    font-size: 1rem !important;
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    padding-left: 0 !important;
    color: #ffffff !important;
  }

  .footer-links a::before {
    display: none !important;
  }

  .footer-links a:hover {
    padding-left: 0 !important;
  }

  .footer-reviews-weather {
    padding: 20px 0;
    gap: 20px;
  }

  .review-platforms {
    gap: 20px;
  }

  .platform-logo i {
    font-size: 1.5rem;
  }

  .platform-logo .stars {
    font-size: 0.8rem;
  }

  .weather-temp {
    font-size: 1.6rem;
  }

  .footer-bottom {
    margin-top: 20px !important;
    padding-top: 15px !important;
    padding-bottom: 0 !important;
    width: 100% !important;
  }

  .footer-divider {
    margin-bottom: 12px;
    width: 100% !important;
  }

  .footer-bottom-content {
    width: 100% !important;
    text-align: center !important;
  }

  .copyright {
    font-size: 0.95rem;
    width: 100% !important;
    text-align: center !important;
  }
}

/* ===== About Page (end-of-file for easy navigation) ===== */
.about-main {
  margin-top: 0;
}

/* Meet The Team Section */
.meet-team-section {
  position: relative;
  background: linear-gradient(to bottom, #f8fafb 0%, #ffffff 50%, #f8fafb 100%);
  padding: 70px 0 120px 0;
  z-index: 10;
}

/* Unique Team Container - 90% width */
.team-container-unique {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Unique Team Header */
.team-header-unique {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.team-title-unique {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
}

.team-title-unique::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 2px;
}

.team-subtitle-unique {
  font-family: "Quicksand", sans-serif;
  font-size: 1.1rem;
  color: #6b7280;
  margin: 30px 0 0 0;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Unique Team Grid - Staggered Masonry Layout */
.team-grid-unique {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  align-items: start;
  margin-bottom: 40px;
}

/* Staggered positioning for visual interest */
.team-grid-unique .team-card-unique:nth-child(odd) {
  margin-top: 0;
}

.team-grid-unique .team-card-unique:nth-child(even) {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .team-grid-unique {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid-unique .team-card-unique:nth-child(7) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .team-grid-unique {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .team-grid-unique .team-card-unique:nth-child(2),
  .team-grid-unique .team-card-unique:nth-child(5) {
    margin-top: 30px;
  }
  
  .team-grid-unique .team-card-unique:nth-child(4),
  .team-grid-unique .team-card-unique:nth-child(7) {
    margin-top: 0;
  }
  
  .team-grid-unique .team-card-unique:nth-child(7) {
    grid-column: 2;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Unique Team Card Design */
.team-card-unique {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 30px rgba(27, 73, 101, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-align: center;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
}

.team-card-unique::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.team-card-unique:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(27, 73, 101, 0.2);
  border-color: var(--secondary-color);
}

.team-card-unique:hover::before {
  transform: scaleX(1);
}

.team-image-unique {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(190, 233, 232, 0.4) 100%);
}

.team-overlay-unique {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(27, 73, 101, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.team-card-unique:hover .team-overlay-unique {
  opacity: 1;
}

.team-image-unique img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(40%) brightness(0.95);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-unique:hover .team-image-unique img {
  filter: grayscale(0%) brightness(1.05);
  transform: scale(1.12);
}

/* Adjust image positioning for Zakibe and Jeevan */
.team-grid-unique .team-card-unique:nth-child(4) .team-image-unique img {
  object-position: center top;
}

.team-grid-unique .team-card-unique:nth-child(6) .team-image-unique img {
  object-position: center 35%;
}

.team-info-unique {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  position: relative;
}

.team-name-unique {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.team-card-unique:hover .team-name-unique {
  color: var(--primary-color);
}

.team-role-unique {
  font-family: "Alan Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 18px 0;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 12px;
}

.team-role-unique::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  border-radius: 2px;
}

.team-description-unique {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
  flex: 1;
}

.team-card-professional {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(27, 73, 101, 0.1);
  display: flex;
  flex-direction: column;
}

.team-card-professional:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(27, 73, 101, 0.15);
}

.team-image-professional {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--secondary-color), rgba(190, 233, 232, 0.3));
}

.team-image-professional img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

/* Adjust image positioning for Zakibe (4th card) and Jeevan (6th card) */
.team-grid-professional .team-card-professional:nth-child(4) .team-image-professional img,
.team-grid-professional .team-card-professional:nth-child(6) .team-image-professional img {
  object-position: center 35%;
}

.team-card-professional:hover .team-image-professional img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.team-info-professional {
  padding: 25px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-name-professional {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.team-role-professional {
  font-family: "Alan Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  margin: 0 0 15px 0;
  text-transform: capitalize;
}

.team-description-professional {
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0;
  flex: 1;
}

/* Responsive Design for Unique Team Section */
@media (max-width: 1024px) {
  .meet-team-section {
    padding: 60px 0 110px 0;
  }

  .team-container-unique {
    width: 90%;
    padding: 0 15px;
  }

  .team-header-unique {
    margin-bottom: 50px;
  }

  .team-title-unique {
    font-size: 2.4rem;
  }

  .team-subtitle-unique {
    font-size: 1.05rem;
  }

  .team-grid-unique {
    gap: 30px;
  }

  .team-grid-unique .team-card-unique:nth-child(even) {
    margin-top: 15px;
  }
}

/* Responsive Design for Professional Team Section */
@media (max-width: 1024px) {
  .meet-team-section {
    padding: 50px 0;
  }

  .team-header-professional {
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .team-title-professional {
    font-size: 2.2rem;
  }

  .team-subtitle-professional {
    font-size: 1rem;
  }

  .team-grid-professional {
    gap: 25px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .meet-team-section {
    padding: 50px 0 100px 0;
  }

  .team-container-unique {
    width: 90%;
    padding: 0 10px;
  }

  .team-header-unique {
    margin-bottom: 40px;
  }

  .team-title-unique {
    font-size: 2.2rem;
  }

  .team-subtitle-unique {
    font-size: 1rem;
    padding: 0 10px;
  }

  .team-grid-unique {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-grid-unique .team-card-unique:nth-child(even) {
    margin-top: 0;
  }

  .team-grid-unique .team-card-unique:nth-child(7) {
    grid-column: 1 / -1;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .team-image-unique {
    height: 250px;
  }

  .team-info-unique {
    padding: 25px 20px;
  }

  .team-name-unique {
    font-size: 1.2rem;
  }

  .team-role-unique {
    font-size: 0.9rem;
  }

  .team-description-unique {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .meet-team-section {
    padding: 40px 0;
  }

  .team-header-professional {
    margin-bottom: 35px;
    padding: 0 15px;
  }

  .team-title-professional {
    font-size: 2rem;
  }

  .team-subtitle-professional {
    font-size: 0.95rem;
  }

  .team-grid-professional {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 15px;
  }

  .team-grid-professional .team-card-professional:nth-child(7) {
    grid-column: auto;
  }

  .team-image-professional {
    height: 200px;
  }

  .team-info-professional {
    padding: 20px 15px;
  }

  .team-name-professional {
    font-size: 1.05rem;
  }

  .team-role-professional {
    font-size: 0.85rem;
  }

  .team-description-professional {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .meet-team-section {
    padding: 40px 0 90px 0;
  }

  .team-container-unique {
    width: 90%;
    padding: 0 5px;
  }

  .team-header-unique {
    margin-bottom: 35px;
  }

  .team-title-unique {
    font-size: 1.9rem;
  }

  .team-subtitle-unique {
    font-size: 0.95rem;
  }

  .team-grid-unique {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-grid-unique .team-card-unique:nth-child(even) {
    margin-top: 0;
  }

  .team-image-unique {
    height: 280px;
  }

  .team-info-unique {
    padding: 28px 22px;
  }
}

@media (max-width: 480px) {
  .meet-team-section {
    padding: 35px 0;
  }

  .team-header-professional {
    margin-bottom: 30px;
  }

  .team-title-professional {
    font-size: 1.8rem;
  }

  .team-subtitle-professional {
    font-size: 0.9rem;
  }

  .team-grid-professional {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
  }

  .team-image-professional {
    height: 220px;
  }

  .team-info-professional {
    padding: 22px 18px;
  }
}

/* Team Values & Mission Section */
.team-values {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.values-header h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 15px 0;
}

.values-header p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), #a8e6e3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.1);
}

.value-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.value-item h4 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 15px 0;
}

.value-item p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Team Certifications & Awards Section */
.team-certifications {
  padding: 60px 0;
  background: #ffffff;
}

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

.certifications-header h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 15px 0;
}

.certifications-header p {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.cert-item {
  display: flex;
  align-items: center;
  padding: 25px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.cert-logo {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cert-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cert-logo i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.cert-info h4 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 8px 0;
}

.cert-info p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #6b7280;
  margin: 0;
}

/* Responsive Design for Team Values & Certifications */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .certifications-grid {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .team-values,
  .team-certifications {
    padding: 50px 0;
  }

  .values-header h3,
  .certifications-header h3 {
    font-size: 1.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-item {
    padding: 25px 15px;
  }

  .cert-item {
    padding: 20px;
  }

  .cert-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .cert-logo img {
    width: 35px;
    height: 35px;
  }

  .cert-logo i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .team-values,
  .team-certifications {
    padding: 40px 0;
  }

  .values-header h3,
  .certifications-header h3 {
    font-size: 1.6rem;
  }

  .value-icon {
    width: 50px;
    height: 50px;
  }

  .value-icon i {
    font-size: 1.3rem;
  }

  .value-item h4 {
    font-size: 1.1rem;
  }

  .cert-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .cert-logo {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Rasdhoo Island Section - Unique Creative Design */
.rasdhoo-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 0;
  z-index: 10;
  overflow: hidden;
}

/* Rasdhoo Header */
.rasdhoo-header {
  padding: 80px 0 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.rasdhoo-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.rasdhoo-main-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
  position: relative;
  letter-spacing: 1px;
}

/* Island Picture First */
.island-picture {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.island-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.1);
}

.island-floating-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 30px 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: float 4s ease-in-out infinite;
  border: 2px solid rgba(190, 233, 232, 0.3);
}

.island-emoji {
  font-size: 3rem;
  animation: pulse 2s ease-in-out infinite;
}

.island-name {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Heart of Maldives Section */
.heart-of-maldives {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.heart-of-maldives::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(27, 73, 101, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(190, 233, 232, 0.08) 0%,
      transparent 50%
    );
  z-index: 1;
}

.heart-of-maldives::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(190, 233, 232, 0.03) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite;
  z-index: 1;
}

.heart-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.heart-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(27, 73, 101, 0.15);
  transition: all 0.4s ease;
  height: 500px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.heart-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(27, 73, 101, 0.25);
}

.heart-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 73, 101, 0.1) 0%,
    rgba(190, 233, 232, 0.05) 50%,
    rgba(27, 73, 101, 0.08) 100%
  );
  z-index: 2;
  transition: opacity 0.4s ease;
}

.heart-image:hover::before {
  opacity: 0.3;
}

.heart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  filter: brightness(1.05) contrast(1.1) saturate(1.1);
}

.heart-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.15) saturate(1.2);
}

.heart-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
  animation: heartbeat 2s ease-in-out infinite;
}

.heart-badge i {
  font-size: 1.2rem;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(1.05);
  }
}

.heart-text {
  padding-left: 20px;
}

.heart-text h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
}

.heart-text h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, var(--secondary-color));
  border-radius: 2px;
}

.heart-text p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 40px;
  opacity: 0.9;
}

.heart-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(190, 233, 232, 0.3);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(27, 73, 101, 0.1);
  border-color: var(--secondary-color);
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), #1e5a73);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 1.8rem;
  color: var(--white);
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro",
    "Font Awesome 5 Free", "Font Awesome 5 Pro";
  font-weight: 900;
}

.feature-icon:not(.feature-icon i) {
  font-size: 2.5rem;
}

.feature-text h4 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.feature-text p {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  opacity: 0.8;
  margin: 0;
}

/* Things to Experience Content */
.experience-content {
  padding: 15px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.experience-content .container {
  max-width: 90%;
}

.experience-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(27, 73, 101, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(190, 233, 232, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.experience-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.experience-header h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}

.experience-header h3::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.experience-header p {
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.experience-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(27, 73, 101, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(27, 73, 101, 0.2);
}

.card-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.experience-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 25px;
  background: white;
}

.card-content h4 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.card-content p {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
  opacity: 0.8;
}

.card-features {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.card-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: rgba(190, 233, 232, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(190, 233, 232, 0.3);
  transition: all 0.3s ease;
}

.card-features span:hover {
  background: rgba(190, 233, 232, 0.3);
  border-color: var(--secondary-color);
}

.card-features i {
  font-size: 0.8rem;
  color: var(--secondary-color);
}

/* Responsive Design for Experience Content */
@media (max-width: 1024px) {
  .experience-content {
    padding: 80px 0;
  }

  .experience-header {
    margin-bottom: 60px;
  }

  .experience-header h3 {
    font-size: 2.2rem;
  }

  .experience-header p {
    font-size: 1.1rem;
  }

  .experience-grid {
    max-width: 100%;
    gap: 20px;
  }

  .card-image {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .experience-content {
    padding: 60px 0;
  }

  .experience-header {
    margin-bottom: 50px;
  }

  .experience-header h3 {
    font-size: 2rem;
  }

  .experience-header p {
    font-size: 1rem;
  }

  .experience-grid {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .card-image {
    height: 250px;
  }

  .card-content {
    padding: 20px;
  }

  .card-content h4 {
    font-size: 1.3rem;
  }

  .card-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .experience-content {
    padding: 50px 0;
  }

  .experience-header h3 {
    font-size: 1.8rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .card-image {
    height: 220px;
  }

  .card-content {
    padding: 18px;
  }

  .card-content h4 {
    font-size: 1.2rem;
  }

  .card-content p {
    font-size: 0.9rem;
  }

  .card-features {
    gap: 10px;
  }

  .card-features span {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}

/* Responsive Design for Rasdhoo Section */
@media (max-width: 1024px) {
  .rasdhoo-header {
    padding: 70px 0 50px 0;
  }

  .rasdhoo-main-title {
    font-size: 2.4rem;
  }

  .heart-of-maldives {
    padding: 80px 0;
  }

  .heart-content {
    gap: 60px;
  }

  .heart-text h3 {
    font-size: 2.4rem;
  }

  .heart-text p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .rasdhoo-header {
    padding: 60px 0 40px 0;
  }

  .rasdhoo-main-title {
    font-size: 2rem;
  }

  .heart-of-maldives {
    padding: 60px 0;
  }

  .heart-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .heart-image {
    order: 1;
    height: 400px;
  }

  .heart-text {
    order: 2;
    padding-left: 0;
    text-align: center;
  }

  .heart-text h3 {
    font-size: 2.2rem;
  }

  .heart-text h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .heart-text p {
    font-size: 1rem;
  }

  .heart-features {
    gap: 20px;
  }

  .feature {
    padding: 18px;
    gap: 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 1.5rem;
  }

  .feature-icon:not(.feature-icon i) {
    font-size: 2rem;
  }

  .feature-text h4 {
    font-size: 1.2rem;
  }

  .feature-text p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .island-picture {
    height: 45vh;
    min-height: 300px;
  }

  .island-floating-text {
    padding: 15px 25px;
    gap: 10px;
    border-radius: 25px;
  }

  .island-emoji {
    font-size: 1.8rem;
  }

  .island-name {
    font-size: 1.5rem;
  }

  .heart-of-maldives {
    padding: 50px 0;
  }

  .heart-content {
    gap: 40px;
  }

  .heart-image {
    height: 350px;
  }

  .heart-text h3 {
    font-size: 2rem;
  }

  .heart-text p {
    font-size: 0.95rem;
  }

  .heart-features {
    gap: 18px;
  }

  .feature {
    padding: 15px;
    gap: 12px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-icon i {
    font-size: 1.3rem;
  }

  .feature-icon:not(.feature-icon i) {
    font-size: 1.8rem;
  }

  .feature-text h4 {
    font-size: 1.1rem;
  }

  .feature-text p {
    font-size: 0.9rem;
  }

  .heart-badge {
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .heart-badge i {
    font-size: 1.1rem;
  }
}

/* Dive Gallery Section */
.galle-section {
  width: 100%;
  padding: 80px 0;
  background: #1b4965;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

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

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

.galle-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #bee9e8;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-family: "Alan Sans", sans-serif;
}

.galle-subtitle {
  font-size: 1.1rem;
  color: #bababa;
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.5;
}

.galle-grid {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  justify-content: center;
  flex-wrap: nowrap;
}

.galle-item {
  flex: 1;
  max-width: calc(16.666% - 17px);
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.galle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.galle-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

/* Responsive Design */
@media (max-width: 1200px) {
  .galle-item {
    height: 450px;
  }

  .galle-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .galle-section {
    padding: 60px 0;
  }

  .galle-item {
    height: 400px;
  }

  .galle-title {
    font-size: 2rem;
  }

  .galle-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .galle-section {
    padding: 50px 0;
  }

  .galle-container {
    padding: 0 15px;
  }

  .galle-grid {
    gap: 12px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }

  .galle-grid::-webkit-scrollbar {
    height: 6px;
  }

  .galle-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
  }

  .galle-grid::-webkit-scrollbar-thumb {
    background: #1b4965;
    border-radius: 3px;
  }

  .galle-item {
    flex: 0 0 200px;
    height: 280px;
    max-width: none;
  }

  .galle-title {
    font-size: 1.8rem;
  }

  .galle-subtitle {
    font-size: 0.95rem;
  }

  .galle-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .galle-section {
    padding: 40px 0;
  }

  .galle-container {
    padding: 0 10px;
  }

  .galle-grid {
    gap: 10px;
    padding: 15px 0;
  }

  .galle-item {
    flex: 0 0 180px;
    height: 300px;
  }

  .galle-title {
    font-size: 1.5rem;
  }

  .galle-subtitle {
    font-size: 0.9rem;
  }

  .galle-header {
    margin-bottom: 30px;
  }
}

/* Animation for scroll reveal */
.galle-item {
  opacity: 0;
  transform: translateY(30px);
  animation: galleReveal 0.6s ease forwards;
}

.galle-item:nth-child(1) {
  animation-delay: 0.1s;
}
.galle-item:nth-child(2) {
  animation-delay: 0.2s;
}
.galle-item:nth-child(3) {
  animation-delay: 0.3s;
}
.galle-item:nth-child(4) {
  animation-delay: 0.4s;
}
.galle-item:nth-child(5) {
  animation-delay: 0.5s;
}
.galle-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes galleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Contact Page ===== */
.contact-page {
  background: radial-gradient(
    circle at top left,
    #12344a 0%,
    #071822 55%,
    #020b12 100%
  );
}

.contact-main {
  color: #e8f4f6;
  padding: 140px 0 100px;
}

.contact-top-strip {
  margin-bottom: 30px;
}

.contact-top-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px 20px;
  border-radius: 26px;
  background: linear-gradient(
    120deg,
    rgba(11, 50, 78, 0.98),
    rgba(19, 90, 129, 0.95)
  );
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(188, 232, 248, 0.4);
}

.contact-top-intro h1 {
  font-family: "Alan Sans", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
}

.contact-top-intro p {
  font-family: "Quicksand", sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(234, 247, 251, 0.9);
  margin: 0 0 14px;
}

.contact-top-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-top-card {
  padding: 10px 12px 11px;
  border-radius: 16px;
  background: rgba(4, 28, 44, 0.92);
  border: 1px solid rgba(188, 232, 248, 0.45);
}

.contact-top-card h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Alan Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin: 0 0 6px;
}

.contact-top-card h2 i {
  color: var(--secondary-color);
}

.contact-top-main {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  margin: 0 0 2px;
}

.contact-top-note {
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  color: rgba(200, 229, 239, 0.87);
  margin: 0;
}

.contact-hero {
  margin-bottom: 30px;
}

.contact-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-hero-text {
  max-width: 720px;
}

.contact-kicker {
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: rgba(232, 244, 246, 0.7);
  margin-bottom: 8px;
}

.contact-title {
  font-family: "Alan Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #ffffff;
}

.contact-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(232, 244, 246, 0.85);
  margin: 0 0 18px;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  color: rgba(232, 244, 246, 0.8);
}

.contact-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(4, 28, 44, 0.7);
  border: 1px solid rgba(143, 196, 214, 0.25);
}

.contact-meta i {
  color: var(--secondary-color);
}

.contact-shell {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 40px;
  padding: 32px 36px;
  background: radial-gradient(circle at top, rgba(13, 52, 80, 0.95), rgba(3, 18, 31, 0.98));
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(164, 214, 232, 0.16);
}

.contact-panel h2 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.contact-panel p {
  font-family: "Quicksand", sans-serif;
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(232, 244, 246, 0.86);
}

.contact-essentials {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 18px 22px;
}

.contact-essential {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-essential h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1rem;
  margin: 0 0 2px;
  color: #ffffff;
}

.contact-essential p {
  font-size: 0.9rem;
  margin: 0;
}

.icon-pill {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 42, 63, 0.95);
  border: 1px solid rgba(143, 196, 214, 0.5);
  color: var(--secondary-color);
  flex-shrink: 0;
}

.contact-hint {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(2, 20, 32, 0.9);
  border: 1px dashed rgba(143, 196, 214, 0.4);
}

.contact-hint i {
  margin-top: 2px;
  color: var(--secondary-color);
}

.contact-photo {
  margin-top: 24px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(143, 196, 214, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  background: rgba(1, 10, 18, 0.9);
}

.contact-photo img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.contact-photo-caption {
  padding: 10px 14px 12px;
  font-family: "Quicksand", sans-serif;
  font-size: 0.85rem;
  color: rgba(232, 244, 246, 0.9);
}

.contact-panel--right {
  background: radial-gradient(circle at top left, rgba(10, 51, 78, 0.95), rgba(2, 15, 25, 0.98));
  border-radius: 22px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(164, 214, 232, 0.25);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: "Quicksand", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 244, 246, 0.8);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  padding: 9px 10px;
  border-radius: 9px;
  border: 1px solid rgba(164, 214, 232, 0.4);
  background: rgba(4, 28, 44, 0.9);
  color: #e8f4f6;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(232, 244, 246, 0.55);
}

.form-field select {
  cursor: pointer;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 1px rgba(188, 232, 248, 0.5);
  background: rgba(5, 32, 51, 0.98);
}

.contact-submit {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  background: #f7fafc;
}

.contact-submit i {
  font-size: 0.9rem;
}

.contact-small-print {
  margin: 6px 0 0;
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  color: rgba(232, 244, 246, 0.7);
}

.contact-location {
  margin-top: 40px;
}

.contact-location-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 22px 26px;
  background: rgba(3, 19, 31, 0.95);
  border: 1px solid rgba(143, 196, 214, 0.4);
}

.contact-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: 20px;
  align-items: stretch;
}

.contact-location-text h2 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: #ffffff;
}

.contact-location-text p {
  font-family: "Quicksand", sans-serif;
  font-size: 0.95rem;
  margin: 0 0 12px;
  color: rgba(232, 244, 246, 0.85);
}

.contact-directions {
  margin-top: 16px;
}

.contact-directions h3 {
  font-family: "Alan Sans", sans-serif;
  font-size: 1rem;
  margin: 0 0 6px;
  color: #ffffff;
}

.contact-directions ul {
  padding-left: 18px;
  margin: 0;
}

.contact-directions li {
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(232, 244, 246, 0.85);
}

.contact-map iframe {
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

@media (max-width: 960px) {
  .contact-top-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-shell {
    grid-template-columns: minmax(0, 1fr);
    padding: 26px 22px;
  }

  .contact-panel--right {
    padding: 20px 18px 20px;
  }

  .contact-essentials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-main {
    padding: 70px 0 80px;
  }

  .contact-title {
    font-size: 2.1rem;
  }

  .contact-top-inner {
    padding: 16px 16px 18px;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-location-inner {
    padding: 18px 18px 20px;
  }

  .contact-location-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.8rem;
  }

  .contact-top-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-shell {
    padding: 22px 16px;
  }

  .contact-meta span {
    width: 100%;
  }
}

/* ========================================
   CRITICAL FOOTER FIX - MAXIMUM SPECIFICITY
   ======================================== */

/* Force footer background color with highest specificity */
html body footer,
html body footer.footer,
html body .footer,
body footer,
body footer.footer,
body .footer {
  background: #1b4965 !important;
  background-color: #1b4965 !important;
  color: #ffffff !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Force all text in footer to be white except social icons */
html body footer *:not(.social-icon):not(.social-icon i),
html body footer.footer *:not(.social-icon):not(.social-icon i),
html body .footer *:not(.social-icon):not(.social-icon i),
body footer *:not(.social-icon):not(.social-icon i),
body footer.footer *:not(.social-icon):not(.social-icon i),
body .footer *:not(.social-icon):not(.social-icon i) {
  color: #ffffff !important;
}

/* Force transparent backgrounds for inner containers */
html body footer .footer-container,
html body footer .footer-content,
html body footer .footer-column,
html body footer .footer-bottom,
body footer .footer-container,
body footer .footer-content,
body footer .footer-column,
body footer .footer-bottom {
  background: none !important;
  background-color: transparent !important;
}

/* Force white background for social icons with dark icons */
html body footer .social-icon,
html body footer.footer .social-icon,
body footer .social-icon,
body footer.footer .social-icon {
  background: #ffffff !important;
  color: #1b4965 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

html body footer .social-icon i,
html body footer.footer .social-icon i,
body footer .social-icon i,
body footer.footer .social-icon i,
.footer .social-icon i {
  color: #1b4965 !important;
  display: block !important;
}

/* DESKTOP FOOTER - Maintain proper layout */
@media (min-width: 769px) {
  html body footer .footer-content,
  body footer .footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr !important;
    width: 100% !important;
    overflow: visible !important;
  }

  html body footer .footer-column,
  body footer .footer-column {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
  }

  html body footer .footer-links,
  html body footer .footer-links li,
  html body footer .footer-links a,
  body footer .footer-links,
  body footer .footer-links li,
  body footer .footer-links a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/* MOBILE FOOTER FIX - Force flexbox vertical stacking */
@media (max-width: 768px) {
  /* Force all footer columns to be visible and stacked using FLEXBOX */
  html body footer .footer-content,
  body footer .footer-content {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 25px !important;
    width: 100% !important;
  }

  html body footer .footer-column,
  body footer .footer-column {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
    align-items: center !important;
    text-align: center !important;
    grid-column: auto !important;
  }

  html body footer .footer-title,
  body footer .footer-title {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    width: 100% !important;
  }

  html body footer .footer-links,
  body footer .footer-links {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  html body footer .footer-links li,
  body footer .footer-links li {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    list-style: none !important;
  }

  html body footer .footer-links a,
  body footer .footer-links a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    text-align: center !important;
    width: 100% !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 480px) {
  /* Additional specificity for smaller screens */
  html body footer .footer-content,
  body footer .footer-content {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    gap: 20px !important;
  }

  html body footer .footer-column,
  body footer .footer-column {
    margin: 0 0 12px 0 !important;
  }
}

/* End of critical footer fix */
