@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --ocean: #1B4965;
  --ocean-light: #5FA8D3;
  --ocean-pale: #CAE9FF;
  --sand: #F5F1EB;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --dark: #0B1D26;
  --white: #FFFFFF;
  --text: #2C3E50;
  --text-light: #6B7B8D;
  --border: #E2DDD5;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  font-weight: 300;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 29, 38, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(95, 168, 211, 0.2);
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 2px;
}

.nav-logo span {
  color: var(--ocean-light);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(95, 168, 211, 0.15);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ocean-light);
  font-size: 24px;
  cursor: pointer;
}

.hero {
  height: 90vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(11,29,38,0.7) 0%, rgba(27,73,101,0.6) 50%, rgba(11,29,38,0.8) 100%), url('https://images.unsplash.com/photo-1503614472-8c93d56e92ce?w=1600&q=80') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 0 30px;
}

.hero-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--ocean-pale);
  padding: 6px 24px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: 1px;
}

.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 35px;
  line-height: 1.9;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 14px 42px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: var(--white);
  color: var(--ocean);
}

.btn-primary:hover {
  background: var(--ocean-pale);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ocean);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ocean);
  border: 1px solid var(--ocean);
}

.btn-outline:hover {
  background: var(--ocean);
  color: var(--white);
}

.section {
  padding: 90px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: var(--sand);
}

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

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 600;
}

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

.section-header .line {
  width: 50px;
  height: 2px;
  background: var(--ocean-light);
  margin: 18px auto 0;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.card-img {
  height: 230px;
  background: var(--ocean);
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, rgba(11,29,38,0.4));
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

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

.card-link {
  color: var(--ocean);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.card-link:hover { color: var(--gold); }

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.feature-item { padding: 25px 15px; }

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--ocean-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ocean);
}

.feature-item h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-item p {
  font-size: 13px;
  color: var(--text-light);
}

.page-header {
  padding: 130px 30px 65px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(160deg, rgba(11,29,38,0.85), rgba(27,73,101,0.8));
  background-size: cover;
  background-position: center;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
  font-size: 15px;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  padding: 55px 0;
}

.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-img {
  height: 380px;
  background: var(--ocean);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

.content-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.content-text p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.content-text ul {
  list-style: none;
  padding: 0;
}

.content-text ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-light);
}

.content-text ul li::before {
  content: '—';
  color: var(--ocean-light);
  margin-right: 12px;
}

.itinerary { counter-reset: day; }

.itinerary-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.itinerary-item:last-child { border-bottom: none; }

.day-num {
  width: 60px;
  height: 60px;
  background: var(--ocean);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
}

.itinerary-item h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--dark);
}

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

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 35px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: var(--ocean-pale);
  position: absolute;
  top: 10px;
  left: 25px;
  line-height: 1;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-top: 25px;
  font-style: italic;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.testimonial-author span {
  color: var(--text-light);
  font-weight: 300;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}

.faq-item h4::before {
  content: 'Q.';
  color: var(--ocean-light);
  margin-right: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-light);
  padding-left: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}

.contact-info-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item h4 {
  font-size: 12px;
  color: var(--ocean);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-info-item p {
  font-size: 15px;
  color: var(--text);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--sand);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin-bottom: 14px;
  outline: none;
  transition: border 0.3s;
  font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ocean-light);
}

.contact-form textarea {
  height: 130px;
  resize: vertical;
}

.contact-form button {
  background: var(--ocean);
  color: var(--white);
  border: none;
  padding: 14px 42px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: var(--dark);
}

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 55px 30px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--ocean-light); }

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
}

.footer-col h4 {
  color: var(--ocean-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 13px;
  padding: 4px 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--ocean-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 35px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px;
  }
  .hero h1 { font-size: 36px; }
  .cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .content-block { grid-template-columns: 1fr; }
  .content-block.reverse { direction: ltr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
