:root {
  --primary: #111111;
  --accent: #0A8FB3;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --border-gray: #E5E5E5;
  --text-muted: #5f6368;
  --shadow-sm: 0 10px 30px rgba(17, 17, 17, 0.05);
  --shadow-md: 0 18px 45px rgba(17, 17, 17, 0.08);
  --radius: 16px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary);
  background-color: var(--white);
  line-height: 1.7;
}

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

a:hover {
  color: #086d89;
}

img {
  max-width: 100%;
}

.section-padding {
  padding: 90px 0;
}

.section-light {
  background-color: var(--light-gray);
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 0;
}

.mini-title {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.topbar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.topbar a {
  color: rgba(255, 255, 255, 0.9);
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 229, 229, 0.9);
}

.navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  margin-right: 10px;
}

.navbar .nav-link {
  color: var(--primary);
  font-weight: 600;
  padding: 0.9rem 0.95rem;
  position: relative;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.55rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.btn-main {
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.btn-main:hover {
  background: #087795;
  border-color: #087795;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-main {
  border: 1px solid var(--border-gray);
  color: var(--primary);
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  border-radius: 10px;
  background: var(--white);
}

.btn-outline-main:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  background:
    linear-gradient(135deg, rgba(10, 143, 179, 0.06), rgba(255, 255, 255, 0.9)),
    var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: rgba(10, 143, 179, 0.07);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.35rem;
}

.hero p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 650px;
}

.hero-card,
.info-card,
.service-card,
.value-card,
.brand-card,
.contact-card,
.policy-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero-card:hover,
.info-card:hover,
.service-card:hover,
.value-card:hover,
.brand-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 143, 179, 0.08);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 143, 179, 0.1);
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.card-text,
.lead-muted {
  color: var(--text-muted);
}

.feature-panel {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.94));
  color: var(--white);
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--shadow-md);
}

.feature-panel p,
.feature-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.feature-badge {
  display: inline-block;
  color: var(--white);
  background: rgba(10, 143, 179, 0.22);
  border: 1px solid rgba(10, 143, 179, 0.4);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header {
  padding: 110px 0 65px;
  background: linear-gradient(135deg, rgba(10, 143, 179, 0.07), rgba(245, 245, 245, 0.9));
  border-bottom: 1px solid var(--border-gray);
}

.page-header h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 0;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
}

.list-check li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-gray);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list i {
  color: var(--accent);
  margin-top: 4px;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid var(--border-gray);
  padding: 0.9rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(10, 143, 179, 0.6);
  box-shadow: 0 0 0 0.25rem rgba(10, 143, 179, 0.12);
}

.map-placeholder {
  min-height: 320px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(10, 143, 179, 0.1), rgba(17, 17, 17, 0.04)),
    var(--light-gray);
  border: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.map-placeholder .icon-box {
  margin: 0 auto 1rem;
}

footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.76);
}

footer h5,
footer h6 {
  color: var(--white);
}

footer a {
  color: rgba(255, 255, 255, 0.82);
}

footer a:hover {
  color: var(--white);
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 1rem;
}

.footer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: rgba(10, 143, 179, 0.24);
  transform: translateY(-2px);
}

.small-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.border-top-subtle {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 991.98px) {
  .navbar .nav-link::after {
    display: none;
  }

  .hero {
    padding: 110px 0 70px;
  }

  .feature-panel {
    padding: 32px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 70px 0;
  }

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

  .hero-card,
  .info-card,
  .service-card,
  .value-card,
  .brand-card,
  .contact-card,
  .policy-card,
  .feature-panel {
    padding: 24px;
  }

  .topbar {
    display: none;
  }

  .footer-meta {
    flex-direction: column;
    gap: 10px;
  }
}


.brand-mark {
  display: none;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  margin-right: 12px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.footer-legal-note,
.legal-inline-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-inline-note {
  background: rgba(10, 143, 179, 0.06);
  border: 1px solid rgba(10, 143, 179, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
}

.footer-brand span {
  font-size: 1.25rem;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .brand-logo,
  .footer-logo {
    width: 48px;
    height: 48px;
  }
}


.hero {
  background:
    radial-gradient(circle at top right, rgba(10, 143, 179, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(22, 22, 22, 0.94));
  color: var(--white);
}

.hero::before {
  background: rgba(10, 143, 179, 0.16);
}

.hero p,
.hero .hero-media-text {
  color: rgba(255, 255, 255, 0.88);
}

.hero .btn-outline-main {
  background: rgba(255, 255, 255, 0.95);
}

.hero .hero-card,
.hero-media-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.hero-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
  display: block;
}

.hero-media-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(17,17,17,0.9), rgba(17,17,17,0.05));
  color: var(--white);
}

.hero-media-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bfe9f4;
  margin-bottom: 0.8rem;
}

.hero-media-title {
  font-size: 1.55rem;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.photo-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.photo-card-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.photo-card-lg .photo-card-img {
  min-height: 460px;
}

.brand-photo-card .photo-card-img {
  min-height: 280px;
}

.photo-card-caption {
  padding: 16px 18px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  background: var(--white);
}

@media (max-width: 991.98px) {
  .hero {
    padding: 90px 0 70px;
  }

  .hero .hero-media-card,
  .hero-media-image {
    min-height: 380px;
  }

  .photo-card-lg .photo-card-img,
  .photo-card-img {
    min-height: 260px;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .hero-media-card,
  .hero-media-image {
    min-height: 300px;
  }

  .hero-media-overlay {
    padding: 20px;
  }

  .hero-media-title {
    font-size: 1.2rem;
  }
}


.hero-media-card::after,
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.hero-media-card {
  background: rgba(255, 255, 255, 0.04);
}

.photo-card {
  position: relative;
}

.photo-card-img {
  filter: saturate(1.02) contrast(1.01);
}

.photo-card-caption strong {
  color: var(--primary-black);
}
