/* Base Styles */
:root {
  --blue-50: #f0f7ff;
  --blue-100: #e0eefe;
  --blue-200: #bae0fd;
  --blue-300: #7cc8fb;
  --blue-400: #36aaf5;
  --blue-500: #0c8ee3;
  --blue-600: #0271c2;
  --blue-700: #035a9e;
  --blue-800: #074d83;
  --blue-900: #0c416d;

  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --gold-500: #eab308;

  --white: #ffffff;
  --black: #000000;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 1rem;
}

.section-divider {
  width: 6rem;
  height: 0.25rem;
  background-color: var(--teal-500);
  margin: 0 auto 1.5rem;
}

.section-subtitle {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--gray-700);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--teal-600);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--teal-700);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.btn-outline-blue:hover {
  background-color: var(--blue-50);
}

.full-width {
  width: 100%;
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }

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

/* Animations */
.animate-fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform 1s ease;
}

.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-element {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-element.from-right {
  transform: translateX(12px);
}

.animate-element.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0) translateZ(0) scaleY(1);
  }
  50% {
    transform: translateX(-25%) translateZ(0) scaleY(0.8);
  }
  100% {
    transform: translateX(-50%) translateZ(0) scaleY(1);
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-wave {
  animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
  transform-origin: center bottom;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes ripple {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}

.navbar.scrolled .logo-link {
  color: var(--blue-900);
}

.logo-link i {
  color: var(--teal-400);
}

.navbar.scrolled .logo-link i {
  color: var(--teal-600);
}

.italic {
  font-style: italic;
}

.desktop-nav {
  display: none;
}

.nav-link {
  margin-left: 2rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--blue-900);
}

.nav-link:hover {
  color: var(--teal-500);
}

.mobile-menu-toggle {
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.navbar.scrolled .mobile-menu-toggle {
  color: var(--blue-900);
}

#menu-toggle {
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: var(--white);
  padding: 1rem 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  padding: 0.75rem 1.5rem;
  color: var(--blue-900);
  font-weight: 500;
}

.mobile-nav-link:hover {
  color: var(--teal-500);
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
}

#animated-background,
#water-ripple {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
}

.hero-text {
  max-width: 48rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: bounce 2s infinite;
}

.scroll-down-btn {
  background: none;
  border: none;
  color: var(--white);
  opacity: 0.8;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease;
}

.scroll-down-btn:hover {
  opacity: 1;
}

.scroll-down-btn span {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.scroll-icon {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid var(--white);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background-color: var(--white);
  border-radius: 9999px;
  margin-top: 0.5rem;
  animation: bounce 1.5s infinite;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

/* About Section */
.about {
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
  line-height: 1.75;
}

.about-image {
  position: relative;
  height: 500px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(7, 77, 131, 0.2);
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Fleet Section */
.fleet {
  background-color: var(--white);
}

.fleet-slider {
  position: relative;
  margin-top: 2rem;
}

.fleet-container {
  position: relative;
  overflow: hidden;
}

.yacht-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.7s ease-in-out;
}

.yacht-item.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 10;
}

.yacht-item.prev {
  transform: translateX(-100%);
}

.yacht-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.yacht-image {
  position: relative;
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.yacht-details h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 1rem;
}

.yacht-details p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.yacht-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  align-items: center;
}

.spec-icon {
  color: var(--gold-500);
  margin-right: 0.5rem;
}

.spec-text {
  color: var(--gray-700);
}

.fleet-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.fleet-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--blue-200);
  cursor: pointer;
  transition: all 0.3s ease;
}

.fleet-dot.active {
  background-color: var(--blue-600);
  transform: scale(1.25);
}

.fleet-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--blue-900);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.fleet-nav:hover {
  background-color: var(--white);
}

.fleet-nav.prev {
  left: 0;
}

.fleet-nav.next {
  right: 0;
}

@media (min-width: 1024px) {
  .yacht-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Services Section */
.services {
  background-color: var(--white);
}

.services-highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.services-image {
  position: relative;
  height: 500px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

.services-description h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 1.5rem;
}

.services-description p {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: var(--teal-500);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--gray-700);
}

@media (min-width: 768px) {
  .services-highlight {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

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

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Process Section */
.process {
  background-color: var(--blue-50);
}

.process-timeline {
  position: relative;
  margin-bottom: 5rem;
}

.timeline-line {
  display: none;
}

.process-step {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease-out;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--teal-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  z-index: 10;
}

.step-content {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--gray-700);
}

.benefits-container {
  background-color: var(--white);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.benefits-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 2rem;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease-out;
}

.benefit-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-icon {
  color: var(--teal-500);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.benefit-text {
  color: var(--gray-700);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .timeline-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--gray-200);
    transform: translateX(-50%);
  }

  .process-step {
    margin-bottom: 3rem;
  }

  .step-container {
    flex-direction: row;
  }

  .step-container.even {
    flex-direction: row-reverse;
  }

  .step-number {
    margin: 0 3rem;
  }

  .step-content {
    width: calc(50% - 5rem);
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Pricing Section */
.pricing {
  background-color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: translateY(0);
  opacity: 0;
}

.pricing-card.visible {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border-color: var(--teal-500);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
  z-index: 10;
}

.popular-badge {
  background-color: var(--teal-500);
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.pricing-content {
  padding: 2rem;
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.pricing-price {
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--blue-900);
}

.price-unit {
  color: var(--gray-600);
  margin-left: 0.25rem;
}

.pricing-description {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.feature-icon {
  color: var(--teal-500);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

.feature-text {
  color: var(--gray-700);
}

.custom-quote {
  text-align: center;
  margin-top: 3rem;
}

.custom-quote p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Gallery Section */
.gallery {
  background-color: var(--blue-50);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 16rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.7s ease-out;
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

.gallery-category {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
}

.gallery-title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.close-lightbox {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-lightbox:hover {
  color: var(--gray-300);
}

.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 64rem;
  height: 80vh;
}

.lightbox-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

.lightbox-category {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.lightbox-title {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Testimonials Section */
.testimonials {
  background-color: var(--blue-900);
  color: var(--white);
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
  color: var(--white);
}

.section-header.light .section-subtitle {
  color: var(--blue-100);
}

.testimonials-slider {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.testimonials-container {
  position: relative;
  overflow: hidden;
}

.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.7s ease-in-out;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 10;
}

.testimonial.prev {
  transform: translateX(-100%);
}

.testimonial-card {
  background-color: rgba(7, 77, 131, 0.5);
  backdrop-filter: blur(4px);
  padding: 2rem 3rem;
  border-radius: 0.5rem;
  text-align: center;
}

.testimonial-image {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 2px solid var(--teal-500);
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

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

.testimonial-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.star {
  color: var(--teal-500);
  margin: 0 0.125rem;
}

.testimonial-quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--blue-50);
}

.testimonial-author {
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  color: var(--blue-200);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--blue-200);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--teal-500);
  transform: scale(1.25);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(7, 77, 131, 0.8);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}

.testimonial-nav:hover {
  background-color: var(--blue-800);
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}

/* Contact Section */
.contact {
  background-color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 1.5rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  background-color: var(--teal-600);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--blue-900);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--gray-700);
}

.areas-list {
  color: var(--gray-700);
}

.areas-list li {
  margin-bottom: 0.5rem;
}

.form-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
}

.form-success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--teal-700);
  padding: 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
  display: none;
}

.form-success.active {
  display: block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Footer */
.footer {
  background-color: var(--blue-900);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: var(--blue-200);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: var(--white);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--teal-500);
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--blue-200);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-contact-list i {
  color: var(--teal-500);
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.footer-contact-list span {
  color: var(--blue-200);
}

.footer-bottom {
  border-top: 1px solid var(--blue-800);
  padding-top: 2rem;
  text-align: center;
  color: var(--blue-300);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: var(--teal-600);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 100;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-to-top:hover {
  background-color: var(--teal-700);
}
