/* PREMIUM DESTIN WATERSPORTS GUIDE — SHARED CSS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-teal: #00C2CB;
  --dark-navy: #0A2540;
  --accent-gold: #FFB700;
  --text-dark: #1a1a2e;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #1a1a2e;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

/* STICKY NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-navy);
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
  font-family: 'Playfair Display', Georgia, serif;
}

.nav-logo span {
  color: var(--primary-teal);
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  background: #e0f9ff;
  color: var(--primary-teal);
}

.nav-cta {
  background: var(--primary-teal) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
}

.nav-cta:hover {
  background: #00a8b2 !important;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a4d6d 50%, #0d3a57 100%);
  background-attachment: fixed;
  color: white;
  padding: 120px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 360"><path fill="rgba(255,255,255,0.02)" d="M0,200L60,210C120,220,240,240,360,245C480,250,600,240,720,235C840,230,960,230,1080,232C1200,235,1320,240,1380,242L1440,244L1440,360L1380,360C1320,360,1200,360,1080,360C960,360,840,360,720,360C600,360,480,360,360,360C240,360,120,360,60,360L0,360Z"></path></svg>') bottom/cover no-repeat;
  opacity: 0.5;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 194, 203, 0.15);
  border: 1px solid rgba(0, 194, 203, 0.4);
  color: #7dd3fc;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero h1 span {
  color: #06d6db;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #bae6fd;
  max-width: 650px;
  margin: 0 auto 48px;
  font-weight: 500;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary-teal);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 194, 203, 0.3);
}

.btn-primary:hover {
  background: #00a8b2;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 194, 203, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--dark-navy);
}

.btn-gold:hover {
  background: #e5a000;
  transform: translateY(-3px);
}

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

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

.hero-stat .num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  font-family: 'Playfair Display', Georgia, serif;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: #bae6fd;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* SECTIONS */
section {
  padding: 100px 24px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 700px;
  line-height: 1.7;
}

/* TRUST BAR */
.trust-bar {
  background: var(--dark-navy);
  color: white;
  text-align: center;
  padding: 14px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.trust-bar span {
  margin: 0 20px;
}

/* ACTIVITY CARDS GRID */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  display: block;
}

.activity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-teal);
}

.activity-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.activity-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.activity-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.activity-card .price-from {
  margin-top: 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-teal);
}

/* PRICE TABLE */
.price-table-section {
  background: var(--bg-light);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.price-table thead {
  background: var(--dark-navy);
}

.price-table th {
  color: white;
  padding: 18px 24px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.price-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover td {
  background: rgba(0, 194, 203, 0.05);
}

.price-table .highlight-row {
  background: linear-gradient(90deg, rgba(0, 194, 203, 0.08), rgba(255, 183, 0, 0.08));
}

.price-table .highlight-row td {
  font-weight: 700;
  color: var(--dark-navy);
}

/* OPERATOR CARDS */
.operators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.operator-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

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

.operator-header {
  padding: 28px;
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1a4d6d 100%);
  color: white;
}

.operator-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.operator-header .location {
  font-size: 0.85rem;
  color: #a5d8ff;
  font-weight: 500;
}

.operator-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.operator-body {
  padding: 28px;
}

.operator-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.95rem;
}

.operator-detail:last-of-type {
  border-bottom: none;
}

.operator-detail .label {
  color: var(--gray-600);
}

.operator-detail .value {
  font-weight: 700;
  color: var(--text-dark);
}

.book-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--primary-teal);
  color: white;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.book-btn:hover {
  background: #00a8b2;
  transform: translateY(-2px);
}

/* CONTENT SECTIONS */
.content-section {
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

@media (max-width: 968px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

.content-text p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* COMPARISON TABLE */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th {
  background: var(--dark-navy);
  color: white;
  padding: 18px;
  text-align: left;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.comparison-table th:last-child {
  border-right: none;
}

.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: rgba(0, 194, 203, 0.04);
}

.comparison-table .feature-name {
  font-weight: 600;
  color: var(--text-dark);
}

/* FAQ */
.faq-section {
  background: var(--bg-light);
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.2s ease;
  background: var(--white);
}

.faq-q:hover {
  background: rgba(0, 194, 203, 0.05);
  color: var(--primary-teal);
}

.faq-q .arrow {
  color: var(--primary-teal);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  font-weight: 900;
}

.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  color: var(--gray-600);
  background: rgba(0, 194, 203, 0.02);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  padding: 0 24px 24px;
  max-height: 500px;
}

.faq-item.open .faq-q {
  background: rgba(0, 194, 203, 0.05);
}

.faq-item.open .arrow {
  transform: rotate(45deg);
}

/* FEATURED BOX */
.featured-box {
  background: linear-gradient(135deg, rgba(0, 194, 203, 0.08) 0%, rgba(255, 183, 0, 0.08) 100%);
  border: 2px solid var(--primary-teal);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin: 48px 0;
  text-align: center;
}

.featured-box h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.featured-box p {
  color: var(--gray-600);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #0097a7 100%);
  color: white;
  text-align: center;
  padding: 100px 24px;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  color: white;
}

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

.cta-section .btn-white {
  background: white;
  color: var(--primary-teal);
  font-weight: 800;
}

.cta-section .btn-white:hover {
  background: #f3f4f6;
  transform: translateY(-3px);
}

/* FOOTER */
footer {
  background: var(--dark-navy);
  color: #cbd5e1;
  padding: 80px 24px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  font-family: 'Playfair Display', Georgia, serif;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #94a3b8;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--accent-gold);
}

/* AFFILIATE NOTICE */
.affiliate-notice {
  background: rgba(255, 183, 0, 0.08);
  border-left: 4px solid var(--accent-gold);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-top: 32px;
}

/* UTILITIES */
.text-center {
  text-align: center;
}

.text-teal {
  color: var(--primary-teal);
}

.text-gold {
  color: var(--accent-gold);
}

.highlight {
  color: var(--primary-teal);
  font-weight: 700;
}

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }

.badge {
  display: inline-block;
  background: rgba(0, 194, 203, 0.15);
  color: var(--primary-teal);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(255, 183, 0, 0.15);
  color: var(--accent-gold);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  section {
    padding: 80px 24px;
  }

  .hero {
    padding: 100px 24px 80px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 20px;
  }

  .hero {
    padding: 80px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

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

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

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

  .hero-stats {
    gap: 24px;
  }

  .trust-bar span {
    margin: 0 8px;
    display: block;
  }
}
