/* ==========================================
   HORIZON NAUTIQUE - MARITIME CSS
   Updated with Logo Color Palette
   ========================================== */

/* CSS Variables - UPDATED WITH LOGO COLORS */
:root {
  /* Primary Colors from Logo */
  --navy-dark: #1b3a5f;
  --navy-medium: #2d5080;
  --navy-light: #4a6fa5;
  --ocean-blue: #00a3e0;
  --ocean-light: #33b8e8;

  /* Supporting Colors */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-700: #374151;
  --gray-900: #111827;

  --font-display: "Playfair Display", serif;
  --font-body: "Lato", sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   MAP SECTION - UPDATED COLORS
   ========================================== */

.map-section {
  padding: 80px 0;
}

.svg-map-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
}

.svg-map {
  width: 100%;
  height: auto;
  display: block;
}

/* PIN - UPDATED WITH LOGO COLORS */
.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #00a3e0; /* Updated to logo light blue */
  border-radius: 50%;
  transform: translate(-50%, -100%);
  cursor: pointer;
  z-index: 2;
}

/* Pulse Ring - UPDATED */
.map-pin::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(0, 163, 224, 0.3); /* Updated to logo light blue */
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Tooltip - UPDATED */
.map-pin::before {
  content: attr(data-title) " – " attr(data-location);
  position: absolute;
  bottom: 160%;
  left: 50%;
  transform: translateX(-50%);
  background: #1b3a5f; /* Updated to logo navy */
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.map-pin:hover::before {
  opacity: 1;
}

.map-popup {
  position: absolute;
  background: #ffffff;
  color: var(--navy-dark);
  padding: 16px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(27, 58, 95, 0.15); /* Updated shadow */
  min-width: 220px;
  max-width: 280px;
  transform: translate(-50%, -110%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 6;
}

.map-popup.visible {
  opacity: 1;
  pointer-events: auto;
}

.map-popup::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%) rotate(45deg);
}

.map-popup-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.map-popup-location {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.map-popup-desc {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 12px;
  line-height: 1.5;
}

.map-popup-btn {
  display: inline-block;
  padding: 10px 14px;
  background: var(--ocean-blue);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 163, 224, 0.3); /* Updated shadow */
}

.map-popup-btn:hover {
  background: var(--ocean-light);
}

/* ==========================================
   NAVIGATION - UPDATED COLORS & LARGER LOGO
   ========================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 251, 251, 0.95);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(27, 58, 95, 0.15); /* Updated shadow */
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px; /* Increased from 80px to accommodate larger logo */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
}

/* LARGER LOGO SIZE */
.nav-logo img,
.nav-logo .logo-img {
  height: 100px; /* Increased from 80px in your original to 70px for better proportion */
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 24px;
}

.lang-btn {
  border: 1px solid var(--gray-200);
  background: transparent;
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lang-btn.active {
  background: var(--ocean-blue); /* Updated to logo blue */
  color: var(--white);
  border-color: var(--ocean-blue);
}

.nav-menu a {
  color: var(--navy-dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ocean-blue); /* Updated to logo blue */
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--ocean-blue); /* Updated to logo blue */
}

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

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

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--navy-dark);
  transition: var(--transition);
}

/* Dropdown Menu Styles */

/* Parent item that has dropdown */
.nav-menu .has-dropdown {
  position: relative;
}

/* Dropdown menu container */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: linear-gradient(135deg, #1a3e5c 0%, #0f2942 100%);
  min-width: 280px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 16px 0;
  margin-top: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Dropdown arrow */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #1a3e5c;
}

/* Show dropdown on hover */
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown menu items */
.dropdown-menu li {
  list-style: none;
  margin: 4px 12px;
}

.dropdown-menu li a {
  display: block;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(180deg, #4a9eff 0%, #2563eb 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 28px;
  color: #4a9eff;
}

.dropdown-menu li a:hover::before {
  transform: scaleY(1);
}

/* Add a small arrow indicator to parent menu item */
.has-dropdown > a::after {
  content: "";
  display: none;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.has-dropdown:hover > a::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    /* background: #f8fafc; */
    border-radius: 0;
    margin-top: 0;
    padding: 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-dropdown.active .dropdown-menu {
    max-height: 300px;
  }

  .dropdown-menu li a {
    padding: 10px 20px 10px 40px;
    font-size: 14px;
  }

  .dropdown-menu li a:hover {
    padding-left: 44px;
  }

  .has-dropdown > a::after {
    float: right;
    margin-top: 4px;
  }
}
/* ==========================================
   HERO SECTION - UPDATED COLORS
   ========================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 90px; /* Updated to match new nav height */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 58, 95, 0.75) 0%,
    /* Updated to logo navy */ rgba(27, 58, 95, 0.5) 100%
  );
  z-index: 0;
}

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

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 58, 95, 0.85) 0%,
    /* Updated to logo navy */ rgba(45, 80, 128, 0.75) 50%,
    /* Updated to medium navy */ rgba(0, 163, 224, 0.3) 100%
      /* Updated to logo blue */
  );
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--navy-dark) 25%, transparent 25%),
    linear-gradient(-45deg, var(--navy-dark) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--navy-medium) 75%),
    linear-gradient(-45deg, transparent 75%, var(--navy-medium) 75%);
  background-size: 60px 60px;
  background-position:
    0 0,
    0 30px,
    30px -30px,
    -30px 0px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 900px;
  margin: 0 auto;
}

.hero-text {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
}

.title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--gray-200);
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gray-200);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeIn 1s ease-out 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--ocean-blue), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ==========================================
   BUTTONS - UPDATED COLORS
   ========================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--ocean-blue); /* Updated to logo blue */
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 163, 224, 0.3); /* Updated shadow */
}

.btn-primary:hover {
  background: var(--ocean-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 163, 224, 0.4); /* Updated shadow */
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy-dark);
}

.btn-full {
  width: 100%;
}

/* ==========================================
   SECTIONS - UPDATED COLORS
   ========================================== */

section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ocean-blue); /* Updated to logo blue */
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-header {
  margin-bottom: 60px;
}

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

.section-header-centered p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-700);
}

/* ==========================================
   INTRODUCTION SECTION
   ========================================== */

.introduction {
  background: var(--gray-50);
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-700);
}

/* ==========================================
   SERVICES SECTION - UPDATED COLORS
   ========================================== */

.services {
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--ocean-blue); /* Updated to logo blue */
  box-shadow: 0 12px 32px rgba(27, 58, 95, 0.08); /* Updated shadow */
  transform: translateY(-4px);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 163, 224, 0.1); /* Updated to logo blue */
  color: var(--ocean-blue);
  border-radius: 12px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.service-card p {
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-link {
  color: var(--ocean-blue); /* Updated to logo blue */
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  gap: 12px;
}

/* ==========================================
   STATS SECTION - UPDATED COLORS
   ========================================== */

.stats {
  background: var(--navy-dark);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--ocean-blue); /* Updated to logo blue */
  margin-bottom: 8px;
}

.stat-number::after {
  content: "+";
}

.stat-label {
  font-size: 16px;
  color: var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================
   TEAM SECTION - UPDATED COLORS
   ========================================== */

.team {
  background: var(--gray-50);
}

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

.team-member {
  text-align: center;
}

.member-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-medium), var(--ocean-blue));
  border: 4px solid var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.member-title {
  color: var(--ocean-blue); /* Updated to logo blue */
  font-weight: 600;
  margin-bottom: 8px;
}

.member-bio {
  color: var(--gray-700);
  font-size: 14px;
}

/* ==========================================
   VALUES SECTION
   ========================================== */

.values {
  background: var(--white);
}

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

.value-block {
  margin-bottom: 40px;
}

.value-block h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.value-block p {
  color: var(--gray-700);
  line-height: 1.7;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.value-item {
  display: flex;
  gap: 20px;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 163, 224, 0.1); /* Updated to logo blue */
  color: var(--ocean-blue);
  border-radius: 8px;
}

.value-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.value-item p {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================
   CTA SECTION - UPDATED COLORS
   ========================================== */

.cta {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-medium) 100%
  );
  color: var(--white);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  color: var(--gray-200);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   FOOTER - UPDATED COLORS & LARGER LOGO
   ========================================== */

.footer {
  background: var(--navy-dark);
  color: var(--gray-200);
  padding: 80px 0 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* LARGER FOOTER LOGO */
.footer-logo .logo-img {
  height: 80px; /* Increased from 60px */
  width: auto;
  display: block;
  background: white;
  padding: 8px;
  border-radius: 8px;
}

.footer-logo svg {
  color: var(--ocean-blue);
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a:hover {
  color: var(--ocean-blue); /* Updated to logo blue */
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 163, 224, 0.2); /* Updated to logo blue */
  border-radius: 6px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--ocean-blue); /* Updated to logo blue */
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

/* ==========================================
   PAGE HERO (Service Pages) - UPDATED COLORS
   ========================================== */

.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-medium) 100%
  );
  margin-top: 90px; /* Updated to match new nav height */
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      45deg,
      transparent 48%,
      rgba(255, 255, 255, 0.03) 49%,
      rgba(255, 255, 255, 0.03) 51%,
      transparent 52%
    ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(255, 255, 255, 0.03) 49%,
      rgba(255, 255, 255, 0.03) 51%,
      transparent 52%
    );
  background-size: 40px 40px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 58, 95, 0.7) 0%,
    /* Updated to logo navy */ rgba(45, 80, 128, 0.5) 100%
  );
}

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

.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 20px;
  color: var(--gray-200);
  max-width: 700px;
}

/* ==========================================
   SERVICE PAGES
   ========================================== */

.service-intro {
  padding: 80px 0;
  background: var(--white);
}

.intro-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.lead-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--gray-700);
}

.subsection-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-dark);
  text-align: center;
  margin-bottom: 48px;
}

/* Principles Section - UPDATED COLORS */
.principles {
  background: var(--gray-50);
}

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

.principle-card {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.principle-card:hover {
  border-color: var(--ocean-blue); /* Updated to logo blue */
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 58, 95, 0.08); /* Updated shadow */
}

.principle-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 163, 224, 0.1); /* Updated to logo blue */
  color: var(--ocean-blue);
  border-radius: 50%;
}

.principle-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.principle-card p {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
}

/* Services Scope - UPDATED COLORS */
.services-scope {
  background: var(--white);
}

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

.scope-card {
  position: relative;
  padding: 32px;
  border-left: 4px solid var(--ocean-blue); /* Updated to logo blue */
  background: var(--gray-50);
  border-radius: 8px;
  transition: var(--transition);
}

.scope-card:hover {
  background: var(--white);
  box-shadow: 0 12px 32px rgba(27, 58, 95, 0.08); /* Updated shadow */
  transform: translateX(8px);
}

.scope-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(0, 163, 224, 0.2); /* Updated to logo blue */
  position: absolute;
  top: 20px;
  right: 20px;
}

.scope-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.scope-card p {
  color: var(--gray-700);
  line-height: 1.7;
}

/* Experience Section - UPDATED COLORS */
.experience {
  background: var(--gray-50);
}

.experience-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.experience-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.experience-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.exp-stat {
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border-left: 4px solid var(--ocean-blue); /* Updated to logo blue */
}

.exp-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--ocean-blue); /* Updated to logo blue */
  margin-bottom: 8px;
}

.exp-label {
  color: var(--gray-700);
  font-weight: 600;
}

/* Team Expertise - UPDATED COLORS */
.team-expertise {
  background: var(--white);
}

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

.expertise-image {
  height: 400px;
  background: linear-gradient(135deg, var(--navy-medium), var(--ocean-blue));
  border-radius: 12px;
}

.expertise-content p {
  margin-bottom: 24px;
  line-height: 1.8;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expertise-list li {
  padding-left: 32px;
  position: relative;
  color: var(--gray-700);
}

.expertise-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--ocean-blue); /* Updated to logo blue */
  font-weight: 700;
}

/* Service CTA - UPDATED COLORS */
.service-cta {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-medium) 100%
  );
}

.cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 18px;
  color: var(--gray-200);
  margin-bottom: 32px;
}

/* ==========================================
   STS OPERATIONS PAGE - UPDATED COLORS
   ========================================== */

.sts-hero {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-light) 100%
  );
}

.sts-features {
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.feature-item {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--ocean-blue); /* Updated to logo blue */
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27, 58, 95, 0.08); /* Updated shadow */
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 163, 224, 0.1); /* Updated to logo blue */
  color: var(--ocean-blue);
  border-radius: 50%;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.feature-item p {
  color: var(--gray-700);
  font-size: 14px;
  line-height: 1.6;
}

/* Why Choose */
.why-choose {
  background: var(--white);
}

.why-content {
  max-width: 1000px;
  margin: 0 auto;
}

.why-text {
  text-align: center;
  margin-bottom: 60px;
}

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

.why-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.why-item p {
  color: var(--gray-700);
  line-height: 1.7;
}

/* Locations - UPDATED COLORS */
.locations {
  color: var(--ocean-blue);
}

.locations .section-title {
  color: var(--ocean-blue);
}

.locations .section-label {
  color: var(--ocean-blue);
}

.locations-map {
  margin-top: 60px;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.map-placeholder svg {
  width: 100%;
  height: 100%;
}

/* ==========================================
   EQUIPMENT PAGE - UPDATED COLORS
   ========================================== */

.equipment-hero {
  background: linear-gradient(
    135deg,
    var(--navy-medium) 0%,
    var(--navy-light) 100%
  );
}

.importance {
  background: var(--white);
}

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

.importance-card {
  position: relative;
  padding: 32px;
  background: var(--gray-50);
  border-radius: 12px;
  border-top: 4px solid var(--ocean-blue); /* Updated to logo blue */
  transition: var(--transition);
}

.importance-card:hover {
  background: var(--white);
  box-shadow: 0 12px 32px rgba(27, 58, 95, 0.08); /* Updated shadow */
  transform: translateY(-4px);
}

.importance-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(0, 163, 224, 0.1); /* Updated to logo blue */
  position: absolute;
  top: -20px;
  right: 20px;
}

.importance-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.importance-card p {
  color: var(--gray-700);
  line-height: 1.7;
}

/* Equipment Services - UPDATED COLORS */
.equipment-services {
  background: var(--gray-50);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.equipment-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.equipment-card:hover {
  border-color: var(--ocean-blue); /* Updated to logo blue */
  box-shadow: 0 12px 32px rgba(27, 58, 95, 0.08); /* Updated shadow */
  transform: translateY(-4px);
}

.equipment-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 163, 224, 0.1); /* Updated to logo blue */
  color: var(--ocean-blue);
  border-radius: 12px;
  margin-bottom: 24px;
}

.equipment-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
}

.equipment-card p {
  color: var(--gray-700);
  line-height: 1.7;
}

/* Integration - UPDATED COLORS */
.integration {
  background: var(--white);
}

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

.integration-image {
  height: 400px;
  background: linear-gradient(135deg, var(--navy-medium), var(--ocean-blue));
  border-radius: 12px;
}

.integration-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Support Team - UPDATED COLORS */
.support-team {
  background: var(--gray-50);
}

.team-content {
  max-width: 900px;
  margin: 0 auto;
}

.team-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 40px;
  text-align: center;
}

.team-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--ocean-blue); /* Updated to logo blue */
}

.highlight-item svg {
  flex-shrink: 0;
  color: var(--ocean-blue);
}

.highlight-item span {
  font-weight: 600;
  color: var(--navy-dark);
}

/* Benefits - UPDATED COLORS */
.benefits {
  background: var(--white);
}

.benefits-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: 12px;
  transition: var(--transition);
}

.benefit-item:hover {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(27, 58, 95, 0.08); /* Updated shadow */
}

.benefit-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 163, 224, 0.1); /* Updated to logo blue */
  color: var(--ocean-blue);
  border-radius: 50%;
}

.benefit-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.benefit-text p {
  color: var(--gray-700);
  font-size: 14px;
}

/* ==========================================
   CONTACT PAGE - UPDATED COLORS
   ========================================== */

.contact-hero {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--ocean-blue) 100%
  );
}

.contact-intro {
  padding: 60px 0;
  background: var(--gray-50);
}

.contact-intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  color: var(--gray-700);
}

.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
}

/* Contact Form - UPDATED COLORS */
.contact-form-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

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

.form-group label {
  font-weight: 600;
  color: var(--navy-dark);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ocean-blue); /* Updated to logo blue */
  box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.1); /* Updated shadow */
}

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

.form-message {
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Contact Info - UPDATED COLORS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 20px;
}

.info-item,
.location-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.info-icon,
.location-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 163, 224, 0.1); /* Updated to logo blue */
  color: var(--ocean-blue);
  border-radius: 8px;
}

.info-item strong,
.location-item strong {
  display: block;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.info-item p,
.location-item p {
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
}

.social-links-large {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: 8px;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(0, 163, 224, 0.1); /* Updated to logo blue */
  color: var(--ocean-blue);
}

.social-link svg {
  flex-shrink: 0;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background: var(--gray-50);
}

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

.map-subtitle {
  text-align: center;
  color: var(--gray-700);
  font-size: 18px;
  margin-bottom: 60px;
}

.google-map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.google-map-iframe {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(27, 58, 95, 0.15); /* Updated shadow */
  display: block;
}

/* Location Cards - UPDATED COLORS */
.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.location-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(27, 58, 95, 0.08); /* Updated shadow */
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  gap: 20px;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 58, 95, 0.12); /* Updated shadow */
  border-color: var(--ocean-blue); /* Updated to logo blue */
}

.location-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(0, 163, 224, 0.1); /* Updated to logo blue */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean-blue);
}

.location-card-content {
  flex: 1;
}

.location-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.location-card-content p {
  color: var(--gray-700);
  margin-bottom: 4px;
  line-height: 1.6;
}

.location-card-content strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.location-address {
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.location-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ocean-blue); /* Updated to logo blue */
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.location-link:hover {
  gap: 10px;
  color: var(--ocean-light);
}

/* Map Links - UPDATED COLORS */
.map-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--ocean-blue); /* Updated to logo blue */
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 163, 224, 0.3); /* Updated shadow */
}

.map-link-btn:hover {
  background: var(--ocean-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 163, 224, 0.4); /* Updated shadow */
}

.map-link-btn svg {
  flex-shrink: 0;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

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

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

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1.5);
  }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
  .values-content,
  .experience-content,
  .expertise-wrapper,
  .integration-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .nav-container {
    height: 80px; /* Slightly smaller on mobile */
  }

  .nav-logo img,
  .nav-logo .logo-img {
    height: 60px; /* Smaller logo on mobile */
  }

  .footer-logo .logo-img {
    height: 65px; /* Smaller footer logo on mobile */
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--navy-dark);
    flex-direction: column;
    padding: 40px;
    transition: left 0.3s ease;
  }

  .lang-switch {
    margin-left: 0;
    margin-right: 16px;
  }

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

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

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 600px;
    margin-top: 80px;
  }

  .page-hero {
    margin-top: 80px;
  }

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

  .btn {
    width: 100%;
  }

  section {
    padding: 60px 0;
  }

  .services-grid,
  .stats-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav-logo img,
  .nav-logo .logo-img {
    height: 55px;
  }

  .footer-logo .logo-img {
    height: 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .page-title {
    font-size: 32px;
  }
}

/* ==========================================
   LOGO SIZE UTILITY CLASSES
   ========================================== */

.logo-img {
  display: block;
  height: 70px;
  width: auto;
}

.footer .logo-img {
  height: 80px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 60px;
  }

  .footer .logo-img {
    height: 65px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 55px;
  }

  .footer .logo-img {
    height: 60px;
  }
}
