@import url('https://fonts.googleapis.com/css2?family=Waltograph+QL&family=Nunito:wght@400;600;700&display=swap');

:root {
  --primary-blue: #243E8A;
  --primary-yellow: #FFD700;
  --light-sky-blue: #ADD8E6;
  --alice-blue: #F0F8FF;
  --cadet-blue: #5F9EA0;
  --white: #ffffff;
  --dark-text: #1a1a2e;
  --light-text: #4a4a6a;
  --shadow-light: rgba(36, 62, 138, 0.1);
  --shadow-medium: rgba(36, 62, 138, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--dark-text);
  background-color: var(--alice-blue);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'WaltographQL', 'Waltograph', cursive;
  font-weight: 400;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

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

/* ==================== HEADER STYLES ==================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--alice-blue) 0%, var(--white) 100%);
  box-shadow: 0 2px 20px var(--shadow-light);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(240, 248, 255, 0.98);
  backdrop-filter: blur(10px);
}

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

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

.logo img {
  height: 60px;
  width: auto;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  text-shadow: 1px 1px 0 var(--primary-yellow), 2px 2px 0 var(--primary-blue);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-desktop a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-blue);
  position: relative;
  padding: 5px 0;
}

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

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.nav-desktop a:hover {
  color: var(--primary-blue);
}

.phone-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--cadet-blue);
  margin-right: 20px;
}

.phone-cta:hover {
  color: var(--primary-blue);
}

/* ==================== CTA BUTTONS ==================== */
.cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--primary-yellow) 0%, #FFC000 50%, var(--primary-yellow) 100%);
  background-size: 200% 100%;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.cta-button:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  color: var(--primary-blue);
}

.cta-button.small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.secondary-cta {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary-blue);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-cta:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cadet-blue) 100%);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 80px 30px 30px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-menu-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-menu-nav a:hover {
  color: var(--primary-yellow);
}

.mobile-menu-cta {
  margin-top: 30px;
  display: inline-block;
  padding: 16px 32px;
  background: var(--primary-yellow);
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  text-align: center;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(36, 62, 138, 0.3) 0%, rgba(36, 62, 138, 0.5) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  width: 90%;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta {
  animation: fadeInUp 0.8s ease 0.4s forwards, pulse 2s ease-in-out infinite;
  opacity: 0;
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ==================== SECTION STYLES ==================== */
.section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--light-text);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== WELCOME SECTION ==================== */
.welcome-section {
  background: var(--white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-content h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.welcome-content p {
  color: var(--light-text);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.welcome-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.welcome-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-blue);
}

.welcome-features li::before {
  content: '✦';
  color: var(--primary-yellow);
}

.welcome-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.welcome-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ==================== AMENITIES SECTION ==================== */
.amenities-section {
  background: var(--alice-blue);
}

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

.amenity-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.3s ease;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.amenity-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.amenity-card-content {
  padding: 25px;
}

.amenity-card-content h3 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.amenity-card-content p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* ==================== LOCATION SECTION ==================== */
.location-section {
  background: var(--white);
}

.location-intro {
  text-align: center;
  margin-bottom: 40px;
}

.location-intro h2 {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.location-intro p {
  color: var(--light-text);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.attraction-card {
  text-align: center;
  padding: 25px 15px;
  background: var(--alice-blue);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.attraction-card:hover {
  transform: scale(1.05);
  background: var(--light-sky-blue);
}

.attraction-card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.attraction-card h3 {
  font-size: 1rem;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.attraction-card p {
  font-size: 0.85rem;
  color: var(--light-text);
  font-weight: 600;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
  background: var(--light-sky-blue);
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-blue);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--primary-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-light);
}

.carousel-nav:hover {
  background: var(--primary-yellow);
  color: var(--primary-blue);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary-yellow);
  transform: scale(1.2);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cadet-blue) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  background: var(--primary-yellow);
  color: var(--primary-blue);
}

.cta-section .cta-button:hover {
  background: #FFC000;
  color: var(--primary-blue);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.7;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-yellow);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  opacity: 0.9;
  font-size: 0.95rem;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  opacity: 0.9;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--primary-yellow);
}

.footer-contact a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-yellow);
  transform: translateY(-3px);
}

.social-links a svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.social-links a:hover svg {
  fill: var(--primary-blue);
}

.trust-badge {
  display: inline-block;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-size: 0.85rem;
  margin-top: 15px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--cadet-blue) 100%);
  padding: 100px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== GALLERY PAGE ==================== */
.gallery-nav {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.gallery-nav-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  flex-wrap: wrap;
}

.gallery-nav-list a {
  font-weight: 600;
  color: var(--light-text);
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.gallery-nav-list a:hover,
.gallery-nav-list a.active {
  background: var(--primary-blue);
  color: var(--white);
}

.gallery-section {
  padding: 50px 0;
}

.gallery-section h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
  text-align: center;
}

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

.grid-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.grid-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.grid-item:hover img {
  transform: scale(1.1);
}

.grid-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 62, 138, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.grid-item:hover .grid-item-overlay {
  opacity: 1;
}

.grid-item-overlay span {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

.grid-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.grid-item:hover figcaption {
  transform: translateY(0);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--primary-yellow);
  color: var(--primary-blue);
}

.lightbox-nav.prev {
  left: 30px;
}

.lightbox-nav.next {
  right: 30px;
}

.lightbox-image {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 5px;
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.1rem;
  text-align: center;
}

/* ==================== ATTRACTIONS PAGE ==================== */
.attractions-hero {
  background: url('../images/florida-family-vacation.png') center/cover no-repeat;
  background-blend-mode: overlay;
}

.attraction-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.attraction-card-full {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.3s ease;
}

.attraction-card-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.attraction-card-full img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.attraction-card-full-content {
  padding: 25px;
}

.attraction-card-full h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.attraction-card-full p {
  color: var(--light-text);
  margin-bottom: 15px;
}

.attraction-card-full .distance {
  display: inline-block;
  padding: 5px 12px;
  background: var(--light-sky-blue);
  color: var(--primary-blue);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.attraction-card-full .visit-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-blue);
  font-weight: 600;
}

.attraction-card-full .visit-link:hover {
  color: var(--primary-yellow);
}

/* ==================== GUEST COMMENTS PAGE ==================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-light);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-medium);
}

.testimonial-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--light-text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary-blue);
}

.testimonial-card .date {
  font-size: 0.85rem;
  color: var(--cadet-blue);
  margin-top: 5px;
}

.submit-review {
  background: var(--alice-blue);
  padding: 50px;
  border-radius: 15px;
  margin-top: 50px;
}

.submit-review h2 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  text-align: center;
}

/* ==================== CONTACT PAGE ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.contact-info h2 {
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary-blue);
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.contact-info-item p {
  color: var(--light-text);
}

.contact-info-item a {
  color: var(--primary-blue);
}

.contact-info-item a:hover {
  color: var(--primary-yellow);
}

.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  background: var(--alice-blue);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-container {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.contact-form-container h2 {
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(36, 62, 138, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .cta-button {
  width: 100%;
  text-align: center;
}

/* ==================== AVAILABILITY PAGE ==================== */
.availability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.calendar-section {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h3 {
  color: var(--primary-blue);
  font-size: 1.3rem;
}

.calendar-nav-btn {
  background: var(--alice-blue);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary-blue);
  transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
  background: var(--primary-yellow);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}

.calendar-day-header {
  font-weight: 700;
  color: var(--primary-blue);
  padding: 10px 5px;
  font-size: 0.85rem;
}

.calendar-day {
  padding: 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-day:hover:not(.disabled) {
  background: var(--light-sky-blue);
}

.calendar-day.selected {
  background: var(--primary-blue);
  color: var(--white);
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.calendar-legend {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.calendar-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.calendar-legend-item .legend-dot {
  width: 15px;
  height: 15px;
  border-radius: 3px;
}

.calendar-legend-item .legend-dot.available {
  background: #90EE90;
}

.calendar-legend-item .legend-dot.unavailable {
  background: #FFB6C1;
}

.booking-form-section {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-light);
}

.booking-steps {
  margin-bottom: 30px;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.step-number {
  width: 35px;
  height: 35px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary-blue);
  margin-bottom: 3px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--light-text);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px 0;
}

.process-step {
  text-align: center;
  padding: 25px 15px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.process-step-icon {
  width: 60px;
  height: 60px;
  background: var(--light-sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
}

.process-step h3 {
  color: var(--primary-blue);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--light-text);
}

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .welcome-grid {
    grid-template-columns: 1fr;
  }
  
  .welcome-image {
    order: -1;
  }
  
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .attractions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .availability-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .attraction-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .welcome-features {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .page-hero {
    padding: 80px 0 40px;
  }
  
  .page-hero h1 {
    font-size: 2.2rem;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-nav-list {
    gap: 15px;
  }
  
  .gallery-nav-list a {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slide {
    padding: 20px;
  }
  
  .testimonial-quote {
    font-size: 1rem;
  }
  
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .attractions-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 25px;
  }
  
  .calendar-grid {
    font-size: 0.8rem;
  }
  
  .calendar-day {
    padding: 8px 4px;
  }
}

/* ==================== PREFER REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .hero-content {
    opacity: 1;
    transform: none;
  }
  
  .fade-in {
    opacity: 1;
    transform: none;
  }
}
