@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* =======================
   Root Variables
======================= */
:root {
  --background-color: #ffffff;
  --primary-color: #023e8a;
  --accent-color: #ff6b6b;
  --sec-color: #0077b6;
  --font-main: "Montserrat", sans-serif;
  --font-sec: "Open Sans", sans-serif;
  --side-margin-desktop: 30px;
  --side-margin-mobile: 15px;
}

/* =======================
   Global Reset
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: var(--font-sec);
  background: var(--background-color);
  color: #333;
  overflow-x: hidden;
}
/* Heading */
h1,
h2,
h3,
h4 {
  font-family: var(--font-main);
  margin-bottom: 15px;
}

/* Somer Colors  */
.white_color_text {
  color: var(--background-color);
}
.primary_color_text {
  color: var(--primary-color);
}
.black_color_text {
  color: #333;
}
/* Links and Buttons */
a,
.btn {
  font-family: var(--font-sec);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  display: inline-block;
}

.btn--accent {
  background: var(--accent-color);
  color: #fff;
}
.btn--accent:hover {
  background: #e63946;
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--sec-color);
  color: #fff;
}
.btn--secondary:hover {
  background: #023e8a;
  transform: translateY(-2px);
}

.card {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* =======================
   Topbar
======================= */
.topbar {
  background: #e9ecef;
  /* light gray */
  font-size: 0.85rem;
  color: #222;
  border-bottom: 1px solid #ccc;
  font-family: var(--sec-font);
}

.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar__contacts,
.topbar__email {
  display: flex;
  flex-wrap: wrap;
  margin: 0.2rem 0;
}
.topbar__contacts span,
.topbar__email {
  margin-right: 15px;
  font-family: var(--sec-font);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
}
.topbar__contacts span a,
.topbar__email span a {
  text-decoration: none;
  color: #333;
  transition: all 0.5s ease-in-out;
}
.topbar__contacts span a:hover,
.topbar__email span a:hover {
  color: #e63946;
}
/* ===================
 Header Base 
=================== */
.site-header {
  background: #023e8a;
  position: relative;
  z-index: 1000;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 var(--side-margin-desktop);
  padding: 12px 20px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}
.header__text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__text_divider {
  background: #aaaaaa;
  width: 2px;
  height: 35px;
  border-radius: 1.25rem;
}
.company-name {
  font-size: 1.25rem /* 20px */;
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-family: var(--main-font);
  letter-spacing: 1px;
}

.company-name span {
  display: block;
  font-size: 0.938rem /* 15px */;
  font-weight: 400;
  letter-spacing: 12.6px;
  font-family: var(--sec-font);
}

.company-cert {
  font-size: 0.938rem /*15 px*/;
  color: var(--background-color);
  margin-top: 2px;
  margin-left: 0.513rem;
  font-size: 0.938rem;
  font-family: var(--sec-font);
  letter-spacing: 0.3px;
}

/* ===================
 Navigation 
=================== */
.site-nav {
  transition: transform 0.3s ease-in-out;
}

.site-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  font-family: var(--main-font);
}

.site-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  transition: color 0.2s ease;
  text-decoration: none;
}

.site-nav a:hover {
  color: #ff6b6b;
}

/* ===================
 Hamburger Menu 
=================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =======================
   Hero Section
======================= */
.hero {
  position: relative;
  background: url("/assets/images/hero_ship.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dark overlay for contrast */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(2, 62, 138, 0.85); navy overlay */
  background: rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: left;
  color: #fff;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: var(--main-font);
  letter-spacing: 0.72px;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #f1f1f1;
  letter-spacing: 1px;
}
/* 
.btn {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--sec-font);
  font-size: 1rem;
  letter-spacing: 3px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn--accent {
  background: #ff6b6b;
  color: #fff;
}

.btn--accent:hover {
  background: #e63946;
  transform: translateY(-2px);
} */

/* Wave Divider */
.wave-divider {
  position: absolute;
  bottom: -1px; /* ensures no gap */
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100px;
  transform: rotate(180deg); /* makes white cut into hero */
}
/* =======================
   Stats Section
======================= */
.stats {
  background: #fff;
  padding: 30px 15px;
}

.stats__inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: #e9f1fc;
  border: 2px solid #023e8a;
  padding: 20px 25px;
  flex: 1 1 250px;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

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

.stat-card h3 {
  font-size: 2rem;
  color: #023e8a;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: var(--main-font);
}

.stat-card p {
  font-size: 0.95rem;
  color: #333;
  font-family: var(--sec-font);
}
/* =======================
   About Overview
======================= */
.about {
  width: 100%;
  padding: 0.625rem;
  margin: 1rem 0;
}
.about__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.about__media {
  flex-basis: 30%;
  position: relative;
}
.about__media img {
  width: 20rem;
  height: 20rem;
  object-fit: cover;
  border-radius: 10px;
}
.about__media img:nth-child(2) {
  position: absolute;
  top: 10%;
  left: 10%;
  z-index: 1;
  box-shadow: 0px 4px 6px 2px rgba(0, 0, 0, 0.66);
}
.about__content {
  flex: 1;
  padding: 1rem;
  width: 40rem;
  height: 26rem;
  border-radius: 10px;
  box-shadow: 0px 4px 6px 2px rgba(0, 0, 0, 0.66);
}
.section__title {
  font-family: var(--sec-font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #333;
  text-transform: capitalize;
  margin: 0.625rem;
}
.under__lines {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b 0%, rgba(153, 64.2, 64.2, 0) 100%);
  border-radius: 15px;
  margin: 0.625rem 0;
}
.about__content_overview {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--sec-font);
  letter-spacing: 2px;
  margin-top: 1rem;
}
.about__content .btn {
  background-color: #3f8ff4;
  color: #fff;
  margin-top: 1rem;
  transition: all 0.5s ease;
}
.about__content .btn:hover {
  background-color: #023e8a;
  transform: translateY(-5%);
}
/* =======================
   Key Strength
======================= */
.key_strength {
  width: 100%;
  margin: 0.625rem 0;
  background-color: #3f8ff4;
  padding: 1.625rem 0;
}
.key_s__row {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.strength__box {
  width: 15rem;
  height: 6rem;
  display: inline-flex;
  background-color: #ffffff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.35);
  animation: scroll-left 40s linear infinite;
  border-radius: 10px;
  margin: 0.625rem;
  padding: 0.625rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.strength__box p {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: var(--sec-font);
  font-size: 1rem;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.key__move__opposite .strength__box {
  animation: scroll-right 40s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* =======================
   Services Overview
======================= */

/* .service_overview {
} */
.service_overview_inner {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 55px auto;
}
.service__card {
  position: relative;
  border-radius: 10px;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin: 0 20px;
}

/* make image dynamic & responsive */
.service__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps aspect ratio but covers */
  z-index: 0;
  transition: transform 0.5s ease;
}

/* black overlay */
.service__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* text style */
.service__card h3 {
  position: absolute;
  bottom: 20px;
  color: #ffffff;
  font-family: var(--sec-font);
  font-weight: 600;
  letter-spacing: 1.8px;
  font-size: 1.1rem;
  text-align: center;
  text-transform: capitalize;
  transition: all 0.5s ease;
  z-index: 2; /* keep above overlay */
}

/* hover overlay + card movement */
.service__card:hover::before {
  opacity: 1;
}
.service__card:hover {
  box-shadow: -10px 10px 0px rgba(0, 0, 0, 0.35);
  transform: translateY(-20px);
}

/* move text to center on hover */
.service__card:hover h3 {
  bottom: 50%;
  transform: translateY(50%);
}
.view_all_service {
  margin: 1.56rem 0;
}
/* =======================
   Our Client Overview
======================= */
.clients_overview_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 20px 0;
}
.linear_view_client_section {
  width: 100%;
  margin: 10px 0;
  white-space: nowrap;
}
.linear_view_client_section img {
  width: 3.72rem;
  height: 3.72rem;
  margin: 0 1.25rem;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
  animation: scroll-right 10s linear infinite;
}

.linear_view_client_section img:hover {
  filter: grayscale(0%);
}
/* =======================
   Footer
======================= */

.site-footer {
  background: #023e8a;
  color: #fff;
  position: relative;
  padding-top: 40px;
  margin-top: 0;
}

/* Wave on top of footer */
.wave-footer {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.wave-footer svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Footer Content */
.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 30px;
}

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

.footer__col h4 {
  position: relative;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  font-family: var(--sec-font);
  margin-bottom: 15px;
  padding-bottom: 5px;
  /* border-bottom: 2px solid linear-gradient(to right, #3f8ff4, transparent); */
}
.footer__col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #3f8ff4, transparent);
}
.footer__col address a {
  text-decoration: none;
  font-family: var(--sec-font);
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  line-height: 2;
}
.footer__col address,
.footer__col ul {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  font-family: var(--sec-font);
  margin: 0;
  padding: 0;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  font-family: var(--sec-font);
}

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

.footer__col ul li a {
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.footer__col ul li a:hover {
  color: #ff6b6b;
}

.footer__bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 0.9rem;
  color: #ffffffcc;
  font-family: var(--sec-font);
}

/* =======================
   About Page
======================= */

.about_pg_container p {
  margin-bottom: 15px;
}

.about_pg_container {
  margin: auto;
}

/* Hero with parallax */
.about_pg_hero {
  height: 70vh;
  background: url("https://cdn.pixabay.com/photo/2013/05/21/14/32/russia-112445_960_720.jpg")
    center/cover no-repeat fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.about_pg_hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.about_pg_hero-content {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}
.about_pg_hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.about_pg_hero p {
  font-size: 1.2rem;
}

/* Sections */
.about_pg_container section {
  padding: 70px 0;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}
.about_pg_container section.reveal {
  opacity: 1;
  transform: translateY(0);
}
.about_pg_container section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

/* Story */
.about_pg_story {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

/* Mission */

.about_pg_mission-vision {
  background: linear-gradient(135deg, #023e8a, #0077b6);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.about_pg_mission-vision .about_pg_section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
}
.about_pg_section-title {
  color: var(--background-color);
}

.about_pg_mv-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.about_pg_mv-card {
  background: #ffffff10;
  backdrop-filter: blur(6px);
  border-radius: 15px;
  padding: 30px;
  max-width: 350px;
  flex: 1 1 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about_pg_mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.about_pg_mv-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Service Summary */
.about_pg_service-summary {
  max-width: 700px;
  margin: auto;
  text-align: center;
}
.about_pg_service-summary p {
  font-size: 1.05rem;
}

/* Timeline */
.about_pg_timeline {
  position: relative;
  margin: auto;
  max-width: 600px;
}
.about_pg_timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #023e8a;
  transform: translateX(-50%);
}
.about_pg_event {
  position: relative;
  width: 50%;
  padding: 20px;
}
.about_pg_event.left {
  left: 0;
  text-align: right;
}
.about_pg_event.right {
  left: 50%;
}
.about_pg_event::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #023e8a;
  border-radius: 50%;
}
.about_pg_event.left::before {
  right: -10px;
}
.about_pg_event.right::before {
  left: -10px;
}

/* Team */
.about_pg_team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.about_pg_member {
  width: 220px;
  background: #f9f9f9;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  border: 1px solid #eee;
  transition: transform 0.3s ease;
}
.about_pg_member:hover {
  transform: translateY(-5px);
}
.about_pg_member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
  object-fit: cover;
}
.about_pg_member h4 {
  margin: 8px 0 4px;
  color: #023e8a;
}
.about_pg_member p {
  font-size: 0.9rem;
  color: #666;
}

/* CTA */
.about_pg_cta {
  text-align: center;
}
.about_pg_cta a {
  display: inline-block;
  background: #023e8a;
  color: #fff;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.about_pg_cta a:hover {
  background: #012a63;
}

/* =======================
   Services Page
======================= */

.services_pg_hero {
  height: 70vh;
  background: url("https://cdn.pixabay.com/photo/2016/10/26/12/10/elgin-franklin-1771332_1280.jpg")
    center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}

.services_pg_hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.services_pg_hero-content {
  position: relative;
  z-index: 2;
}

.services_pg_hero h1 {
  font-family: var(--font-main);
  font-size: 2.8rem;
}

.services_pg_hero p {
  font-size: 1.2rem;
  font-family: var(--font-sec);
}

/* =======================
   Core Services
======================= */

.services_pg_section {
  text-align: center;
  padding: 80px 0;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.services_pg_section.reveal {
  opacity: 1;
  transform: translateY(0);
}

.services_pg_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service_card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  text-align: left;
}

.service_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service_card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service_card h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
  text-transform: capitalize;
}
.service_card p {
  text-transform: lowercase;
}
.service_detailed {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  margin-top: 40px;
  flex-wrap: wrap;
}

.service_detailed.reverse {
  flex-direction: row-reverse;
}

.service_detailed_img {
  flex: 1 1 45%;
}

.service_detailed_img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service_detailed_content {
  flex: 1 1 50%;
  text-align: left;
}

.service_detailed_content h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.service_detailed_content p {
  font-family: var(--font-sec);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service_detailed_content h4 {
  font-family: var(--font-main);
  color: var(--primary-color);
  margin-bottom: 10px;
}

.service_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px 20px;
  list-style: none;
}

.service_list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: #333;
}

.service_list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* =======================
   Why Choose Section
======================= */
.why_pg_grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.why_card {
  flex: 1 1 250px;
  max-width: 300px;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
}

.why_card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.why_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* =======================
   CTA Section
======================= */
.services_pg_cta {
  text-align: center;
  padding: 60px 0;
  background: var(--sec-color);
  color: #fff;
}

.services_pg_cta h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-family: var(--font-main);
}

.services_pg_cta p {
  font-family: var(--font-sec);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* =======================
   Contact Us Page
======================= */
/* HERO */
.contact_pg_hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://cdn.pixabay.com/photo/2017/03/05/10/11/phone-2118081_960_720.jpg")
      center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px 100px;
}

.contact_pg_hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: var(--font-main);
}

.contact_pg_hero-content p {
  font-family: var(--font-sec);
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
}

/* INFO CARDS */
.contact_pg_info {
  padding: 80px 20px;
  background: #fff;
}

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

.contact_card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.contact_card:hover {
  transform: translateY(-8px);
}

.contact_card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* FORM */
.contact_pg_form-section {
  padding: 80px 20px;
  background: #f5f8fc;
  text-align: center;
}

.contact_pg_form-container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact_pg_form h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.form_group {
  margin-bottom: 20px;
}

.contact_pg_form input,
.contact_pg_form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-sec);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact_pg_form input:focus,
.contact_pg_form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* MAP */
.contact_pg_map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* =======================
   Responsive Media Queries
======================= */

/* ==========================
   Tablet (≤ 992px)
========================== */
@media (max-width: 992px) {
  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 var(--side-margin-mobile);
    font-size: 0.8rem;
  }

  .header__inner {
    flex-direction: row;
    gap: 12px;
    margin: 0 var(--side-margin-mobile);
    padding: 10px 15px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    background: #0d1b2a;
    transform: translateX(100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 25px;
  }

  .menu-toggle {
    display: flex;
    z-index: 9999;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  /* animate hamburger → X */
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .company-name {
    font-size: 1.1rem;
  }
  .company-name span {
    font-size: 0.85rem;
    letter-spacing: 8px;
  }
  .company-cert {
    font-size: 0.85rem;
  }
  /* ==========================
    About Page
  ========================== */
  .about_pg_event,
  .about_pg_event.left,
  .about_pg_event.right {
    width: 100%;
    text-align: left;
    left: 0;
  }
  .about_pg_timeline::before {
    left: 20px;
  }
  .about_pg_event::before {
    left: 0;
  }
  .service_detailed {
    flex-direction: column;
    text-align: center;
  }

  .service_detailed.reverse {
    flex-direction: column;
  }

  .service_detailed_content {
    text-align: center;
  }

  .service_list {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
}

/* ==========================
   Mobile (≤ 768px)
========================== */
@media (max-width: 768px) {
  .topbar__inner {
    padding: 8px;
    font-size: 0.75rem;
  }

  .header__inner {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .header__brand {
    flex-direction: row;
    text-align: center;
    gap: 6px;
  }

  .header__text_divider {
    display: none; /* hide divider for smaller screens */
  }

  .company-name {
    font-size: 1rem;
    text-align: left;
  }

  .company-name span {
    font-size: 0.75rem;
    letter-spacing: 9px;
  }

  .company-cert {
    font-size: 0.5rem;
    margin: 0 5px;
    text-align: left;
    border-left: 1px solid white;
    padding-left: 5px;
  }

  .site-nav ul {
    gap: 18px;
    align-items: center;
    padding: 0;
  }
  /* ==========================
     About Page
  ========================== */
  .about_pg_hero h1 {
    font-size: 2rem;
  }
  .about_pg_hero p {
    font-size: 1rem;
  }
  /* ==========================
     Service Page
  ========================== */
  .services_pg_hero h1 {
    font-size: 2rem;
  }
  .services_pg_hero p {
    font-size: 1rem;
  }
  .why_pg_grid {
    flex-direction: column;
    align-items: center;
  }
  .service_list {
    grid-template-columns: 1fr;
  }
}

/* ==========================
   Small Mobile (≤ 480px)
========================== */
@media (max-width: 480px) {
  .topbar__inner {
    font-size: 0.7rem;
    text-align: center;
  }

  .header__logo img {
    height: 40px;
    width: 40px;
  }

  .company-name {
    font-size: 0.9rem;
  }

  .company-name span {
    font-size: 0.7rem;
    letter-spacing: 9px;
  }

  .site-nav ul {
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  /* About */
  .about__content {
    height: auto;
    margin-top: 2.5rem;
    text-align: justify;
  }

  /* service card */
  .service__card {
    margin-top: 1.25rem;
  }
}
