/* Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  max-width: 100vw;
}

html {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #235059 !important;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo h2 {
  color: #fff;
  font-size: 2rem;
  margin: 0;
}

.nav-logo-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  margin: 0 15px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.nav-menu a:hover {
  color: #d4af37;
}

.contact-btn {
  background: #d4af37;
  padding: 10px 20px;
  border-radius: 5px;
  color: #000 !important;
  font-weight: 600;
}

.contact-btn:hover {
  background: #b8941f;
  color: #fff !important;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("deniz.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-header h2 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.about-subtitle {
  color: #666;
  font-size: 1.2rem;
  font-weight: 300;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-feature {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.feature-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.feature-content h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.feature-content p {
  color: #666;
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

.about-cta {
  margin-top: 20px;
}

.learn-more {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.learn-more:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  color: #000;
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 40px 30px 30px;
  color: #fff;
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.overlay-content i {
  font-size: 2rem;
  color: #d4af37;
}

.overlay-content span {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Mobile Services Slider */
.mobile-services-slider {
  display: none;
}

.slider-arrow {
  display: none;
}

.services-slider-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.services-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.services-slider-track .service-card {
  min-width: 280px;
  flex-shrink: 0;
}

.services-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.service-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-dot.active {
  background: #d4af37;
  transform: scale(1.2);
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon i {
  font-size: 2rem;
  color: #fff;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.4;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
}

.services-footer {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #eee;
}

.services-footer p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #333;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-link {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #b8941f;
}

/* Routes Section */
.routes {
  padding: 100px 0;
  background-color: #106b6e;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.routes h2 {
  color: #fff;
  margin-bottom: 3rem;
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.route-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.route-card:hover {
  transform: translateY(-5px);
}

.route-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.route-content {
  padding: 30px;
}

.route-content h3 {
  color: #fff;
  margin-bottom: 15px;
}

.route-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.duration {
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Yacht Gallery Section */
.yacht-gallery {
  padding: 100px 0;
  background: #fff;
}

.yacht-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.tab-btn:hover,
.tab-btn.active {
  background: #d4af37;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.gallery-category {
  display: none;
}

.gallery-category.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.yacht-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.yacht-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.yacht-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.yacht-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.gallery-overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Drone Video Section */
.drone-video {
  position: relative;
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

.drone-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url("deniz.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.drone-video-content {
  position: relative;
  z-index: 2;
}

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

.video-section-header h2 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-section-header .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-showcase {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.video-main {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.youtube-video-large {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.youtube-video-large iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.video-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.booking-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-bottom: 30px;
}

.booking-card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.booking-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.booking-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.highlight-item i {
  color: #d4af37;
  font-size: 1.2rem;
  width: 20px;
}

.highlight-item span {
  color: #fff;
  font-weight: 500;
}

.booking-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  color: #000;
}

.pricing-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.pricing-card h3 {
  color: #d4af37;
  margin-bottom: 25px;
  font-size: 1.8rem;
  text-align: center;
}

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-option {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.price-option:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.price-option.featured {
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid #d4af37;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #d4af37;
  color: #000;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-option h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.price {
  color: #d4af37;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.price-option p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card h3 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
}

.testimonial {
  text-align: center;
}

.stars {
  margin-bottom: 15px;
}

.stars i {
  color: #d4af37;
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial p {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.testimonial-author strong {
  color: #d4af37;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Video Bottom Section */
.video-bottom-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.three-cards-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.booking-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 20px 20px 45px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.booking-card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.booking-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.highlight-item i {
  color: #d4af37;
  font-size: 1rem;
  width: 16px;
}

.highlight-item span {
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
}

.booking-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
  color: #000;
}

.pricing-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 20px 20px 15px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-align: center;
}

.pricing-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-option {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.price-option:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.price-option.featured {
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid #d4af37;
}

.popular-badge {
  position: absolute;
  top: -8px;
  right: 15px;
  background: #d4af37;
  color: #000;
  padding: 3px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

.price-option h4 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1rem;
}

.price-option p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 6px;
  line-height: 1.3;
}

.price-tag {
  color: #d4af37;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 20px 20px 45px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonials-card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.testimonial-slider {
  position: relative;
  height: 120px;
  overflow: hidden;
  margin-bottom: 12px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slide .stars {
  margin-bottom: 8px;
}

.testimonial-slide .stars i {
  color: #d4af37;
  font-size: 1rem;
  margin: 0 1px;
}

.testimonial-slide p {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.4;
  font-size: 0.9rem;
}

.testimonial-slide .testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.testimonial-slide .testimonial-author strong {
  color: #d4af37;
  font-size: 0.9rem;
}

.testimonial-slide .testimonial-author span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #d4af37;
  transform: scale(1.2);
}

/* Floating Contact Buttons */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 28px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  color: #fff;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128c7e, #075e54);
}

.call-btn {
  background: linear-gradient(135deg, #ff4444, #cc0000);
}

.call-btn:hover {
  background: linear-gradient(135deg, #cc0000, #aa0000);
}

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

/* Mobile responsive for floating buttons */
@media (max-width: 768px) {
  .floating-contact {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .floating-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: #f8f9fa;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

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

/* Contact Section */
.contact {
  padding: 100px 0;
  background: #fff;
}

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

.contact-info h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #d4af37;
  margin-right: 20px;
  margin-top: 5px;
}

.contact-item h4 {
  margin-bottom: 5px;
  color: #333;
}

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

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: #d4af37;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #b8941f;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  margin-bottom: 30px;
  text-align: center;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
}

.submit-btn {
  width: 100%;
  background: #d4af37;
  color: #000;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
  background: #235059;
  color: #fff;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  color: #d4af37;
  margin-bottom: 20px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-logo h2 {
    font-size: 1.6rem;
  }

  .nav-logo-img {
    width: 38px;
    height: 38px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 20px 0;
  }

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

  .nav-menu li {
    margin: 15px 0;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .about {
    padding: 80px 0;
  }

  .about-header {
    margin-bottom: 50px;
  }

  .about-header h2 {
    font-size: 2rem;
  }

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

  .about-text {
    gap: 30px;
  }

  .about-feature {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  .feature-icon i {
    font-size: 1.2rem;
  }

  .feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .about-image img {
    height: 300px;
  }

  .services {
    padding: 80px 0;
  }

  .services h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .desktop-services {
    display: none;
  }

  .mobile-services-slider {
    display: block;
  }

  .slider-arrow {
    display: flex;
  }

  .services-slider-container {
    margin: 0 0 30px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .slider-arrow:hover {
    background: rgba(212, 175, 55, 1);
    transform: translateY(-50%) scale(1.1);
  }

  .slider-prev {
    left: 10px;
  }

  .slider-next {
    right: 10px;
  }

  .slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .services-slider-track {
    display: flex;
    gap: 25px;
    padding: 0 25px;
    transition: transform 0.5s ease;
  }

  .services-slider-track .service-card {
    width: 280px;
    flex-shrink: 0;
    padding: 25px 20px;
    box-sizing: border-box;
  }

  .services-slider-track .service-card h3 {
    font-size: 0.95rem;
    line-height: 1.2;
    margin-bottom: 10px;
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    max-width: 100%;
    height: 2.4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .services-slider-track .service-card p {
    font-size: 0.85rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin: 0;
  }

  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .routes {
    padding: 80px 0;
  }

  .routes h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .routes-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .route-card {
    padding: 30px 25px;
  }

  .route-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact {
    padding: 80px 0;
  }

  .contact h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .yacht-gallery-tabs {
    gap: 15px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .yacht-gallery-grid {
    grid-template-columns: 1fr;
  }

  .three-cards-section {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .testimonial-slider {
    height: 100px;
  }

  .drone-video {
    padding: 80px 0;
  }

  .video-section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .video-section-header .section-subtitle {
    font-size: 1rem;
  }

  .video-showcase {
    gap: 30px;
  }

  .booking-card {
    padding: 20px;
  }

  .booking-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .testimonials-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .pricing-options {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-option {
    flex: 1;
    min-width: 150px;
  }

  .booking-highlights {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .highlight-item {
    flex: 1;
    min-width: 120px;
  }

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

  .hero {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .nav-logo h2 {
    font-size: 1.4rem;
  }

  .nav-logo-img {
    width: 52px;
    height: 52px;
  }

  .container {
    padding: 0 15px;
    max-width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-content {
    padding: 0 15px;
  }

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

  .about {
    padding: 60px 0;
  }

  .about-header h2 {
    font-size: 1.8rem;
  }

  .about-subtitle {
    font-size: 1rem;
  }

  .about-content {
    gap: 30px;
  }

  .about-text {
    gap: 25px;
  }

  .feature-content h3 {
    font-size: 1rem;
  }

  .services {
    padding: 60px 0;
  }

  .routes {
    padding: 60px 0;
  }

  .contact {
    padding: 60px 0;
  }

  .drone-video {
    padding: 60px 0;
  }

  .service-card {
    padding: 25px 20px;
  }

  .route-card {
    padding: 25px 20px;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .booking-card,
  .pricing-card,
  .testimonials-card {
    padding: 18px;
  }
}

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

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

.slide-in-up {
  animation: slideInUp 0.8s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}
