/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Aleo", serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(139, 69, 19, 0.3);
}

.navbar {
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #d2691e;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #d2691e;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #d2691e;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7),
    rgba(139, 69, 19, 0.3)
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.cta-button {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

/* Adventures Section */
.adventures-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.text-content {
  padding-right: 40px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.section-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.section-button {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.image-content {
  position: relative;
}

.section-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: #0a0a0a;
}

.features-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-description {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Experience Section */
.experience-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.experience-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 60px;
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.experience-card {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.card-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.card-text {
  font-size: 16px;
  line-height: 1.6;
}

.experience-image {
  position: relative;
}

.exp-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #0a0a0a;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-image {
  position: relative;
}

.contact-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form-wrapper {
  padding-left: 40px;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-description {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(139, 69, 19, 0.3);
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-family: "Aleo", serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #d2691e;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Footer */
.main-footer {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: 700;
  color: white;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
}

.footer-text,
.footer-address,
.footer-phone,
.footer-year,
.footer-domain {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8b4513, #a0522d);
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-text {
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-accept,
.cookie-decline {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: white;
  color: #8b4513;
}

.cookie-decline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-accept:hover,
.cookie-decline:hover {
  transform: translateY(-1px);
}

/* Page Hero */
.page-hero {
  padding: 150px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.page-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Policy Styles */
.policy-section {
  padding: 150px 0 80px;
  background: #0a0a0a;
}

.policy-header {
  text-align: center;
  margin-bottom: 60px;
}

.policy-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.policy-subtitle {
  font-size: 18px;
  opacity: 0.9;
}

.policy-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  padding: 20px;
  background: rgba(139, 69, 19, 0.1);
  border-radius: 10px;
}

.policy-nav-link {
  color: #d2691e;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.policy-nav-link:hover {
  background: rgba(139, 69, 19, 0.2);
}

.policy-content {
  margin-bottom: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border-left: 4px solid #d2691e;
}

.policy-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #d2691e;
}

.policy-text h3 {
  font-size: 1.8rem;
  margin: 30px 0 15px;
  color: #ffffff;
}

.policy-text h4 {
  font-size: 1.4rem;
  margin: 25px 0 10px;
  color: #d2691e;
}

.policy-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

.policy-text ul {
  margin: 15px 0 15px 30px;
}

.policy-text li {
  margin-bottom: 8px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-details {
  background: rgba(139, 69, 19, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

/* Success Page */
.success-section {
  padding: 150px 0;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.success-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 30px;
}

.success-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #d2691e;
}

.success-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
}

.success-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.success-button {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.success-button.primary {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
}

.success-button.secondary {
  background: transparent;
  color: #d2691e;
  border: 2px solid #d2691e;
}

.success-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Adventures Grid */
.adventures-grid-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.adventures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.adventure-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.2);
}

.adventure-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 69, 19, 0.5);
}

.adventure-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.adventure-card:hover .card-img {
  transform: scale(1.05);
}

.adventure-content {
  padding: 25px;
}

.adventure-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #d2691e;
}

.adventure-description {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.6;
}

.adventure-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.stat {
  font-size: 12px;
  opacity: 0.8;
  background: rgba(139, 69, 19, 0.2);
  padding: 5px 10px;
  border-radius: 15px;
  display: inline-block;
}

.adventure-button {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.adventure-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.7;
}

/* Crew Styles */
.crew-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.crew-member {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.2);
}

.crew-member:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 69, 19, 0.5);
}

.member-image {
  height: 300px;
  overflow: hidden;
}

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.crew-member:hover .member-img {
  transform: scale(1.05);
}

.member-info {
  padding: 25px;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #d2691e;
}

.member-role {
  font-size: 14px;
  color: #a0522d;
  margin-bottom: 15px;
  font-weight: 600;
}

.member-description {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.6;
}

.member-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill {
  background: rgba(139, 69, 19, 0.3);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

/* Join Crew Section */
.join-crew-section {
  padding: 80px 0;
}

.join-crew-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.join-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.join-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
}

.requirements {
  margin-bottom: 40px;
}

.req-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #d2691e;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.req-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 8px;
}

.req-icon {
  font-size: 1.5rem;
}

.req-text {
  font-size: 14px;
}

.join-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.join-button {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.join-button.primary {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
}

.join-button.secondary {
  background: transparent;
  color: #d2691e;
  border: 2px solid #d2691e;
}

.join-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Treasures Styles */
.treasure-categories {
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.02);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tab-button {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(139, 69, 19, 0.3);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.tab-button.active,
.tab-button:hover {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  border-color: #a0522d;
}

.treasures-grid-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.treasures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.treasure-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.2);
}

.treasure-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 69, 19, 0.5);
}

.treasure-image {
  height: 200px;
  overflow: hidden;
}

.treasure-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.treasure-card:hover .treasure-img {
  transform: scale(1.05);
}

.treasure-info {
  padding: 25px;
}

.treasure-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #d2691e;
}

.treasure-rarity {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 15px;
}

.treasure-rarity.legendary {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #000;
}

.treasure-rarity.epic {
  background: linear-gradient(135deg, #9932cc, #8a2be2);
  color: #fff;
}

.treasure-rarity.rare {
  background: linear-gradient(135deg, #0080ff, #0066cc);
  color: #fff;
}

.treasure-description {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.6;
}

.treasure-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.treasure-button {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.treasure-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Treasure Hunt Section */
.treasure-hunt-section {
  padding: 80px 0;
}

.hunt-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hunt-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.hunt-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
}

.hunt-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.hunt-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d2691e;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

.hunt-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hunt-button {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hunt-button.primary {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
}

.hunt-button.secondary {
  background: transparent;
  color: #d2691e;
  border: 2px solid #d2691e;
}

.hunt-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Fleet Styles */
.fleet-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.ship-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(139, 69, 19, 0.2);
  position: relative;
}

.ship-card.flagship {
  border: 2px solid #ffd700;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.ship-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 69, 19, 0.5);
}

.ship-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.ship-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ship-card:hover .ship-img {
  transform: scale(1.05);
}

.ship-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  color: #000;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.ship-info {
  padding: 25px;
}

.ship-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #d2691e;
}

.ship-description {
  font-size: 14px;
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.ship-stats {
  margin-bottom: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  min-width: 80px;
}

.stat-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(135deg, #8b4513, #a0522d);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.stat-value {
  font-size: 12px;
  font-weight: 600;
  min-width: 50px;
  text-align: right;
}

.ship-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec {
  background: rgba(139, 69, 19, 0.3);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

/* Fleet Management */
.fleet-management {
  padding: 80px 0;
}

.management-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.management-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.management-description {
  font-size: 18px;
  margin-bottom: 50px;
  opacity: 0.9;
  line-height: 1.7;
}

.management-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #d2691e;
}

.feature-desc {
  font-size: 14px;
  opacity: 0.8;
}

.management-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.management-button {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.management-button.primary {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
}

.management-button.secondary {
  background: transparent;
  color: #d2691e;
  border: 2px solid #d2691e;
}

.management-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .section-content,
  .experience-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .text-content,
  .contact-form-wrapper {
    padding-right: 0;
    padding-left: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .adventures-grid,
  .crew-grid,
  .treasures-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .success-actions,
  .join-actions,
  .hunt-actions,
  .management-actions {
    flex-direction: column;
    align-items: center;
  }

  .success-button,
  .join-button,
  .hunt-button,
  .management-button {
    width: 100%;
    max-width: 300px;
  }

  .policy-navigation {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title,
  .features-title,
  .experience-title {
    font-size: 2rem;
  }

  .feature-card,
  .experience-card {
    padding: 25px 20px;
  }

  .contact-form-wrapper,
  .text-content {
    padding: 0;
  }

  .policy-content {
    padding: 25px 20px;
  }

  .adventures-grid,
  .crew-grid,
  .treasures-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .adventure-card,
  .crew-member,
  .treasure-card,
  .ship-card {
    margin: 0 10px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for cards */
.adventure-card,
.crew-member,
.treasure-card,
.ship-card,
.feature-card {
  transition: all 0.3s ease;
}

.adventure-card:hover,
.crew-member:hover,
.treasure-card:hover,
.ship-card:hover {
  box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #a0522d, #cd853f);
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid #d2691e;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .main-header,
  .cookie-consent {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* Contact Page Styles */
.contact-methods-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-method {
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  color: white;
}

.contact-method:hover {
  transform: translateY(-5px);
}

.method-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.method-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.method-description {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
  line-height: 1.6;
}

.method-details p {
  margin-bottom: 8px;
  font-size: 14px;
}

.method-details a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.method-details a:hover {
  opacity: 0.8;
}

.location-button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.location-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.8;
}

/* Enhanced Contact Form */
.contact-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
}

.form-section-content {
  max-width: 800px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 50px;
}

.form-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #d2691e;
}

.form-section-description {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(139, 69, 19, 0.2);
}

.enhanced-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #d2691e;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(139, 69, 19, 0.3);
  color: white;
  padding: 12px 15px;
  border-radius: 8px;
  font-family: "Aleo", serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #d2691e;
  box-shadow: 0 0 0 2px rgba(210, 105, 30, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #1a1a1a;
  color: white;
}

.priority-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.priority-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.priority-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.priority-option input[type="radio"] {
  margin: 0;
}

.priority-label {
  font-size: 14px;
  font-weight: 500;
}

.character-count {
  text-align: right;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 5px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  margin-top: 2px;
}

.checkmark {
  flex-shrink: 0;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.form-submit-enhanced {
  background: linear-gradient(135deg, #8b4513, #a0522d);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.form-submit-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.form-reset {
  background: transparent;
  color: #d2691e;
  border: 2px solid #d2691e;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.form-reset:hover {
  background: rgba(210, 105, 30, 0.1);
  transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-subtitle {
  font-size: 16px;
  opacity: 0.9;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(139, 69, 19, 0.2);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(139, 69, 19, 0.1);
}

.faq-question h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: #d2691e;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: #0a0a0a;
}

.map-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.map-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-placeholder {
  position: relative;
  height: 400px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(139, 69, 19, 0.95);
  padding: 20px;
  border-radius: 10px;
  color: white;
  max-width: 300px;
}

.map-info h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
}

.map-info p {
  margin: 5px 0;
  font-size: 14px;
  line-height: 1.5;
}

.directions-button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
  transition: all 0.3s ease;
  width: 100%;
}

.directions-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Contact Stats */
.contact-stats-section {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #d2691e;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .priority-options {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .map-overlay {
    position: static;
    margin-top: 20px;
    max-width: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .form-actions {
    flex-direction: column;
    align-items: center;
  }

  .form-submit-enhanced,
  .form-reset {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 25px 20px;
  }

  .priority-options {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #8b4513, #a0522d);
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  z-index: 10000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

/* Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu.active {
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
