/* ==========================================
   TAPPLAYATELIR.COM — OCEAN LUXE ESCAPE
   Design System & Complete Stylesheet
   ========================================== */

/* --- CSS Variables --- */
:root {
  /* Base Colors */
  --bg-primary: #f0f9ff;
  --bg-secondary: #e0f2fe;
  --bg-white: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.8);

  /* Primary — Ocean Blue */
  --primary: #0ea5e9;
  --primary-light: #38bdf8;
  --primary-dark: #0284c7;
  --primary-gradient: linear-gradient(135deg, #0ea5e9, #38bdf8);

  /* Secondary — Sand Gold */
  --gold: #facc15;
  --gold-light: #fde68a;
  --gold-gradient: linear-gradient(135deg, #facc15, #fde68a);

  /* Highlight — Sunset Coral */
  --coral: #fb7185;
  --coral-light: #f97316;
  --coral-gradient: linear-gradient(135deg, #fb7185, #f97316);

  /* Text */
  --text-dark: #0c4a6e;
  --text-body: #334155;
  --text-light: #64748b;
  --text-white: #ffffff;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 4px 30px rgba(14, 165, 233, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1240px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 100px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- CSS Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

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

em {
  font-style: italic;
  color: var(--primary);
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 800px;
}

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

/* ==========================================
   HEADER — Glass Navigation Bar
   ========================================== */

.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.glass-nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 10px 0;
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
}

.logo-icon {
  font-size: 28px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.glass-nav:not(.scrolled) .logo-text {
  color: var(--text-white);
}

.logo-dot {
  color: var(--primary);
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}

.glass-nav:not(.scrolled) .nav-link {
  color: var(--text-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

.glass-nav:not(.scrolled) .nav-link:hover {
  color: var(--gold-light);
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--primary-gradient);
  color: var(--text-white) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(14, 165, 233, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.glass-nav:not(.scrolled) .hamburger span {
  background: var(--text-white);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--primary-gradient);
  color: var(--text-white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(14, 165, 233, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary-light);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary-gradient);
  color: var(--text-white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-full {
  width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 30, 60, 0.5) 0%,
    rgba(0, 30, 60, 0.3) 50%,
    rgba(0, 30, 60, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  padding-top: 80px;
}

.hero-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  color: var(--text-white);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-title em {
  color: var(--gold-light);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-white);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Wave Animation */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.wave {
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
}

.wave-1 {
  animation: waveMove 8s ease-in-out infinite;
  bottom: 40px;
}

.wave-2 {
  animation: waveMove 6s ease-in-out infinite reverse;
  bottom: 20px;
}

.wave-3 {
  bottom: 0;
}

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

.wave-container-sm .wave {
  height: 60px;
}

/* Shimmer Effect */
.shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  z-index: 1;
  animation: shimmerMove 6s ease-in-out infinite;
}

@keyframes shimmerMove {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ==========================================
   PAGE HERO (Subpages)
   ========================================== */

.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-tall {
  min-height: 65vh;
}

.page-hero-short {
  min-height: 45vh;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

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

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 30, 60, 0.55) 0%,
    rgba(0, 30, 60, 0.4) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 100px 24px 80px;
}

.page-hero-title {
  font-size: clamp(36px, 6vw, 60px);
  color: var(--text-white);
  margin-bottom: 12px;
}

.page-hero-title em {
  color: var(--gold-light);
}

.page-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.breadcrumb-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 12px;
}

.breadcrumb-link:hover {
  color: var(--text-white);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  background: var(--bg-secondary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ==========================================
   INTRO / FEATURES SECTION
   ========================================== */

.intro-section {
  padding: var(--section-padding);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 165, 233, 0.2);
}

.feature-icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================
   BEACH CARDS
   ========================================== */

.top-beaches {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

.beaches-listing {
  padding: 40px 0 100px;
}

.beach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.beach-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.beach-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.beach-card-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.beach-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.beach-card:hover .beach-card-img img {
  transform: scale(1.08);
}

.beach-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.beach-card-body {
  padding: 28px;
}

.beach-location {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 8px;
}

.beach-card-body h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.beach-card-body p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ==========================================
   COUNTRIES SECTION
   ========================================== */

.countries-preview {
  padding: var(--section-padding);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.country-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  display: block;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.country-card:hover img {
  transform: scale(1.08);
}

.country-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 20, 40, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--text-white);
}

.country-flag {
  font-size: 32px;
  margin-bottom: 8px;
}

.country-card-overlay h3 {
  font-size: 24px;
  color: var(--text-white);
  margin-bottom: 4px;
}

.country-card-overlay p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   EDITORIAL SECTION
   ========================================== */

.editorial-section {
  padding: var(--section-padding);
  background: var(--bg-secondary);
}

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

.editorial-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.editorial-content h2 {
  margin-bottom: 20px;
}

.editorial-content > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.editorial-list {
  margin-bottom: 32px;
}

.editorial-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-body);
}

/* ==========================================
   BLOG CARDS
   ========================================== */

.blog-preview {
  padding: var(--section-padding);
}

.blog-listing {
  padding: 40px 0 100px;
}

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

.blog-grid-full {
  margin-top: 48px;
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 24px;
}

.blog-cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.blog-card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: var(--font-heading);
}

.blog-meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.blog-card-body > p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

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

/* Blog Feature */
.blog-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  align-items: center;
}

.blog-feature-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.blog-feature-content {
  padding: 40px 40px 40px 0;
}

.blog-feature-content h2 {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.blog-feature-content > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ==========================================
   NEWSLETTER
   ========================================== */

.newsletter-section {
  padding: 80px 0;
}

.newsletter-box {
  background: var(--primary-gradient);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 48px;
  box-shadow: var(--shadow-glow);
}

.newsletter-content {
  flex: 1;
}

.newsletter-content h2 {
  font-size: 32px;
  color: var(--text-white);
  margin-bottom: 8px;
}

.newsletter-content h2 em {
  color: var(--gold-light);
}

.newsletter-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.newsletter-form {
  flex: 1;
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  font-size: 15px;
  font-family: var(--font-body);
  backdrop-filter: blur(10px);
  outline: none;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.25);
}

.newsletter-form .btn-primary {
  background: var(--bg-white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
  box-shadow: var(--shadow-lg);
}

/* ==========================================
   FILTER BAR
   ========================================== */

.beaches-filter {
  padding: 40px 0 0;
}

.filter-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius-full);
  background: var(--bg-white);
  color: var(--text-body);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-gradient);
  color: var(--text-white);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* ==========================================
   BEACH DETAIL PAGE
   ========================================== */

.beach-detail-content {
  padding: 60px 0 100px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.detail-section {
  margin-bottom: 48px;
}

.detail-section h2 {
  font-size: 28px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-secondary);
}

.detail-section p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.detail-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.detail-gallery img:hover {
  transform: scale(1.03);
}

/* Activities */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.activity-item {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius-md);
}

.activity-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}

.activity-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.activity-item p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Tips List */
.tips-list {
  margin-top: 16px;
}

.tips-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-secondary);
  line-height: 1.7;
  font-size: 15px;
}

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

/* Sidebar */
.sidebar-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  border: 1px solid rgba(14, 165, 233, 0.08);
}

.sidebar-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-secondary);
  font-size: 14px;
}

.info-row:last-of-type {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: var(--text-dark);
}

.map-placeholder {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 180px;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7);
}

.map-overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 30, 60, 0.5);
  color: var(--text-white);
  font-weight: 600;
  text-align: center;
  font-size: 16px;
}

.nearby-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-secondary);
  font-weight: 500;
  color: var(--primary);
  font-size: 14px;
}

.nearby-link:last-child {
  border-bottom: none;
}

.nearby-link:hover {
  color: var(--primary-dark);
  padding-left: 8px;
}

/* Related Beaches */
.related-beaches {
  padding: 60px 0 100px;
  background: var(--bg-secondary);
}

.related-beaches .beach-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* ==========================================
   COUNTRY DETAIL PAGE
   ========================================== */

.country-detail-section {
  padding: 60px 0 100px;
}

.country-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.country-feature:last-child {
  margin-bottom: 0;
}

.country-feature-reverse {
  direction: rtl;
}

.country-feature-reverse > * {
  direction: ltr;
}

.country-feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.country-feature-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.country-flag-lg {
  font-size: 48px;
  display: block;
  margin-bottom: 8px;
}

.country-feature-content h2 {
  font-size: 40px;
  margin-bottom: 4px;
}

.country-tagline {
  font-size: 18px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 20px;
}

.country-feature-content > p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--text-body);
}

.country-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.highlight {
  background: var(--bg-secondary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.highlight strong {
  display: block;
  color: var(--text-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

/* ==========================================
   TRAVEL GUIDE PAGE
   ========================================== */

.guide-content {
  padding: 60px 0 100px;
}

.guide-toc {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}

.guide-toc h3 {
  font-size: 18px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.toc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.toc-links a {
  padding: 8px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

.toc-links a:hover {
  background: var(--primary-gradient);
  color: var(--text-white);
}

.guide-section {
  margin-bottom: 60px;
}

.guide-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.guide-icon {
  font-size: 36px;
}

.guide-section h2 {
  font-size: 30px;
}

.guide-section > p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Season Grid */
.season-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.season-card {
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14, 165, 233, 0.08);
}

.season-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.season-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Tip Cards */
.tip-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tip-card {
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.tip-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.tip-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Budget Table */
.budget-table {
  margin-top: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.budget-table h3 {
  padding: 20px 24px;
  font-size: 18px;
  font-family: var(--font-heading);
  border-bottom: 1px solid var(--bg-secondary);
}

.budget-table table {
  width: 100%;
  border-collapse: collapse;
}

.budget-table th,
.budget-table td {
  padding: 14px 24px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--bg-secondary);
}

.budget-table th {
  background: var(--bg-secondary);
  font-weight: 600;
  color: var(--text-dark);
}

.budget-table .total-row td {
  background: var(--bg-secondary);
  font-weight: 600;
}

/* Packing Grid */
.packing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.packing-category {
  background: var(--bg-white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.packing-category h4 {
  font-size: 18px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.packing-category ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-body);
  position: relative;
  padding-left: 20px;
}

.packing-category ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-section {
  padding: 60px 0 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 16px;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.contact-method p,
.contact-method a {
  font-size: 14px;
  color: var(--text-light);
}

.contact-method a:hover {
  color: var(--primary);
}

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

.social-links-lg a {
  font-size: 28px;
  transition: var(--transition);
}

.social-links-lg a:hover {
  transform: scale(1.2);
}

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 28px;
  font-family: var(--font-heading);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-primary);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-content {
  padding: 60px 0 100px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-body);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-values {
  margin-bottom: 80px;
}

.about-values h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  font-size: 42px;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.about-team h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-white);
}

.team-member h4 {
  font-size: 18px;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.team-member p {
  font-size: 14px;
  color: var(--text-light);
}

/* ==========================================
   LEGAL PAGES
   ========================================== */

.legal-content {
  padding: 60px 0 100px;
}

.legal-article h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.legal-article h2:first-child {
  margin-top: 0;
}

.legal-article p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-article ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-article ul li {
  list-style: disc;
  padding: 4px 0;
  font-size: 15px;
  line-height: 1.7;
}

.legal-article a {
  color: var(--primary);
  font-weight: 500;
}

.legal-article a:hover {
  text-decoration: underline;
}

/* ==========================================
   FOOTER
   ========================================== */

.site-footer {
  background: #0c2d48;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo-text {
  color: var(--text-white);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  font-size: 22px;
  transition: var(--transition);
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer-links h4 {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.footer-links a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE — TABLET
   ========================================== */

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

  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-card {
    height: 320px;
  }

  .editorial-layout {
    gap: 40px;
  }

  .country-feature {
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-box {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE
   ========================================== */

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

  /* Nav */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 20px;
    color: var(--text-dark) !important;
  }

  .nav-cta {
    margin-top: 12px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-stats {
    gap: 28px;
  }

  .stat-num {
    font-size: 24px;
  }

  /* Grids */
  .beach-grid {
    grid-template-columns: 1fr;
  }

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

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

  .country-card {
    height: 280px;
  }

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

  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .editorial-image img {
    height: 300px;
  }

  /* Country Feature */
  .country-feature {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .country-feature-reverse {
    direction: ltr;
  }

  .country-feature-img img {
    height: 300px;
  }

  .country-highlights {
    grid-template-columns: 1fr;
  }

  /* Blog Feature */
  .blog-feature {
    grid-template-columns: 1fr;
  }

  .blog-feature-img img {
    min-height: 250px;
  }

  .blog-feature-content {
    padding: 28px;
  }

  /* Detail Page */
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

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

  .related-beaches .beach-grid {
    grid-template-columns: 1fr;
  }

  /* Guide Page */
  .season-grid {
    grid-template-columns: 1fr;
  }

  .tip-cards {
    grid-template-columns: 1fr;
  }

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

  .budget-table {
    overflow-x: auto;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image img {
    height: 300px;
  }

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

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

  .team-member img {
    width: 120px;
    height: 120px;
  }

  /* Newsletter */
  .newsletter-box {
    padding: 32px 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  /* Page Hero */
  .page-hero {
    min-height: 45vh;
  }

  .page-hero-tall {
    min-height: 50vh;
  }

  .page-hero-short {
    min-height: 38vh;
  }

  .page-hero-content {
    padding: 90px 24px 60px;
  }

  .page-hero-title {
    font-size: clamp(30px, 8vw, 44px);
  }

  .section-title {
    font-size: clamp(28px, 6vw, 40px);
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btns a {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .filter-bar {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 100%;
    text-align: center;
  }

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

  .toc-links {
    flex-direction: column;
  }

  .toc-links a {
    text-align: center;
  }
}