/* ============================================
   LUXURY YACHT - ACN Agency Design #059
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --ocean-deep: #0c4a6e;
  --ocean-dark: #073a5a;
  --ocean-light: #1a6a9e;
  --teak-wood: #8b4513;
  --teak-light: #a0522d;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-light: #e6c65c;
  --gold-dark: #b8942d;
  --cream: #f5f0e8;
  --text-dark: #1a2a3a;
  --text-muted: #5a7a8a;
  --shadow: rgba(12, 74, 110, 0.3);
  --water-gradient-1: rgba(12, 74, 110, 0.8);
  --water-gradient-2: rgba(26, 106, 158, 0.4);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-dark);
  background: var(--ocean-deep);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ============================================
   WATER BACKGROUND ANIMATION
   ============================================ */
.water-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(180deg, 
    #1a3a5c 0%, 
    #0c4a6e 30%, 
    #073a5a 60%, 
    #052a45 100%
  );
  overflow: hidden;
}

.water-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 74, 110, 0.3) 100%);
  animation: waterMove 8s ease-in-out infinite;
}

.water-reflection {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.water-reflection .wave {
  position: absolute;
  width: 200%;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23d4af37' fill-opacity='0.05' d='M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,181.3C672,192,768,160,864,149.3C960,139,1056,149,1152,154.7C1248,160,1344,160,1392,160L1440,160L1440,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'%3E%3C/path%3E%3C/svg%3E") repeat-x;
  background-size: 50% 100%;
  animation: waveMove 12s linear infinite;
  opacity: 0.3;
}

.water-reflection .wave:nth-child(2) {
  bottom: 20%;
  animation-delay: -4s;
  opacity: 0.2;
}

.water-reflection .wave:nth-child(3) {
  bottom: 40%;
  animation-delay: -8s;
  opacity: 0.15;
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes waterMove {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-5%) translateY(-3%); }
}

/* ============================================
   GOLDEN SUNSET REFLECTION
   ============================================ */
.sunset-reflection {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, 
    transparent 0%,
    rgba(212, 175, 55, 0.1) 30%,
    rgba(212, 175, 55, 0.2) 60%,
    rgba(212, 175, 55, 0.1) 100%
  );
  z-index: -1;
  animation: sunsetPulse 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sunsetPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7, 58, 90, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 5%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-deep);
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 5% 80px;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 2;
}

.hero-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.5s both;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--ocean-deep);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--ocean-deep);
  transform: translateY(-3px);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background: var(--ocean-dark);
}

.section-light {
  background: var(--cream);
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}

.section-light .section-title {
  color: var(--ocean-deep);
}

.section-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.section-light .section-description {
  color: var(--text-muted);
}

/* ============================================
   YACHT DISPLAY (Hero Animation)
   ============================================ */
.yacht-display {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  height: 250px;
  pointer-events: none;
  z-index: 1;
}

.yacht-silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: yachtSway 6s ease-in-out infinite;
}

@keyframes yachtSway {
  0%, 100% { transform: translateX(-50%) rotate(-1deg) translateY(0); }
  25% { transform: translateX(-50%) rotate(0.5deg) translateY(-5px); }
  50% { transform: translateX(-50%) rotate(1deg) translateY(0); }
  75% { transform: translateX(-50%) rotate(-0.5deg) translateY(-3px); }
}

.yacht-silhouette svg {
  width: 400px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: var(--ocean-deep);
}

.card-title {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.card-text {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

/* Light cards */
.section-light .card {
  background: var(--white);
  border-color: rgba(139, 69, 19, 0.1);
}

.section-light .card:hover {
  border-color: var(--teak-wood);
  box-shadow: 0 20px 60px rgba(139, 69, 19, 0.15);
}

.section-light .card-title {
  color: var(--ocean-deep);
}

.section-light .card-text {
  color: var(--text-muted);
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-item {
  text-align: center;
  padding: 30px 20px;
}

.feature-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}

.feature-label {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 58, 90, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 5px;
}

.gallery-category {
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  padding: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  line-height: 1.8;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--white);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-deep);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fafafa;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ocean-dark);
  padding: 80px 5% 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold);
  color: var(--ocean-deep);
}

.footer-column h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 25px;
  font-family: 'Playfair Display', serif;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1400px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */
.about-hero {
  min-height: 60vh;
  padding-top: 150px;
}

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

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold);
  border-radius: 20px;
  transform: translate(15px, 15px);
  z-index: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.about-text h3 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 25px;
}

.about-text p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 20px;
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--teak-wood) 100%);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--ocean-deep);
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.timeline-title {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ============================================
   SERVICES PAGE SPECIFIC
   ============================================ */
.service-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.service-detailed:nth-child(even) {
  direction: rtl;
}

.service-detailed:nth-child(even) > * {
  direction: ltr;
}

.service-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.service-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

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

.service-content h3 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.service-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 25px;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}

.service-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--ocean-deep);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* ============================================
   DOCS PAGE SPECIFIC
   ============================================ */
.docs-container {
  max-width: 900px;
  margin: 0 auto;
}

.docs-sidebar {
  position: fixed;
  left: 5%;
  top: 150px;
  width: 250px;
}

.docs-nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
}

.docs-nav h4 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.docs-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 15px;
  margin-left: -15px;
}

.docs-nav a:hover,
.docs-nav a.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.docs-content {
  margin-left: 300px;
}

.docs-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.docs-section h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gold);
}

.docs-section h3 {
  font-size: 1.4rem;
  color: var(--gold);
  margin: 25px 0 15px;
}

.docs-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 15px;
}

.docs-section ul {
  color: rgba(255, 255, 255, 0.8);
  padding-left: 25px;
  margin-bottom: 15px;
}

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

.docs-section code {
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 58, 90, 0.98);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .about-content,
  .service-detailed {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-detailed:nth-child(even) {
    direction: ltr;
  }
  
  .docs-sidebar {
    position: static;
    width: 100%;
    margin-bottom: 40px;
  }
  
  .docs-content {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .feature-number {
    font-size: 2.2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ocean-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}
