/* =========================================================
   ====================== GLOBAL RESET ======================
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #000;
}


/* =========================================================
   ======================= NAVBAR ===========================
   ========================================================= */

.site-header {
  width: 100%;
  background: #003763;
  position: relative;
  z-index: 1000;
}

.navbar {
  max-width: 1600px;
  height: 76px;
  margin: 0 auto;
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #003763;
  position: relative;
  z-index: 1002;
}

.logo {
  width: 125px;
  display: block;
}

/* Navigation menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 60px; /* reduced for better balance */
  list-style: none;
}

/* 🔥 KEY FIX: push APP away from icons */
.nav-menu li:last-child {
  margin-right: 40px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: #f8c51c;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 55px;
}

/* Social icons */
.social-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-icons a {
  color: #ffffff;
  font-size: 17px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* Language flags */
.language-flags {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-flags button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.15s ease;
}

.language-flags button:hover {
  transform: scale(1.1);
}

.language-flags span {
  color: #ffffff;
  font-size: 14px;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
}

/* Hidden mobile dropdown */
.mobile-menu {
  display: none;
}


/* =========================================================
   ====================== NAV RESPONSIVE ====================
   ========================================================= */

@media (max-width: 1100px) {
  .navbar {
    height: 75px;
    padding: 0 3%;
  }

  .logo {
    width: 140px;
  }

  .nav-menu {
    display: none;
  }

  .nav-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }

  .menu-toggle {
    display: block;
    order: 3;
    font-size: 30px;
  }

  .social-icons {
    order: 1;
    gap: 16px;
  }

  .language-flags {
    order: 2;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #003763;
    padding: 0 4%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    position: absolute;
    top: 75px;
    left: 0;
    z-index: 1001;
  }

  .mobile-menu.open {
    max-height: 360px;
    padding: 18px 4% 24px;
  }

  .mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .mobile-menu a.active,
  .mobile-menu a:hover {
    color: #f8c51c;
  }
}

@media (max-width: 600px) {
  .navbar {
    height: 100px;
    padding: 0 4%;
  }

  .logo {
    width: 140px;
  }

  .nav-right {
    gap: 16px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icons a {
    font-size: 15px;
  }

  .menu-toggle {
    font-size: 26px;
  }

  .language-flags button {
    font-size: 15px;
  }

  .mobile-menu {
    top: 100px;
  }
}

/* =========================================================
   ======================== HERO ============================
   ========================================================= */

.hero-section {
  width: 100%;
  min-height: 500px;
  background: #001b31;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

/* Left side */
.hero-content {
  max-width: 420px;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero-content h1 strong {
  font-weight: 700;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* Button */
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 2px solid #f8c51c;
  border-radius: 30px;
  color: #f8c51c;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.hero-button:hover {
  background: #f8c51c;
  color: #001b31;
}

/* Right side (image only) */
.hero-image-area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 500px;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
}


/* =========================================================
   ==================== HERO RESPONSIVE =====================
   ========================================================= */

@media (max-width: 1100px) {
  .hero-container {
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-image {
    max-width: 360px;
  }
}

@media (max-width: 800px) {
  .hero-section {
    padding: 50px 0 20px;
  }

  .hero-container {
    flex-direction: column;
    align-items: center; /* 👈 center everything */
    text-align: center;  /* 👈 center text */
    gap: 25px;
  }

  .hero-content {
    max-width: 100%;
    margin: 50px 0px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-image-area {
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    max-width: 300px;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-image {
    max-width: 260px;
  }
}

/* =========================================================
   =================== SERVICES PREVIEW =====================
   ========================================================= */

.services-preview-section {
  width: 100%;
  background: #f4f4f4;
  padding: 0 3% 70px;
}

.services-preview-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px 26px 0 0;
  padding: 40px 52px 60px;
  transform: translateY(-28px);
}

.services-preview-container h2 {
  text-align: center;
  color: #e7a914;
  font-size: 31px;
  font-weight: 300;
  margin-bottom: 32px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  width: 100%;
  min-height: 150px;
  border: 1px solid #dddddd;
  border-radius: 16px;
  padding: 24px 22px 28px;
  background: #ffffff;
}

.service-icon {
  color: #003763;
  font-size: 35px;
  margin-bottom: 18px;
}

.service-icon-yellow {
  color: #f4b01f;
}

.service-card h3 {
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  color: #666666;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 300;
}


/* =========================================================
   ============== SERVICES PREVIEW RESPONSIVE ===============
   ========================================================= */

@media (max-width: 800px) {
  .services-preview-section {
    padding: 0 4% 55px;
  }

  .services-preview-container {
    max-width: 100%;
    padding: 18px 24px 45px;
    transform: translateY(-20px);
  }

  .services-preview-container h2 {
    font-size: 26px;
    margin-bottom: 26px;
  }

  .service-card {
    padding: 22px 20px 26px;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.25;
  }
}

@media (max-width: 500px) {
  .services-preview-container {
    padding: 18px 16px 38px;
  }

  .services-preview-container h2 {
    font-size: 24px;
  }

  .service-card {
    min-height: auto;
  }
}

/* =========================================================
   ======================= RESULTS ==========================
   ========================================================= */

.results-section {
  width: 100%;
  background: #f4f4f4;
  padding: 90px 3% 100px;
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

/* ================= LEFT SIDE ================= */

.results-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 520px;
}

.result-card {
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 26px;
}

.result-icon {
  width: 70px;
  height: 70px;
  background: #003763;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  flex-shrink: 0;
}

.result-text h3 {
  font-size: 26px;
  font-weight: 300;
  color: #1e1e1e;
  margin-bottom: 4px;
}

.result-text h3 strong {
  color: #003763;
  font-weight: 800;
  font-size: 30px;
}

.result-text p {
  font-size: 22px;
  color: #1e1e1e;
  font-weight: 300;
  line-height: 1.1;
}

/* ================= RIGHT SIDE ================= */

.results-right {
  position: relative;
  width: 520px;
  min-height: 500px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Yellow box */
.opinion-box {
  position: absolute;
  left: 0;
  top: 190px;
  width: 230px;
  min-height: 125px;
  background: #f4b01f;
  color: #ffffff;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.08;
  padding: 18px 24px;
  z-index: 3;
}

/* ================= PHONE ================= */

.review-phone {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 460px;
  margin-left: 180px;
  background: #003763;
  border: 8px solid #111111;
  border-radius: 34px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  padding: 40px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* speaker */
.phone-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 75px;
  height: 6px;
  background: #111111;
  border-radius: 20px;
  transform: translateX(-50%);
}

/* review content */
.phone-review {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-review p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
  font-style: italic;
  font-weight: 700;
}

/* user */
.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 40px;
  padding: 10px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f4b01f;
  color: #003763;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.review-person h4 {
  color: #ffffff;
  font-size: 15px;
}

.review-person span {
  color: #d9d9d9;
  font-size: 12px;
}


/* =========================================================
   ================== RESULTS RESPONSIVE ====================
   ========================================================= */

@media (max-width: 1000px) {
  .results-container {
    flex-direction: column;
    gap: 50px;
  }

  .results-left {
    width: 100%;
    max-width: 550px;
  }

  .results-right {
    width: 100%;
    max-width: 520px;
    justify-content: center;
  }

  .opinion-box {
    left: 0;
    top: 165px;
  }

  .review-phone {
    margin-left: 130px;
  }
}

@media (max-width: 600px) {
  .results-section {
    padding: 70px 5% 80px;
  }

  .result-card {
    gap: 16px;
    padding: 16px;
  }

  .result-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

  .result-text h3 {
    font-size: 22px;
  }

  .result-text h3 strong {
    font-size: 24px;
  }

  .result-text p {
    font-size: 18px;
  }

  .results-right {
    max-width: 330px;
    min-height: 500px;
  }

  .review-phone {
    width: 230px;
    height: 420px;
    margin-left: 80px;
  }

  .opinion-box {
    width: 145px;
    min-height: 95px;
    font-size: 17px;
    left: 0;
    top: 155px;
    padding: 14px;
  }

  .phone-review p {
    font-size: 14px;
  }
}

/* =========================================================
   ========================= WHY ============================
   ========================================================= */

.why-section {
  width: 100%;
  background: #f4f4f4;
  padding: 110px 3% 120px;
}

.why-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px; /* adjusted since shapes removed */
}


/* ================= IMAGE ================= */

.why-image-area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
}

.why-image {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}


/* ================= CARDS ================= */

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 430px;
}

.why-card {
  width: 100%;
  min-height: 95px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px 26px;
}

.why-card-large {
  min-height: 150px;
}

.why-icon {
  width: 50px;
  height: 50px;
  background: #003763;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.why-card p {
  color: #4a4a4a;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 300;
}


/* =========================================================
   ==================== WHY RESPONSIVE ======================
   ========================================================= */

@media (max-width: 900px) {
  .why-section {
    padding: 80px 5% 90px;
  }

  .why-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .why-image-area {
    max-width: 300px;
  }

  .why-image {
    max-width: 260px;
  }

  .why-cards {
    width: 100%;
    max-width: 460px;
  }
}

@media (max-width: 600px) {
  .why-card {
    gap: 18px;
    padding: 18px;
  }

  .why-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .why-card p {
    font-size: 20px;
  }

  .why-card-large {
    min-height: auto;
  }
}

/* =========================================================
   ========================= TEAM ===========================
   ========================================================= */

.team-section {
  width: 100%;
  background: #001b31;
  padding: 120px 3%;
}

.team-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

/* ================= LEFT ================= */

.team-content {
  max-width: 420px;
  color: #ffffff;
}

.team-content h2 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 30px;
}

.team-content h2 strong {
  font-weight: 700;
}

.team-content p {
  font-size: 18px;
  line-height: 1.3;
  color: #cfd8df;
}

/* ================= RIGHT ================= */

.team-card {
  position: relative;
  width: 300px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background: #003763;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Image */
.team-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.team-overlay {
  position: relative;
  width: 100%;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0, 55, 99, 0.95),
    rgba(0, 55, 99, 0.4),
    transparent
  );
  color: #ffffff;
}

.team-overlay h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.team-overlay span {
  display: block;
  font-size: 12px;
  color: #f4b01f;
  margin-top: 6px;
}


/* =========================================================
   ==================== TEAM RESPONSIVE =====================
   ========================================================= */

@media (max-width: 900px) {
  .team-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
  }

  .team-content h2 {
    font-size: 46px;
  }

  .team-content p {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .team-content h2 {
    font-size: 38px;
  }

  .team-card {
    width: 260px;
    height: 340px;
  }
}

/* =========================================================
   ========================= CTA ============================
   ========================================================= */

.cta-section {
  width: 100%;
  background: #f4f4f4;
  padding: 110px 3% 120px;
}

.cta-container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

.cta-image-area {
  width: 100%;
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-image {
  width: 100%;
  max-width: 330px;
  height: auto;
  display: block;
}

.cta-content {
  color: #003763;
  max-width: 330px;
}

.cta-content h2 {
  font-size: 40px;
  line-height: 1.08;
  font-weight: 300;
  margin-bottom: 28px;
}

.cta-content h2 strong {
  font-weight: 800;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  height: 48px;
  border: 2px solid #f4b01f;
  border-radius: 30px;
  color: #f4b01f;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cta-button:hover {
  background: #f4b01f;
  color: #003763;
}


/* =========================================================
   ===================== CTA RESPONSIVE =====================
   ========================================================= */

@media (max-width: 800px) {
  .cta-section {
    padding: 80px 5% 90px;
  }

  .cta-container {
    flex-direction: column;
    gap: 45px;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 34px;
  }
}

@media (max-width: 500px) {
  .cta-content h2 {
    font-size: 30px;
  }

  .cta-image {
    max-width: 280px;
  }
}

/* =========================================================
   ====================== BLOG HOME =========================
   ========================================================= */

.blog-home-section {
  width: 100%;
  background: #ffffff;
  padding: 110px 3%;
}

.blog-home-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Title */
.blog-home-container h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 300;
  color: #333;
  margin-bottom: 70px;
  line-height: 1.3;
}

.blog-home-container h2 span {
  color: #f4b01f;
  font-weight: 600;
}


/* =========================================================
   ======================== ITEM ============================
   ========================================================= */

.blog-item {
  margin-bottom: 90px;
}

/* 🔥 HORIZONTAL RECTANGLE IMAGE */
.blog-item img {
  width: 100%;
  max-width: 520px;      /* controls size */
  aspect-ratio: 16 / 9;  /* 👈 horizontal rectangle */
  object-fit: cover;
  display: block;
  margin: 0 auto 22px;   /* 👈 centered */
  border-radius: 4px;
}

/* Content */
.blog-content {
  max-width: 650px;
  margin: 0 auto;
}

/* Category */
.blog-category {
  font-size: 13px;
  color: #777;
  display: block;
  margin-bottom: 6px;
}

/* Title */
.blog-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
  font-weight: 600;
}

/* Text */
.blog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.45;
  margin-bottom: 16px;
}

/* Footer */
.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Date */
.blog-date {
  font-size: 12px;
  color: #aaa;
}

/* Button */
.blog-button {
  background: #f4b01f;
  color: #ffffff;
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  transition: 0.2s;
}

.blog-button:hover {
  opacity: 0.8;
}


/* =========================================================
   ================= BLOG RESPONSIVE ========================
   ========================================================= */

@media (max-width: 800px) {
  .blog-item img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .blog-home-container h2 {
    font-size: 24px;
  }

  .blog-content h3 {
    font-size: 18px;
  }

  .blog-content p {
    font-size: 13px;
  }
}

/* =========================================================
   ======================== FOOTER ==========================
   ========================================================= */

.site-footer {
  width: 100%;
  background: #001b31;
  padding: 60px 3%;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ================= LEFT ================= */

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 120px;
}

.footer-icons {
  display: flex;
  gap: 18px;
}

.footer-icons a {
  color: #ffffff;
  font-size: 20px;
  transition: 0.2s;
}

.footer-icons a:hover {
  opacity: 0.7;
}


/* ================= CENTER ================= */

.footer-center {
  display: flex;
  gap: 22px;
}

.footer-center a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: 0.2s;
}

.footer-center a.active,
.footer-center a:hover {
  color: #f4b01f;
}


/* ================= RIGHT ================= */

.footer-right {
  text-align: right;
}

.footer-right p {
  color: #cfd8df;
  font-size: 14px;
  margin-bottom: 8px;
}


/* =========================================================
   ==================== FOOTER RESPONSIVE ===================
   ========================================================= */

@media (max-width: 1000px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}

/* =========================================================
   ===================== ABOUT PAGE =========================
   ========================================================= */

/* ABOUT HERO */
.about-hero-section {
  width: 100%;
  background: #001b31;
  padding: 40px 3% 0;
}

.about-hero-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-hero-text {
  color: #ffffff;
  max-width: 320px;
}

.about-hero-text h1 {
  font-size: 22px;
  margin-bottom: 30px;
}

.about-hero-text p {
  font-size: 12px;
  line-height: 1.2;
  color: #d9d9d9;
}

.about-hero-image {
  width: 240px;
  border-radius: 16px;
  transform: translateY(20px);
}

/* ABOUT CONTENT */
.about-content-section {
  background: #f4f4f4;
  padding: 70px 3% 60px;
}

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

.about-mission,
.about-connection {
  max-width: 620px;
  margin: 0 auto 55px;
}

.about-mission h2,
.about-connection h2 {
  color: #003763;
  font-size: 22px;
  margin-bottom: 22px;
}

.about-connection h2 {
  text-align: center;
}

.about-mission p,
.about-connection p {
  color: #222;
  font-size: 14px;
  line-height: 1.25;
  margin-bottom: 15px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 50px 0 65px;
}

.about-value-card {
  background: #ffffff;
  min-height: 58px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 16px 100px;
}

.about-value-card i {
  color: #f4b01f;
  font-size: 30px;
}

.about-value-card p {
  font-size: 13px;
  color: #555;
}

/* ABOUT CTA */
.about-cta-section {
  background: #f4f4f4;
  padding: 40px 3% 90px;
}

.about-cta-container {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

.about-cta-image {
  width: 430px;
  border-radius: 28px;
}

.about-cta-content {
  color: #003763;
  max-width: 280px;
}

.about-cta-content h2 {
  font-size: 32px;
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 24px;
}

.about-cta-content h2 strong {
  font-weight: 800;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 2px solid #f4b01f;
  border-radius: 30px;
  color: #f4b01f;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s ease;
}

.about-cta-button:hover {
  background: #f4b01f;
  color: #003763;
}

/* ABOUT RESPONSIVE */
@media (max-width: 800px) {
  .about-hero-section {
    padding: 40px 5% 20px;
  }

  .about-hero-container,
  .about-cta-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .about-hero-text h1 {
    margin-bottom: 20px;
  }

  .about-hero-image {
    width: 220px;
    transform: none;
  }

  .about-value-card {
    padding: 18px;
    gap: 20px;
  }

  .about-cta-image {
    width: 100%;
    max-width: 360px;
  }
}

/* =========================================================
   ===================== CONTACT PAGE =======================
   ========================================================= */

.contact-hero-section {
  background: #001b31;
  padding: 75px 3%;
}

.contact-hero-container {
  max-width: 620px;
  margin: 0 auto;
  color: #ffffff;
}

.contact-hero-container h1 {
  font-size: 30px;
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 22px;
}

.contact-hero-container h1 strong {
  font-weight: 800;
}

.contact-hero-container p {
  max-width: 330px;
  font-size: 13px;
  line-height: 1.15;
  color: #d9d9d9;
}

.contact-form-section {
  background: #f4f4f4;
  padding: 70px 3% 55px;
}

.contact-form-container {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 22px;
  align-items: start;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  outline: none;
  background: #ffffff;
  border-radius: 7px;
  padding: 14px 16px;
  font-size: 13px;
  color: #333333;
}

.contact-form textarea {
  min-height: 95px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c7c7c7;
}

.contact-form button {
  align-self: center;
  margin-top: 4px;
  background: #003763;
  color: #ffffff;
  border: none;
  border-radius: 3px;
  padding: 13px 36px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.contact-info-card {
  background: #001b31;
  color: #ffffff;
  border-radius: 12px;
  padding: 28px 30px;
}

.contact-info-card h2 {
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-social-icons {
  display: flex;
  gap: 9px;
  margin-bottom: 28px;
}

.contact-social-icons a {
  width: 30px;
  height: 30px;
  background: #f4b01f;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contact-info-card p {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d9d9d9;
  font-size: 13px;
  margin-bottom: 24px;
}

.contact-info-card p i {
  color: #f4b01f;
  font-size: 18px;
}

.contact-map-section {
  width: 100%;
  height: 280px;
}

.contact-map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 850px) {
  .contact-form-container {
    grid-template-columns: 1fr;
  }

  .contact-hero-container {
    text-align: center;
  }

  .contact-hero-container p {
    margin: 0 auto;
  }
}

/* =========================================================
   ======================= BLOG PAGE ========================
   ========================================================= */

.blog-page-hero {
  background: #001b31;
  padding: 80px 3%;
  color: #ffffff;
  text-align: center;
}

.blog-page-hero-container {
  max-width: 700px;
  margin: 0 auto;
}

.blog-page-hero h1 {
  font-size: 46px;
  margin-bottom: 16px;
}

.blog-page-hero p {
  font-size: 17px;
  color: #d9d9d9;
}

.blog-page-section {
  background: #f4f4f4;
  padding: 80px 3% 100px;
}

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

.blog-page-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.blog-page-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.blog-page-content {
  padding: 24px;
}

.blog-page-content span {
  color: #f4b01f;
  font-size: 13px;
  font-weight: 700;
}

.blog-page-content h2 {
  color: #003763;
  font-size: 22px;
  margin: 10px 0;
}

.blog-page-content p {
  color: #555555;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 22px;
}

.blog-page-content a {
  display: inline-flex;
  background: #f4b01f;
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .blog-page-container {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .blog-page-hero h1 {
    font-size: 38px;
  }
}

/* =========================================================
   ====================== BLOG ARTICLE ======================
   ========================================================= */

/* HERO */
.blog-article-hero {
  width: 100%;
  background: #001b31;
  color: #ffffff;
  padding: 80px 3% 60px;
  text-align: center;
}

.blog-article-hero-container {
  max-width: 700px;
  margin: 0 auto;
}

.blog-category {
  color: #f4b01f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.blog-article-hero h1 {
  font-size: 42px;
  margin: 10px 0;
  font-weight: 300;
}

.blog-date {
  font-size: 13px;
  color: #d9d9d9;
}


/* IMAGE */
.blog-article-image {
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  margin-top: 40px; /* 👈 spacing from hero */
}

.blog-article-image img {
  width: 100%;
  max-width: 650px; /* 👈 smaller image */
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}


/* CONTENT */
.blog-article-content {
  width: 100%;
  background: #ffffff;
  padding: 60px 3% 90px;
}

.blog-article-container {
  max-width: 700px;
  margin: 0 auto;
}

.blog-article-container p {
  font-size: 16px;
  line-height: 1.65;
  color: #333333;
  margin-bottom: 22px;
}

.blog-article-container h2 {
  font-size: 24px;
  margin: 35px 0 15px;
  color: #003763;
  font-weight: 700;
}


/* LIST */
.blog-list {
  margin: 20px 0 30px;
  padding-left: 20px;
}

.blog-list li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}


/* HIGHLIGHT BOX */
.blog-highlight {
  margin-top: 30px;
  padding: 22px;
  background: #f4f4f4;
  border-left: 5px solid #f4b01f;
  border-radius: 8px;
}

.blog-highlight p {
  margin: 0;
  font-weight: 500;
}


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

@media (max-width: 800px) {
  .blog-article-hero {
    padding: 60px 5% 40px;
  }

  .blog-article-hero h1 {
    font-size: 34px;
  }

  .blog-article-image {
    margin-top: 30px;
  }

  .blog-article-image img {
    max-width: 90%;
  }

  .blog-article-content {
    padding: 50px 5% 70px;
  }

  .blog-article-container p {
    font-size: 15px;
  }

  .blog-article-container h2 {
    font-size: 22px;
  }
}

@media (max-width: 500px) {
  .blog-article-hero h1 {
    font-size: 28px;
  }

  .blog-article-container p {
    font-size: 14px;
    line-height: 1.6;
  }

  .blog-list li {
    font-size: 14px;
  }
}