@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F7F5F0;
  --primary: #0B1D31;
  --accent: #C5A059;
  --secondary: #1A4A5A;
  --text: #2C3E50;
  --light: #FFFFFF;
  --gray: #E5E7EB;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: clip;
}

main {
  flex: 1 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #D4AF37);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
}

.btn-full {
  width: 100%;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.fade-out {
  opacity: 0 !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 29, 49, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  overflow: visible;
}

.logo img {
  width: 40px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  flex-shrink: 0;
  object-fit: contain !important;
  border-radius: 0 !important;
  overflow: visible;
  display: block;
}

.logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 1px;
  white-space: nowrap;
}

.header-notice {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  display: none;
}

@media (min-width: 992px) {
  .header-notice {
    display: block;
  }
}

.nav {
  display: none;
}

.nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
}

.nav a:hover {
  color: var(--accent);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 29, 49, 0.7) 0%, rgba(11, 29, 49, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(197, 160, 89, 0.2);
  border: 1px solid var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero h1 {
  color: var(--light);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

.article-section {
  padding: 80px 0;
  background: var(--light);
}

.article-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.article-grid > *,
.tours-grid > *,
.gallery-wrapper > *,
.incl-grid > *,
.about-grid > *,
.reviews-grid > *,
.contact-grid > *,
.hero-stats > * {
  min-width: 0;
  max-width: 100%;
}

.article-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #4A5568;
}

.article-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visual-card {
  background: var(--bg);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  transition: transform 0.3s ease;
}

.visual-card:hover {
  transform: translateX(5px);
}

.visual-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.visual-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.visual-card p {
  font-size: 0.95rem;
  color: #4A5568;
  margin: 0;
}

@media (max-width: 768px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}

.tours-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #EAE5D9 100%);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card {
  background: var(--light);
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tour-card.featured {
  border: 2px solid var(--accent);
}

.tour-card.premium {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--light);
}

.tour-card.premium h3, .tour-card.premium .tour-price {
  color: var(--light);
}

.tour-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tour-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 15px 0;
}

.tour-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: #718096;
}

.tour-card.premium .tour-price small {
  color: rgba(255, 255, 255, 0.7);
}

.tour-features {
  list-style: none;
  margin-bottom: 25px;
  flex: 1;
}

.tour-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tour-card.premium .tour-features li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.tour-features i {
  color: var(--accent);
  font-size: 0.8rem;
}

@media (max-width: 992px) {
  .tours-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.gallery-section {
  padding: 80px 0;
  background: var(--light);
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  height: 500px;
}

.gallery-main {
  border-radius: 12px;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-thumbs img {
  width: 100%;
  height: calc(21.333% - 14px);
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-thumbs img:hover, .gallery-thumbs img.active {
  opacity: 1;
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .gallery-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }
  .gallery-main {
    height: 300px;
  }
  .gallery-thumbs {
    flex-direction: row;
    height: 100px;
  }
  .gallery-thumbs img {
    height: 100%;
    width: calc(33.333% - 14px);
  }
}

.inclusions-section {
  padding: 80px 0;
  background: var(--light);
}

.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.incl-list {
  list-style: none;
  margin-top: 2rem;
}

.incl-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.incl-list i {
  color: var(--accent);
  font-size: 1.2rem;
  width: 20px;
}

.incl-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .incl-grid {
    grid-template-columns: 1fr;
  }
}

.about-section {
  padding: 80px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: #4A5568;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #718096;
  margin: 0;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.reviews-section {
  padding: 80px 0;
  background: var(--light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--bg);
  padding: 30px;
  border-radius: 12px;
  border-top: 4px solid var(--accent);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: var(--accent);
  margin-bottom: 15px;
}

.review-text {
  font-size: 1rem;
  color: #4A5568;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

.faq-section {
  padding: 80px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(197, 160, 89, 0.05);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 20px;
}

.faq-answer p {
  color: #4A5568;
  line-height: 1.7;
}

.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0B1D31 0%, #1A4A5A 100%);
  color: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  color: var(--light);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.detail-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 5px;
}

.detail-item h4 {
  color: var(--light);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.detail-item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.95rem;
}

.contact-form-wrap {
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  color: var(--text);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #4A5568;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #F7FAFC;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--light);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: #718096;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: #061220;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
  margin-top: auto;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top .logo span {
  color: var(--light);
}

.footer-top .logo img {
  width: 50px !important;
  height: auto !important;
}

.footer-desc {
  max-width: 400px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--light);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.footer-col a, .footer-col p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.legal-link {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.legal-name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.update-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
}

.disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.thanks-page {
  background: linear-gradient(135deg, #0B1D31 0%, #1A4A5A 100%);
}

.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 20px;
}

.thanks-container {
  background: var(--light);
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thanks-logo {
  width: 60px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 0;
}

.thanks-container h1 {
  margin-bottom: 1.5rem;
}

.thanks-container p {
  font-size: 1.1rem;
  color: #4A5568;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.legal-content {
  max-width: 800px;
  margin: 120px auto 60px;
  padding: 40px 20px;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  word-break: break-word;
}

.legal-content h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: var(--primary);
  font-family: var(--font-heading);
}

.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #4A5568;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0 1rem 1.5rem;
}

.legal-content .last-updated {
  text-align: center;
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 2rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .legal-content {
    margin-top: 150px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo a {
    flex-direction: column;
  }

  .header-notice,
  .logo a span,
  .footer-col {
    word-break: break-all;
  }

  .logo a span {
    min-width: 0;
    flex: 1;
  }

  .legal-content {
    margin-top: 180px;
  }
}

@media (max-width: 480px) {
  .container,
  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-form-wrap {
    padding: 24px 16px;
  }

  .legal-content {
    padding: 20px 16px;
    margin-top: 150px;
  }

  .thanks-container {
    padding: 32px 20px;
  }

  .logo span {
    font-size: 1.2rem;
  }

  .logo img {
    width: 35px !important;
    height: auto !important;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}