:root {
  --main-blue: #0b4f6c;
  --teal: #0e9594;
  --light-teal: #56c4c4;
  --gold: #d4af37;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --dark-gray: #343a40;
  --text-dark: #10242b;
  --page-max: 1200px;
  --radius: 8px;
  --shadow: 0 4px 14px rgba(11, 79, 108, 0.08);
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;
}

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

/* ===== LAYOUT UTILITIES ===== */
.container {
  width: 90%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 2rem 0;
}

section {
  padding: 4rem 0;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(11, 79, 108, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 0;
}

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

.logo {
  height: 50px;
  display: inline-block;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--main-blue);
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav a {
  color: var(--main-blue);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
}

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

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 50%;
  height: 3px;
  background: var(--teal);
  border-radius: 3px;
  transform: translateX(-50%);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(rgba(11, 79, 108, 0.85), rgba(11, 79, 108, 0.85)),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 6rem 0;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: #c19d2e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  margin-left: 1rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--main-blue);
  margin-bottom: 1rem;
}

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

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--white);
}

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

.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--teal);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(11, 79, 108, 0.12);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

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

/* ===== SECTORS SECTION ===== */
.sectors {
  background: linear-gradient(to bottom, var(--off-white) 0%, var(--white) 100%);
}

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

.sector-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-10px);
}

.sector-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.sector-content {
  padding: 1.5rem;
}

.sector-content h3 {
  color: var(--main-blue);
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.sector-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sector-link:hover {
  color: var(--gold);
}

.sector-link i {
  margin-left: 5px;
}

/* ===== GLOBAL PRESENCE ===== */
.global-presence {
  background: var(--main-blue);
  color: var(--white);
}

.global-presence .section-title h2 {
  color: var(--white);
}

.global-presence .section-title p {
  color: rgba(255, 255, 255, 0.9);
}

.map-container {
  position: relative;
  height: 500px;
  background: #0a435f url(images/map.jpg) no-repeat center center;
  background-size: cover; /* Changed from fixed to cover */
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem auto;
  max-width: 900px;
}

.map-point {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}

.map-point:hover {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 0 0 12px rgba(212, 175, 55, 0.4);
}

.map-point::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 2px;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(10px, -50%);
  opacity: 0.5;
}

.map-point.active {
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(14, 149, 148, 0.3);
}

.map-point.active::after {
  background: var(--teal);
}

.location-info {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 300px;
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-info.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.location-info h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.location-info p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: var(--white);
}

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

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--main-blue);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  background: linear-gradient(to right, var(--teal), var(--light-teal));
  color: var(--white);
  text-align: center;
  padding: 4rem 0;
}

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

/* ===== FOOTER ===== */
footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--page-max);
  margin: 0 auto;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 300px;
}

.footer-column h4 {
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--teal);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.office {
  display: flex;
  flex-direction: column;
}

.office strong {
  color: var(--light-teal);
  margin-bottom: 5px;
}

.office p {
  font-size: 0.92rem;
  line-height: 1.5;
  opacity: 0.9;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links a i {
  color: var(--teal);
  width: 20px;
}

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

/* Responsive Design */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-column:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column:last-child {
    grid-column: auto;
  }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  .nav {
    gap: 0.8rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .btn {
    display: block;
    margin: 1rem auto;
    width: 80%;
    max-width: 300px;
    padding: 0.75rem 1.5rem;
  }

  .btn-outline {
    margin-left: 0;
  }

  .map-container {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    padding: 1rem 0;
  }

  .nav {
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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