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

:root {
  --primary-color: #0a4d68;
  --secondary-color: #088395;
  --accent-color: #05bfdb;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  --spacing-unit: 8px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--spacing-unit) * 3);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.navbar {
  padding: calc(var(--spacing-unit) * 2) 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: calc(var(--spacing-unit) * 4);
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover {
  color: var(--accent-color);
}

.nav-contact {
  background: var(--accent-color);
  color: var(--text-light) !important;
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  border-radius: calc(var(--spacing-unit) * 0.75);
  transition: var(--transition);
}

.nav-contact::after {
  display: none;
}

.nav-contact:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 191, 219, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

.hero {
  height: 100vh;
  background: linear-gradient(135deg, #0a4d68 0%, #088395 50%, #05bfdb 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    bottom center no-repeat;
}

@keyframes wave {
  0% {
    background-position: 0 bottom;
  }
  100% {
    background-position: 1440px bottom;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 0 calc(var(--spacing-unit) * 3);
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: calc(var(--spacing-unit) * 3);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.fade-in {
  animation: fadeInUp 1s ease;
}

.fade-in-delay-1 {
  animation: fadeInUp 1s ease 0.3s backwards;
}

.fade-in-delay-2 {
  animation: fadeInUp 1s ease 0.6s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-hero {
  display: inline-block;
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 5);
  background: var(--text-light);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: calc(var(--spacing-unit) * 0.75);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-light);
  border-radius: 20px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--text-light);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 6);
  color: var(--primary-color);
  position: relative;
  padding-bottom: calc(var(--spacing-unit) * 2);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.features {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.feature-card {
  text-align: center;
  background: var(--text-light);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--spacing-unit) * 2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3.5rem;
  color: #05bfdb;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: var(--primary-color);
}

.feature-card p {
  color: #666;
  line-height: 1.8;
}

.gallery {
  padding: calc(var(--spacing-unit) * 12) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.gallery-item {
  height: 300px;
  border-radius: calc(var(--spacing-unit) * 2);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  animation: fadeInUp 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h3 {
  transform: translateY(0);
}

.about {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--primary-color);
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: #666;
}

.about-features {
  list-style: none;
}

.about-features li {
  padding: calc(var(--spacing-unit) * 1.5) 0;
  padding-left: calc(var(--spacing-unit) * 4);
  position: relative;
  line-height: 1.6;
  color: #666;
}

.about-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.about-image {
  height: 500px;
}

.about-placeholder {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--spacing-unit) * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.location {
  padding: calc(var(--spacing-unit) * 12) 0;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: center;
}

.location-info h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.location-info p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.location-map {
  height: 400px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--spacing-unit) * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: linear-gradient(135deg, #0a4d68 0%, #088395 50%, #05bfdb 100%);
  text-align: center;
  color: var(--text-light);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: calc(var(--spacing-unit) * 8) 0 calc(var(--spacing-unit) * 4) 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: calc(var(--spacing-unit) * 6);
  margin-bottom: calc(var(--spacing-unit) * 6);
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: var(--accent-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: calc(var(--spacing-unit) * 1.5);
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  padding-top: calc(var(--spacing-unit) * 4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  color: var(--text-light);
  padding: calc(var(--spacing-unit) * 3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  margin-bottom: calc(var(--spacing-unit) * 2);
  font-size: 1.5rem;
}

.cookie-content p {
  margin-bottom: calc(var(--spacing-unit) * 3);
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: calc(var(--spacing-unit) * 2);
}

.btn-primary,
.btn-secondary {
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 4);
  border: none;
  border-radius: calc(var(--spacing-unit) * 0.75);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 191, 219, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-hero {
  height: 50vh;
  background: linear-gradient(135deg, #0a4d68 0%, #088395 50%, #05bfdb 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.contact-section {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 8);
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--primary-color);
}

.contact-info > p {
  margin-bottom: calc(var(--spacing-unit) * 4);
  color: #666;
  line-height: 1.8;
}

.contact-details {
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.contact-item {
  display: flex;
  gap: calc(var(--spacing-unit) * 3);
  margin-bottom: calc(var(--spacing-unit) * 4);
  padding: calc(var(--spacing-unit) * 3);
  background: var(--text-light);
  border-radius: calc(var(--spacing-unit) * 2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-item h3 {
  color: var(--primary-color);
  margin-bottom: calc(var(--spacing-unit) * 1);
  font-size: 1.2rem;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

.social-links h3 {
  color: var(--primary-color);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.social-icons {
  display: flex;
  gap: calc(var(--spacing-unit) * 2);
}

.social-icons a {
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  background: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: calc(var(--spacing-unit) * 0.75);
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.contact-form-container {
  background: var(--text-light);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--spacing-unit) * 2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  color: var(--primary-color);
}

.form-group {
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.form-group label {
  display: block;
  margin-bottom: calc(var(--spacing-unit) * 1);
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: calc(var(--spacing-unit) * 1.5);
  border: 2px solid #e0e0e0;
  border-radius: calc(var(--spacing-unit) * 0.75);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
}

.btn-submit {
  width: 100%;
  padding: calc(var(--spacing-unit) * 2);
  background: var(--accent-color);
  color: var(--text-light);
  border: none;
  border-radius: calc(var(--spacing-unit) * 0.75);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 191, 219, 0.3);
}

.form-message {
  margin-top: calc(var(--spacing-unit) * 2);
  padding: calc(var(--spacing-unit) * 2);
  border-radius: calc(var(--spacing-unit) * 0.75);
  display: none;
  text-align: center;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  display: block;
}

.map-section {
  padding: calc(var(--spacing-unit) * 12) 0;
}

.map-container {
  height: 500px;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: calc(var(--spacing-unit) * 4) 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

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

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

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

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

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

  .cookie-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .feature-card:nth-child(1) {
    animation-delay: 0.1s;
  }
  .feature-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  .feature-card:nth-child(3) {
    animation-delay: 0.3s;
  }
  .feature-card:nth-child(4) {
    animation-delay: 0.4s;
  }
  .feature-card:nth-child(5) {
    animation-delay: 0.5s;
  }
  .feature-card:nth-child(6) {
    animation-delay: 0.6s;
  }
}

.page-hero {
  height: 50vh;
  background: linear-gradient(135deg, #0a4d68 0%, #088395 50%, #05bfdb 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.gallery-full {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: var(--bg-light);
}

.gallery-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto calc(var(--spacing-unit) * 6);
}

.gallery-intro h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--primary-color);
}

.gallery-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 6);
  flex-wrap: wrap;
}

.filter-btn {
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  background: var(--text-light);
  color: var(--text-dark);
  border: 2px solid #e0e0e0;
  border-radius: calc(var(--spacing-unit) * 0.75);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-color);
  color: var(--text-light);
  border-color: var(--accent-color);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 3);
}

.gallery-masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--spacing-unit) * 2);
  cursor: pointer;
  height: 350px;
}

.gallery-masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-masonry-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: calc(var(--spacing-unit) * 3);
  color: var(--text-light);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-masonry-item:hover .gallery-item-overlay {
  transform: translateY(0);
}

.gallery-item-overlay h3 {
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.instagram-section {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: var(--text-light);
  text-align: center;
}

.instagram-text {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.instagram-hashtags {
  display: flex;
  justify-content: center;
  gap: calc(var(--spacing-unit) * 2);
  flex-wrap: wrap;
}

.instagram-hashtags span {
  background: var(--bg-light);
  padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
  border-radius: calc(var(--spacing-unit) * 0.5);
  color: var(--accent-color);
  font-weight: 500;
}

.experiences-detailed {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: var(--bg-light);
}

.experience-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: center;
  margin-bottom: calc(var(--spacing-unit) * 12);
}

.experience-block.reverse {
  direction: rtl;
}

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

.experience-content h2 {
  font-size: 2.2rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: var(--primary-color);
}

.experience-subtitle {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: calc(var(--spacing-unit) * 3);
  font-weight: 500;
}

.experience-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.experience-features {
  list-style: none;
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.experience-features li {
  padding: calc(var(--spacing-unit) * 1.5) 0;
  padding-left: calc(var(--spacing-unit) * 4);
  position: relative;
  color: #666;
}

.experience-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.experience-image {
  height: 450px;
  border-radius: calc(var(--spacing-unit) * 2);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.btn-experience {
  display: inline-block;
  padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
  background: var(--accent-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: calc(var(--spacing-unit) * 0.75);
  font-weight: 600;
  transition: var(--transition);
}

.btn-experience:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 191, 219, 0.3);
}

.pricing-section {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: var(--bg-light);
}

.pricing-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto calc(var(--spacing-unit) * 8);
}

.pricing-intro h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--primary-color);
}

.pricing-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--text-light);
  border-radius: calc(var(--spacing-unit) * 2);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 3px solid var(--accent-color);
}

.pricing-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent-color);
  color: var(--text-light);
  padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 5);
  transform: rotate(45deg);
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-header {
  padding: calc(var(--spacing-unit) * 4);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.pricing-badge {
  display: inline-block;
  padding: calc(var(--spacing-unit) * 0.5) calc(var(--spacing-unit) * 2);
  background: var(--accent-color);
  color: var(--text-light);
  border-radius: calc(var(--spacing-unit) * 2);
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-body {
  padding: calc(var(--spacing-unit) * 4);
}

.pricing-description {
  text-align: center;
  color: #666;
  margin-bottom: calc(var(--spacing-unit) * 3);
  font-size: 1.1rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.pricing-features li {
  padding: calc(var(--spacing-unit) * 1.5) 0;
  padding-left: calc(var(--spacing-unit) * 3);
  position: relative;
  color: #666;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

.pricing-footer {
  padding: 0 calc(var(--spacing-unit) * 4) calc(var(--spacing-unit) * 4);
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: calc(var(--spacing-unit) * 2);
  background: var(--accent-color);
  color: var(--text-light);
  text-align: center;
  text-decoration: none;
  border-radius: calc(var(--spacing-unit) * 0.75);
  font-weight: 600;
  transition: var(--transition);
}

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

.additional-services {
  padding: calc(var(--spacing-unit) * 12) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.service-card {
  background: var(--text-light);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--spacing-unit) * 2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: var(--transition);
}

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

.service-icon {
  font-size: 3rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: var(--primary-color);
}

.service-card p {
  color: #666;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.service-card ul {
  list-style: none;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.service-card ul li {
  padding: calc(var(--spacing-unit) * 1) 0;
  color: #666;
  font-size: 0.95rem;
}

.service-link {
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--secondary-color);
}

.pricing-info {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: var(--bg-light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.info-card {
  background: var(--text-light);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--spacing-unit) * 2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: calc(var(--spacing-unit) * 2);
  font-size: 1.3rem;
}

.info-card p {
  color: #666;
  line-height: 1.8;
}

.special-offers {
  padding: calc(var(--spacing-unit) * 12) 0;
}

.offer-box {
  background: linear-gradient(135deg, #0a4d68 0%, #088395 50%, #05bfdb 100%);
  padding: calc(var(--spacing-unit) * 8);
  border-radius: calc(var(--spacing-unit) * 2);
  text-align: center;
  color: var(--text-light);
}

.offer-box h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.offer-highlight {
  font-size: 1.5rem;
  margin-bottom: calc(var(--spacing-unit) * 3);
  font-weight: 600;
}

.offer-box p {
  font-size: 1.1rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-story {
  padding: calc(var(--spacing-unit) * 12) 0;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-content h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 4);
  color: var(--primary-color);
  text-align: center;
}

.lead-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: calc(var(--spacing-unit) * 4);
  text-align: center;
  font-weight: 500;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.about-mission {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: var(--bg-light);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.mission-card {
  background: var(--text-light);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--spacing-unit) * 2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.mission-icon {
  font-size: 3.5rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.mission-card h3 {
  font-size: 1.8rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: var(--primary-color);
}

.mission-card p {
  color: #666;
  line-height: 1.8;
}

.about-features {
  padding: calc(var(--spacing-unit) * 12) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
}

.why-card {
  background: var(--bg-light);
  padding: calc(var(--spacing-unit) * 4);
  border-radius: calc(var(--spacing-unit) * 2);
  transition: var(--transition);
}

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

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: var(--primary-color);
}

.why-card p {
  color: #666;
  line-height: 1.8;
}

.about-team {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: var(--bg-light);
}

.commitment-content {
  max-width: 900px;
  margin: 0 auto;
}

.commitment-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: calc(var(--spacing-unit) * 4);
}

.commitment-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: calc(var(--spacing-unit) * 4);
  margin-top: calc(var(--spacing-unit) * 6);
}

.stat-card {
  text-align: center;
  padding: calc(var(--spacing-unit) * 3);
  background: var(--text-light);
  border-radius: calc(var(--spacing-unit) * 2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: calc(var(--spacing-unit) * 1);
}

.stat-label {
  color: #666;
  font-size: 1rem;
}

.about-location-detail {
  padding: calc(var(--spacing-unit) * 12) 0;
}

.location-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--spacing-unit) * 6);
  align-items: center;
}

.location-text h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.location-text h4 {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: calc(var(--spacing-unit) * 4);
  margin-bottom: calc(var(--spacing-unit) * 2);
}

.location-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.location-list {
  list-style: none;
  margin-bottom: calc(var(--spacing-unit) * 3);
}

.location-list li {
  padding: calc(var(--spacing-unit) * 1) 0;
  padding-left: calc(var(--spacing-unit) * 3);
  position: relative;
  color: #666;
}

.location-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.location-visual {
  height: 500px;
  border-radius: calc(var(--spacing-unit) * 2);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.faq-section {
  padding: calc(var(--spacing-unit) * 12) 0;
  background: var(--bg-light);
}

.faq-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto calc(var(--spacing-unit) * 6);
}

.faq-intro h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 3);
  color: var(--primary-color);
}

.faq-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
}

.faq-intro a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: calc(var(--spacing-unit) * 2);
  margin-bottom: calc(var(--spacing-unit) * 6);
  flex-wrap: wrap;
}

.faq-category-btn {
  padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3);
  background: var(--text-light);
  color: var(--text-dark);
  border: 2px solid #e0e0e0;
  border-radius: calc(var(--spacing-unit) * 0.75);
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: var(--accent-color);
  color: var(--text-light);
  border-color: var(--accent-color);
}

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

.faq-item {
  background: var(--text-light);
  margin-bottom: calc(var(--spacing-unit) * 2);
  border-radius: calc(var(--spacing-unit) * 1);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: calc(var(--spacing-unit) * 3);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: bold;
  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;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 calc(var(--spacing-unit) * 3) calc(var(--spacing-unit) * 3);
  color: #666;
  line-height: 1.8;
}

.faq-answer a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.faq-cta {
  padding: calc(var(--spacing-unit) * 10) 0;
  background: var(--text-light);
  text-align: center;
}

.faq-cta h2 {
  font-size: 2.5rem;
  margin-bottom: calc(var(--spacing-unit) * 2);
  color: var(--primary-color);
}

.faq-cta p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: calc(var(--spacing-unit) * 4);
}

@media (max-width: 768px) {
  .experience-block,
  .location-detail-grid {
    grid-template-columns: 1fr;
  }

  .experience-block.reverse {
    direction: ltr;
  }

  .pricing-grid,
  .services-grid,
  .info-grid,
  .why-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

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