:root {
  --pri: #F5FBFF;
  --sec: #64B5D9;
  --acc: #1E90C0;
  --dark: #0D4F6E;
  --textDark: #062030;
  --textMid: #0D4F6E;
  --textLight: #2A7A9E;
  --white: #ffffff;
  --font-head: 'Work Sans', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-hover: 0 12px 24px rgba(0,0,0,0.1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--pri);
  color: var(--textDark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
ul { list-style: none; }

/* Utilities */
.eas-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.eas-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.eas-btn {
  display: inline-block;
  background: var(--acc);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.eas-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30,144,192,0.3);
}

.eas-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
}

.eas-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--textMid);
  font-size: 1.1rem;
}

/* Header */
.eas-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}
.eas-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 15px 0;
}

.eas-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eas-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.eas-nav-link {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
}
.eas-nav-link:hover { color: var(--acc); }

.eas-dropdown {
  position: relative;
}
.eas-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  padding: 10px 0;
}
.eas-dropdown:hover .eas-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.eas-dropdown-item {
  display: block;
  padding: 10px 20px;
  color: var(--textMid);
}
.eas-dropdown-item:hover {
  background: var(--pri);
  color: var(--acc);
}

.eas-mobile-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
}

/* Hero */
.eas-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.eas-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.eas-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13,79,110,0.3), rgba(13,79,110,0.5));
  z-index: 0;
}
.eas-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}
.eas-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}
.eas-hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Grids */
.eas-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.eas-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.eas-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Cards */
.eas-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.eas-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.eas-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.eas-card-body {
  padding: 24px;
}
.eas-card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.eas-card-text {
  color: var(--textMid);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Destination Card Specifics */
.eas-dest-card {
  position: relative;
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.eas-dest-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.eas-dest-card:hover .eas-dest-bg { transform: scale(1.05); }
.eas-dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.eas-dest-title {
  color: var(--white);
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Features */
.eas-feature {
  text-align: center;
  padding: 30px;
}
.eas-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

/* Forms */
.eas-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.eas-form-group {
  margin-bottom: 20px;
}
.eas-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}
.eas-input, .eas-select, .eas-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--textDark);
  background: #f9fbfd;
}
.eas-input:focus, .eas-select:focus, .eas-textarea:focus {
  outline: none;
  border-color: var(--acc);
  background: var(--white);
}
.eas-textarea { min-height: 120px; resize: vertical; }

/* Footer */
.eas-footer {
  background: var(--white);
  padding: 60px 0 20px;
  margin-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.eas-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.eas-footer h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.eas-footer-links li { margin-bottom: 12px; }
.eas-footer-links a { color: var(--textMid); font-size: 0.9rem; }
.eas-footer-links a:hover { color: var(--acc); }
.eas-footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: #999;
}

/* Popups */
.eas-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.eas-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.eas-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  animation: easFadeIn 0.3s ease;
}
.eas-popup__box {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  animation: easPopIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.eas-popup__icon {
  font-size: 56px;
  margin-bottom: 16px;
}
.eas-popup__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.eas-popup__msg {
  font-size: 1rem;
  color: var(--textMid);
  line-height: 1.6;
  margin-bottom: 24px;
}
@keyframes easPopIn { from{opacity:0;transform:scale(0.8) translateY(20px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes easFadeIn { from{opacity:0} to{opacity:1} }

/* Cookie Banner */
.eas-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.eas-cookie-banner.visible { transform: translateY(0); }

/* Animations */
.eas-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.eas-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .eas-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .eas-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .eas-mobile-toggle { display: block; z-index: 1002; }
  .eas-nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1001;
  }
  .eas-nav-menu.open { transform: translateX(0); }
  .eas-grid-4, .eas-grid-3, .eas-grid-2 { grid-template-columns: 1fr; }
  .eas-footer-grid { grid-template-columns: 1fr; text-align: center; }
  .eas-hero h1 { font-size: 2.5rem; }
  .eas-dest-card { height: 300px; }
}
