* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
  box-sizing: border-box;
}

.navbar {
  background: linear-gradient(to left, #ffc800 0%, #ffc800 70%, #ff914d 100%);
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: transform 0.3s ease;
}
.navbar.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 100px;
  z-index: 1;
  width: 100%;
  max-width: 1772px;
  margin: 0 auto;
  padding: 0 0.3px;
  flex: s;
  padding-left: 20px; /* add spacing */
  padding-right: 20px;
}

.navbar .brand {
  display: flex;
  align-items: center;
}

.navbar .brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.navbar .brand h2 {
  font-size: 25px;
  font-weight: bold;
  margin: 0;
  color: #fff;
  text-decoration: none;
}

.navbar .brand p {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
}

.navbar__links:hover {
  color: #545454;
  transition: all 0.8s ease;
}

@media screen and (max-width: 600px) {
  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;

    padding-left: 20px;
  }
  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
    background: #ffc800;
  }

  .navbar__menu.active {
    background: linear-gradient(to left, #ffc800 0%, #ffc800 70%, #ff914d 100%);
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 70vh;
    font-size: 1rem;
  }
  .navbar__menu,
  .navbar__menu.active {
    width: 100vw; /* full screen width */
    margin-left: -20px; /* cancels container padding-left */
  }

  #navbar_logo {
    padding-left: 25px;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__links {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
  }

  #mobile-menu {
    position: absolute;
    top: 47%;
    right: 5%;
    transform: translate(5%, 47%);
  }

  .navbar__toggle .bar {
    display: block;
    cursor: pointer;
  }
  .navbar .brand h2 {
    font-size: 20px;
  }
}

.services-section {
  text-align: center;
  color: #737373;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.services-section h1 {
  font-size: 70px;
  margin-bottom: 10px;
  font-weight: 500;
}

.services-section p.subtitle {
  font-size: 16px;
  color: #737373;
  margin-bottom: 80px;
  margin-top: -10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 80px;
}

.services-grid .service-box.top-row {
  border-top: 2px solid #ccc;
  padding: 50px 20px 20px; /* extra top padding */
}

.service-box {
  border-bottom: 2px solid #ccc;
  padding: 20px;
  text-align: left;
  position: relative;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: center;
  margin-top: -30px;
}

.service-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #737373;
  margin-bottom: 120px;
}
.services-grid .service-box:nth-last-child(-n + 3) {
  border-bottom: none;
}

/* Circle Arrow Button */
.service-arrow {
  position: absolute;
  bottom: 60px;
  right: 15px;
  font-size: 18px;
  color: #737373;
  background: #fff;
  border: 1px solid #737373;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex; /* flexbox centers the content */
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */
  line-height: 1; /* remove extra spacing */
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-arrow:hover {
  background: #ffc800;
  color: #fff;
  border: 1px solid #ffc800;
}

/* Mobile tweaks */
@media (max-width: 900px) {
  .services-grid .service-box.top-row {
    border-top: none;
    padding-top: 20px;
  }

  .services-grid .service-box:first-child {
    border-top: 1px solid #ccc;
    padding-top: 40px;
  }
  .services-grid .service-box:nth-last-child(-n + 2) {
    border-bottom: 2px solid #ccc;
    padding: 20px;
    text-align: left;
    position: relative;
  }
  .services-grid .service-box:nth-last-child(-n + 3) {
    border-bottom: 2px solid #ccc;
  }
}

.transform-section {
  background-color: #ffc800;
  text-align: center;
  padding: 60px 20px;
  color: #737373;
  margin-bottom: 200px;
}

.transform-section h2 {
  font-size: 4rem;
  letter-spacing: -3px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 70px;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.transform-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transform-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.transform-item img {
  width: 100px;
  margin-bottom: 15px;
}

.transform-item p {
  font-weight: 600;
  font-size: 1rem;
  color: #737373;
}

.icon-bg {
  background-color: #ffc800;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icon-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 900px) {
  .transform-section h2 {
    font-size: clamp(1.5rem, 5vw + 0.5rem, 2.5rem);
    line-height: 1.2;
    letter-spacing: 0;
  }
}

.how-it-works {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  color: #737373;
}

.how-it-works h2 {
  font-size: 50px;
  letter-spacing: -3px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #737373;
}

.how-it-works p {
  max-width: 700px;
  margin: 0 auto 50px auto;
  font-size: 20px;
  line-height: 1.6;
  color: #666;
}

.steps {
  display: flex;
  flex-wrap: wrap; /* allow wrapping */
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 70px;
}

.step {
  flex: 1 1 200px; /* let items shrink/grow and set a min width */
  padding: 0 10px;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  margin-top: 2.5cm;
}

.step:not(:last-child) {
  border-right: 1px solid #ddd;
}

/* Remove right border when stacked vertically */
@media (max-width: 900px) {
  .step {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .step:last-child {
    border-right: 1px solid #ddd;
  }
  .intro-section p {
    transform: none; /* remove scaling on smaller screens */
    font-size: 18px; /* slightly smaller for readability */
  }

  .how-it-works {
    text-align: center;
  }
}

.step h3 {
  font-weight: 100;
  font-size: 28px;
  color: #aaa;
  text-align: center;
  margin-bottom: 1px;
  text-shadow: 1px 5px 3px rgba(0, 0, 0, 0.253);
}

.step h4 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
  color: #737373;
}

.step p {
  font-size: 14px;
  color: #737373;
  line-height: 1.6;
}

.button {
  background: none;
  font-size: 17px;
  border-radius: 25px;
  font-synthesis-style: "Abril Fatface";
  color: #737373;
  gap: 10px;
  border: 1.5px solid #999;
  padding: 12px 22px;
  margin-bottom: -200px;
}

.button:hover {
  background-color: #ffc800;
  color: #fff;
  transition: all 0.3s ease;
}

/*FOOTER*/
.hero {
  padding: 0px 0 0px;
}
.hero-inner {
  text-align: center;
}
.hero-title {
  font-synthesis-style: "Abril Fatface";
  color: #737373;
  font-weight: 510;
  font-size: clamp(60px, 8vw, 110px);
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 0 18px;
  margin-bottom: 10px;
  margin-top: 150px;
}

.hero-title {
  margin-top: 200px; /* desktop spacing */
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .hero-title {
    margin-top: 100px;
  }
}

.hero-sub {
  font-synthesis-style: "Abril Fatface";
  color: #737373;
  font-size: clamp(20px, 1.8vw, 14px);
  /*color:var(--ink-light);*/
  margin: 0 auto 36px;
  margin-top: 10px;
  max-width: 1920px;
}

.button {
  background: none;
  font-size: 17px;
  border-radius: 25px;
  font-synthesis-style: "Abril Fatface";
  color: #737373;
  gap: 10px;
  border: 1.5px solid #999;
  padding: 12px 22px;
  margin-bottom: 200px;
}

.button:hover {
  background-color: #ffc800;
  color: #fff;
  transition: all 0.3s ease;
  border: 1.5px solid #ffc800;
}

.hero-gif {
  margin-top: 70px;
  text-align: center;
  /*padding: 0 20px;*/ /* space on left & right */
}

.hero-gif img {
  width: 100%; /* responsive */
  max-width: 1920px; /* never larger than this */
  height: auto; /* keep proportions */
  /*border-radius: 20px;*/ /* rounded corners */
}

.intro-section {
  text-align: center;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  line-height: 2;
  color: #737373;
}

.intro-section p {
  text-align: left;
  margin-bottom: 40px;
  font-size: 20px;
  transform: scaleX(1.2);
  display: inline-block;
}

.info-btn {
  background: none;
  border: 1.5px solid #999;
  padding: 12px 22px;
  border-radius: 25px;
  font-size: 17px;
  color: #737373;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  margin-bottom: 80px;
}

.info-btn:hover {
  background: #ffc800; /* yellow hover */
  color: #fff;
  border-color: #ffc800;
  transition: all 0.6s ease;
}

.about-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "about vision"
    "mission mission";
  gap: 60px 240px;
  max-width: 1500px;
  margin: 80px auto;
  padding: 0 20px;
  position: relative; /* needed for pseudo-element divider */
}

/* Centered vertical line */
.about-section::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50%;
  background-color: #ccc;
}

/* Box layout */
.about-box {
  color: #737373;
}

.about-box h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -3px;
  text-align: center;
  margin-top: 20px;
}

.about-box p {
  font-size: 18px;
  line-height: 1.6;
  text-align: left; /* ✅ left aligned text */
}

.about-box:nth-child(3) p {
  text-align: center;
}

/* Grid areas */
.about-box:nth-child(1) {
  grid-area: about;
}
.about-box:nth-child(2) {
  grid-area: vision;
}
.about-box:nth-child(3) {
  grid-area: mission;
}

/* Responsive (mobile) */
@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    grid-template-areas:
      "about"
      "vision"
      "mission";
  }

  .about-section::before {
    content: none;
  }

  .about-box:nth-child(1),
  .about-box:nth-child(2) {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }

  .about-box:nth-child(3) {
    border: none;
    padding-top: 20px;
  }
  .about-box:nth-child(3) p {
    text-align: left;
  }
}

.mission-cards-section {
  font-synthesis-style: "Abril Fatface";
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
  width: 100%;
}

.mission-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1160px;
  margin-bottom: 200px;
}

.mission-card {
  flex: 1 1 300px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

.mission-card h3 {
  font-weight: 600;
  margin-bottom: 10px;
  text-align: left;
  color: #737373;
}

.mission-card p {
  color: #737373;
  font-size: 0.95rem;
  text-align: left;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .mission-cards-section {
    padding: 30px;
  }
}

.transform-section {
  background-color: #ffc800;
  text-align: center;
  padding: 60px 20px;
  color: #737373;
}

.transform-section h2 {
  font-size: 4rem;
  letter-spacing: -3px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 70px;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.transform-item {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transform-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.transform-item img {
  width: 100px;
  margin-bottom: 15px;
}

.transform-item p {
  font-weight: 600;
  font-size: 1rem;
  color: #737373;
}

.icon-bg {
  background-color: #ffc800;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icon-bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

@media (max-width: 900px) {
  .transform-section h2 {
    font-size: clamp(1.5rem, 5vw + 0.5rem, 2.5rem);
    line-height: 1.2;
    letter-spacing: 0;
  }
}

.how-it-works {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 150px;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  color: #737373;
  max-width: 1920px;
}

.how-it-works h2 {
  font-size: 70px;
  letter-spacing: -3px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #737373;
}

.how-it-works p {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 25px;
  line-height: 1.6;
  color: #666;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 70px;
}

.step {
  flex: 1 1 200px; /* let items shrink/grow and set a min width */
  padding: 0 10px;
  position: relative;
  text-align: left;
  box-sizing: border-box;
  margin-top: 2.5cm;
}

.step:not(:last-child) {
  border-right: 1px solid #ddd;
}

/* Remove right border when stacked vertically */
@media (max-width: 900px) {
  .step {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .step:last-child {
    border-right: 1px solid #ddd;
  }
  .intro-section p {
    transform: none; /* remove scaling on smaller screens */
    font-size: 18px; /* slightly smaller for readability */
  }
  .how-it-works h2 {
    font-size: 50px;
  }
  .how-it-works p {
    font-size: 20px;
  }
}

.step h3 {
  font-weight: 100;
  font-size: 28px;
  color: #aaa;
  text-align: center;
  margin-bottom: 1px;
  text-shadow: 1px 5px 3px rgba(0, 0, 0, 0.253);
}

.step h4 {
  font-size: 24px;
  font-weight: bold;
  margin-top: 40px;
  color: #737373;
}

.step p {
  font-size: 20px;
  color: #737373;
  line-height: 1.6;
}

.button2 {
  background: none;
  font-size: 17px;
  border-radius: 25px;
  font-synthesis-style: "Abril Fatface";
  color: #737373;
  gap: 10px;
  border: 1.5px solid #999;
  padding: 12px 22px;
  margin-bottom: 200px;
  margin-top: 70px;
}

.button2:hover {
  background-color: #ffc800;
  color: #fff;
  transition: all 0.3s ease;
  border: 1.5px solid #ffc800;
}
@media (max-width: 600px) {
  .step {
    border-right: none;
    border-bottom: 1px solid #ddd;
  }

  .step:last-child {
    border-right: 1px solid #ddd;
  }
  .intro-section p {
    transform: none; /* remove scaling on smaller screens */
    font-size: 18px; /* slightly smaller for readability */
  }
  .how-it-works h2 {
    font-size: 50px;
  }
  .how-it-works p {
    font-size: 20px;
  }
  .button2 {
    font-size: 12px;
  }
}
footer {
  background: linear-gradient(to left, #ffc800 0%, #ffc800 70%, #ff914d 100%);
  color: white;
  padding: 3px 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 150px;
}

/* Left side (logo + info) */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 10px;
  min-width: 200px;
}

.brand {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.brand img {
  width: 50px;
  height: 50px;
  margin-right: 12px;
}
.brand h2 {
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -1px;
}
.brand a {
  text-decoration: none;
  color: #fff;
  margin-top: 10px;
}
.brand p {
  margin: 0;
}

.info .item {
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: left;
}
.copyright {
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: left;
  font-size: 12px;
}
.info strong {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
.info p {
  margin: 0;
}

/* Middle + Right side container */
.footer-middle {
  display: flex;
  gap: 30px; /* pagitan ng Help & FAQs at Let’s Connect */
  align-items: flex-start;
  margin: 10px;
  min-width: 200px;
}

/* Help & FAQs */
.footer-center h3 {
  margin-top: 1.1cm;
  font-size: 25px;
  margin-bottom: 17px;
  letter-spacing: -1px;
}
.footer-center a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 3px 0;
  font-size: 18px;
  text-align: start;
}
.footer-center a:hover {
  color: #737373;
}

/* Let’s Connect */
.footer-right h3 {
  font-size: 25px;
  margin-bottom: 15px;
  margin-top: 1.1cm;
}
.social-links a {
  display: flex;
  align-items: center;
  margin: 8px 0;
  color: white;
  text-decoration: none;
  font-size: 20px;
}
.social-links a:hover {
  color: #737373;
}

.social-links img {
  width: 33px;
  height: 33px;
  margin-right: 8px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* GENERAL SERVICE SECTION */
.service-section {
  background-color: #fff;
  padding: 130px 20% 80px 20%;
  gap: 15px;
}

.service-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #737373;
  margin-bottom: 30px;
  position: relative;
}

.service-section h2::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #ffc800;
  border-radius: 2px;
}

/* GRID LAYOUT */
.service-section .service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT SIDE */
.service-section .service-left ul,
.service-section .right-placeholder ul {
  list-style-type: disc;
  list-style-position: outside;
  background-color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 25px 35px;
  margin-top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
}

.service-section .service-left li,
.service-section .right-placeholder li {
  margin-bottom: 15px;
  color: #737373;
  line-height: 1.6;
  padding-left: 10px;
  text-indent: 0;
}

/* RIGHT SIDE */
.service-section .service-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-section .service-right p {
  color: #737373;
  line-height: 1.7;
  margin: 0 0 20px 0;
  transform: translateY(-60px);
}

.service-section .right-placeholder {
  background-color: #fafafa;
  border: none;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
  transform: translateY(-60px);
}

/* BUTTONS */
.service-section .consult-btn,
.service-section .back-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 25px;
  padding: 12px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #737373;
}

.service-section .consult-btn {
  align-self: flex-end;
  transform: translateY(-60px);
}

.service-section .consult-btn:hover,
.service-section .back-btn:hover {
  background-color: #ffc800;
  border-color: #ffc800;
  color: #ffffff;
}

.service-section .back-btn {
  margin-top: 20px;
}

/* ------------------------------- */
/* 📱 MOBILE - small phones (0–600px) */
/* ------------------------------- */
@media (max-width: 600px) {
  footer {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .footer-left,
  .footer-middle,
  .footer-center,
  .footer-right {
    width: 100%;
    margin: 10px 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand h2 {
    font-size: 20px;
  }

  p,
  .footer-center a,
  .social-links a {
    font-size: 14px;
  }

  .footer-center h3,
  .footer-right h3 {
    margin-top: 20px;
    font-size: 20px;
  }

  .social-links img {
    width: 28px;
    height: 28px;
  }
}

/* -------------------------------------- */
/* 📱📲 TABLET / iPad (600px–900px) */
/* -------------------------------------- */
@media (min-width: 600px) and (max-width: 900px) {
  footer {
    padding: 20px 35px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-left {
    width: 45%;
  }

  .footer-middle {
    width: 45%;
    gap: 20px;
  }

  .footer-center h3,
  .footer-right h3 {
    font-size: 22px;
  }

  .footer-center a,
  .social-links a {
    font-size: 16px;
  }

  p {
    font-size: 15px;
  }

  .brand img {
    width: 45px;
    height: 45px;
  }
}

/* ------------------------------------------------------ */
/* 💻 SMALL LAPTOPS (900px–1200px) */
/* ------------------------------------------------------ */
@media (min-width: 900px) and (max-width: 1200px) {
  footer {
    padding: 20px 50px;
    gap: 40px;
  }

  .footer-left,
  .footer-middle {
    transform: scale(0.95); /* shrink slightly so it doesn’t look cramped */
  }

  .footer-center h3,
  .footer-right h3 {
    font-size: 23px;
  }

  p {
    font-size: 15px;
  }
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */

/* ---------- Small Laptops & Tablets (max 1200px) ---------- */
@media (max-width: 1200px) {
  .service-section {
    padding: 100px 12% 60px 12%;
  }

  .service-section h2 {
    font-size: 34px;
  }

  .service-section .service-grid {
    gap: 30px;
  }

  .service-section .service-right p,
  .service-section .right-placeholder,
  .service-section .consult-btn {
    transform: translateY(-40px);
  }
}

/* ---------- iPad & Medium Tablets (max 992px) ---------- */
@media (max-width: 992px) {
  .service-section {
    padding: 90px 10% 60px 10%;
  }

  .service-section .service-grid {
    grid-template-columns: 1fr; /* stack columns */
  }

  .service-section .service-right p,
  .service-section .right-placeholder,
  .service-section .consult-btn {
    transform: translateY(0); /* FIX overlap on tablets */
  }

  .service-section .consult-btn {
    align-self: flex-start; /* no right edge on tablet */
    margin-top: 10px;
  }
}

/* ---------- Tablets & Large Phones (max 768px) ---------- */
@media (max-width: 768px) {
  .service-section {
    padding: 70px 8% 50px 8%;
  }

  .service-section h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .service-section .service-left ul,
  .service-section .right-placeholder ul {
    padding: 20px 25px;
  }

  .service-section .service-left li,
  .service-section .right-placeholder li {
    margin-bottom: 12px;
  }
}

/* ---------- Mobile Phones (max 576px) ---------- */
@media (max-width: 576px) {
  .service-section {
    padding: 60px 5% 40px 5%;
  }

  .service-section h2 {
    font-size: 26px;
  }

  .service-section h2::before {
    height: 3px;
    width: 50px;
    top: -6px;
  }

  .service-section .service-left ul,
  .service-section .right-placeholder ul {
    padding: 18px 20px;
  }

  .service-section .service-right p {
    font-size: 15px;
    line-height: 1.6;
  }

  .service-section .consult-btn,
  .service-section .back-btn {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }
}

@media (max-width: 576px) {
  .service-section .consult-btn,
  .service-section .back-btn {
    font-size: 14px;
    border-width: 1px;
    padding: 10px 20px;
    width: auto; /* ✔ button shrinks to text */
    align-self: flex-start; /* ✔ align left */
  }
}
