/* Enhanced CSS for MarineMonks Website */
:root {
  --primary-color: #0066cc;
  --secondary-color: #00b894;
  --accent-color: #ff6b6b;
  --accent-color-2: #fdcb6e;
  --accent-color-3: #6c5ce7;
  --light-bg: #f0f8ff;
  --dark-text: #1e3a5f;
  --light-text: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, #0066cc, #00b894);
  --gradient-secondary: linear-gradient(135deg, #ff6b6b, #fdcb6e);
}

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

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--light-bg);
}

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

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 700;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  z-index: 1001;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: rotate(5deg);
}

.logo-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.nav-links li {
  margin: 0 10px;
  position: relative;
}

.nav-links a {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

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

.auth-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  display: inline-block;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn:active {
  transform: translateY(-1px);
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
}

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

.btn-outline:hover {
  background-color: rgba(0, 102, 204, 0.05);
}

.btn-lg {
  padding: 12px 24px;
  font-size: 1.1rem;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-text);
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

/* Hero Section */
.hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(0, 184, 148, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--dark-text);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.badge::before {
  content: "🚢";
  margin-right: 8px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--dark-text);
  line-height: 1.2;
}

.hero h1 .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  font-size: 4rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #4a5568;
  line-height: 1.6;
}

.hero-buttons {
  margin-bottom: 60px;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 500;
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

.highlight {
  color: var(--primary-color);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform: translateY(0);
  cursor: pointer;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::before {
  opacity: 0.08;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: var(--secondary-color);
}

.feature-card h3 {
  color: var(--dark-text);
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.feature-card:hover h3 {
  color: var(--primary-color);
}

.feature-card p {
  color: #666;
  transition: all 0.3s ease;
}

.feature-card:hover p {
  color: #444;
}

/* Pain Points Section */
.pain-points {
  background-color: #f8f9fa;
}

.pain-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.pain-content {
  flex: 1;
}

.pain-box, .struggles-list, .time-pressure {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.pain-box:hover, .struggles-list:hover, .time-pressure:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pain-box h3, .struggles-list h3, .time-pressure h3 {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.pain-box h3 i, .struggles-list h3 i, .time-pressure h3 i {
  color: var(--accent-color);
  margin-right: 10px;
}

.struggles-list h3 i {
  color: var(--primary-color);
}

.time-pressure h3 i {
  color: var(--secondary-color);
}

.struggles-list ul {
  padding-left: 30px;
}

.struggles-list li {
  margin-bottom: 10px;
  position: relative;
}

.struggles-list li::before {
  content: "→";
  position: absolute;
  left: -20px;
  color: var(--primary-color);
}

.pain-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.pain-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pain-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}

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

/* Solution Section */
.solution {
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.solution h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.solution span {
  font-weight: 700;
}

.solution p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
}

.solution a {
  color: white;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.solution a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Benefits Section */
.benefits-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.benefits-content {
  flex: 1;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(10px);
}

.benefit-icon {
  background-color: rgba(0, 102, 204, 0.1);
  color: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  background-color: var(--primary-color);
  color: white;
  transform: rotate(10deg);
}

.benefit-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.benefit-text p {
  color: #555;
}

.benefits-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.benefits-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefits-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}

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

/* Success Rate Section */
.success-rate {
  background-color: #f8f9fa;
  text-align: center;
}

.success-rate-inner {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.success-rate h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.success-rate p {
  font-size: 1.2rem;
  color: #555;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1) rotate(10deg);
}

.testimonial-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-text);
}

.testimonial-info p {
  color: #777;
  font-size: 0.9rem;
}

.testimonial-text {
  margin-bottom: 20px;
  color: #555;
  font-style: italic;
}

.testimonial-rating {
  color: #fdcb6e;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  position: relative;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #e9f0f8;
}

.faq-question .fa-chevron-down {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .fa-chevron-down {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-item.active .faq-question {
  background-color: #e9f0f8;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 184, 148, 0.9) 100%), url('images/placeholder/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta .btn-primary {
  background-color: white;
  color: var(--primary-color);
}

.cta .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
  background-color: #1e3a5f;
  color: white;
  padding: 60px 0 30px;
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-logo img {
  margin-right: 10px;
}

.footer-col p {
  margin-bottom: 20px;
  opacity: 0.8;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer-col ul {
  list-style: none;
  padding: 0;
}

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

.footer-col ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info li i {
  margin-right: 10px;
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.6;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s forwards;
}

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

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

/* Paper and Probable Pages Specific Styles */
.page-header {
  background-color: var(--light-bg);
  padding: 60px 0 30px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 184, 148, 0.1) 100%);
  z-index: 0;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .pain-container, .benefits-container {
    flex-direction: column;
  }
  
  .benefits-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 20px 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
    width: 100%;
  }
  
  .nav-links a {
    width: 100%;
    padding: 12px 15px;
  }
  
  .auth-buttons {
    margin-left: auto;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h1 .highlight {
    font-size: 3rem;
  }
  
  .hero p {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  /* Overlay for mobile menu */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .menu-overlay.active {
    display: block;
  }
}

/* Additional Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

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

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

.pulse {
  animation: pulse 2s infinite;
}

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

.bounce {
  animation: bounce 2s infinite;
}

/* Hover Effects */
.hover-lift {
  transition: transform 0.3s ease;
}

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

.hover-scale {
  transition: transform 0.3s ease;
}

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

.hover-rotate {
  transition: transform 0.3s ease;
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}

/* Coming Soon Label */
.coming-soon {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 8px;
  animation: pulse 2s infinite;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.7;
}
