@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@400;700&display=swap');

:root {
  --primary-blue: #0A192F;
  --secondary-blue: #112B54;
  --accent-orange: #FF6B00;
  --accent-orange-hover: #E66000;
  --text-dark: #1A1A1A;
  --text-light: #F8F9FA;
  --bg-light: #F4F7F6;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease-in-out;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Call to Action Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

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

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

.icon {
  margin-right: 8px;
  font-size: 1.2em;
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 15px 0;
}

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  font-family: 'Outfit', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--secondary-blue);
  font-size: 1rem;
  transition: var(--transition);
}

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

.header-cta .btn {
  padding: 10px 24px;
  font-size: 1rem;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-blue);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: flex-start;
  padding-top: 20vh;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-ctas {
  display: flex;
  gap: 20px;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 50px;
}

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 0, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-blue);
}

.service-card p {
  color: #555;
  margin-bottom: 20px;
}

.service-link {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Trust Banner */
.trust-banner {
  background: var(--secondary-blue);
  color: var(--white);
  padding: 50px 0;
  text-align: center;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item h4 {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.8;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

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

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.phone-display {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 20px;
}

/* Footer & Legal */
footer {
  background: #050E1A;
  color: var(--white);
  padding: 80px 0 30px;
}

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

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col p,
.footer-col a {
  color: #A0AEC0;
  line-height: 1.8;
  margin-bottom: 10px;
  display: block;
  font-size: 0.95rem;
}

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

.legal-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #A0AEC0;
  margin-top: 30px;
  border-left: 4px solid var(--accent-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #718096;
  font-size: 0.9rem;
}

/* Pages (Legal/Policies/Contact) */
.page-header {
  background: var(--primary-blue);
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
}

.page-content {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2,
.page-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-blue);
}

.page-content p,
.page-content ul {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #4A5568;
}

.page-content ul {
  padding-left: 20px;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.info-item {
  display: flex;
  margin-bottom: 30px;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--accent-orange);
  margin-right: 20px;
}

.info-detail h4 {
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.info-detail p {
  color: #4A5568;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #CBD5E0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .trust-stats {
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }

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

  .header-cta {
    display: none;
  }

  .hero {
    height: auto;
    padding: 120px 0 80px;
    text-align: center;
  }

  .hero::before {
    background: rgba(10, 25, 47, 0.7);
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-ctas {
    flex-direction: column;
    justify-content: center;
  }

  .phone-display {
    font-size: 1.8rem;
    padding: 10px 20px;
  }
}

/* Additional Enhancements */
.cruise-brand {
  font-weight: 800;
  color: var(--secondary-blue);
  font-size: 1.1rem;
  opacity: 0.7;
  transition: var(--transition);
}

.cruise-brand:hover {
  opacity: 1;
  color: var(--accent-orange);
}

.floating-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: var(--accent-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
  z-index: 999;
  text-decoration: none;
  animation: float-btn 3s ease-in-out infinite;
}

@keyframes float-btn {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.blob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 107, 0, 0.5);
  border-radius: 50%;
  z-index: -1;
  animation: pulse-blob 2s infinite;
}

@keyframes pulse-blob {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.urgent-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -150vh);
  background: var(--white);
  border-left: 5px solid var(--accent-orange);
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 30px;
  z-index: 998;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 95%;
  max-width: 800px;
}

.urgent-banner.show {
  transform: translate(-50%, -50%);
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background: #4CAF50;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
  }
}

.urgent-content p {
  margin: 0;
  font-size: 1.25rem;
}

.banner-btn {
  padding: 14px 28px;
  font-size: 1.25rem;
  white-space: nowrap;
}

.close-banner-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #999;
}

@media (max-width: 768px) {
  .urgent-banner {
    flex-direction: column;
    text-align: center;
    width: 90%;
  }

  .floating-bottom-bar {
    font-size: 1.2rem;
    padding: 12px 0;
  }
}

/* Flat Sticky Bottom Bar */
.floating-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--accent-orange);
  color: var(--white);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 800;
  z-index: 999;
  text-decoration: none;
  box-shadow: 0 -4px 20px rgba(255, 107, 0, 0.4);
  transition: var(--transition);
}

.floating-bottom-bar:hover {
  background-color: var(--accent-orange-hover);
  color: var(--white);
}

.shake-icon {
  margin-right: 15px;
  animation: shake 2s infinite;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }

  75% {
    transform: rotate(10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}