/* =========================================================
   REGRUP WEBSITE MAIN STYLE
   ========================================================= */

/* === RESET & BASE === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* =========================================================
   HEADER (TOPBAR + NAV)
   ========================================================= */

/* === Topbar === */
.topbar {
  background: rgba(20, 20, 20, 0.85);
  color: #ddd;
  font-size: 14px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}
.topbar .left span {
  margin-right: 16px;
}
.topbar .right span {
  margin-left: 6px;
}
.lang {
  cursor: pointer;
  font-weight: 600;
}
.lang:hover {
  color: #ff9900;
}

/* === Main Header === */
.site-header {
  background: rgba(15, 15, 15, 0.95); /* Gelap agar logo putih jelas */
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.logo img {
  height: 60px;
}

/* === Navigation Menu === */
.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #ffffff; /* Putih */
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}
.main-nav a:hover {
  color: #ff9900;
  transform: translateY(-2px);
}
.main-nav a.active {
  background: #ff9900;
  color: #111;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.4s ease;
}

/* === Responsive Header === */
@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    font-size: 13px;
  }
  .header-inner {
    flex-direction: column;
    gap: 12px;
  }
  .main-nav a {
    display: inline-block;
    margin: 8px 10px;
  }
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 40px 0;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.6));
}
.hero .hero-inner {
  position: relative;
  z-index: 3;
  padding-left: 20px;
  max-width: 700px;
}
.hero h1 {
  font-size: 42px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.hero p.lead {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 20px;
}
.btn {
  display: inline-block;
  padding: 12px 18px;
  background: #ff9900;
  color: #111;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #fff;
  color: #111;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.section-title {
  margin: 40px 0 12px;
  font-size: 28px;
  font-weight: 700;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}
.service-card {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* =========================================================
   ARTICLES SECTION
   ========================================================= */
.article-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 12px;
}
.article-card img {
  width: 220px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
}

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-form {
  max-width: 700px;
  margin-top: 12px;
}
.form-row {
  margin-bottom: 12px;
}
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}
input[type="text"],
textarea,
input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
button {
  background: #ff9900;
  color: #111;
  padding: 10px 14px;
  border: 0;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}
button:hover {
  background: #fff;
}

/* =========================================================
   ADMIN & GENERAL
   ========================================================= */
.admin-note {
  background: #fff3cd;
  padding: 12px;
  border: 1px solid #ffeeba;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: #060c25;
  color: #fff;
  padding: 60px 0 30px;
  font-size: 15px;
  line-height: 1.6;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.footer-col {
  flex: 1;
  min-width: 250px;
}
.footer-logo {
  height: 60px;
  margin-bottom: 15px;
}
.footer-col h4 {
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.footer-col p,
.footer-col ul {
  color: #d0d0d0;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.social-icons {
  margin-top: 15px;
}
.social-icons a {
  color: #fff;
  font-size: 18px;
  margin-right: 12px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #ff9900;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
}
.footer-bottom hr {
  border: 0;
  border-top: 1px solid #444;
  margin-bottom: 10px;
}
.footer-bottom a {
  color: #ff9900;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero {
    height: 420px;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
  }
  .hero h1 {
    font-size: 28px;
  }
}

/* === HERO SECTION (NEW) === */
.hero-section {
  position: relative;
  height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;       /* vertikal tengah */
  justify-content: center;   /* horizontal tengah */
  text-align: center;        /* teks di tengah */
  color: #fff;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 60px;
}
.hero-content h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 700;
}
.hero-content .highlight {
  background: #e5ff00;
  color: #000;
  padding: 5px 12px;
  border-radius: 30px;
}
.btn-hero {
  display: inline-block;
  margin-top: 30px;
  background: #00d4ff;
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-hero:hover {
  background: #00a7cc;
}

/* === SERVICE BAR === */
.service-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #00d4ff;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  padding: 20px 0;
  border-top: 3px solid #000;
}
.service-bar a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}
.service-bar a:hover {
  text-decoration: underline;
}

@media(max-width:768px){
  .hero-content h1 {font-size: 32px;}
  .hero-content {padding: 0 20px;}
  .service-bar {flex-direction: column; gap: 10px; font-size: 18px;}
}
.btn-orange {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 24px;
  background-color: #ff9900;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
}
.btn-orange:hover {
  background-color: #e67e00;
}
/* === OUR SERVICES BLUE SECTION === */
.services-section {
  background-color: #004aad; /* biru elegan */
  color: #fff;
  padding: 60px 0;
}

.services-section .section-title.light {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.services-section .service-card {
  background: #fff;
  color: #111;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.services-section .service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
}

.services-section .service-card p {
  font-size: 14px;
  color: #333;
  margin: 8px 0 16px;
}

/* Tombol "More" oranye dengan hover efek */
.btn-more {
  display: inline-block;
  background: #fff;
  color: #ff9900;
  font-weight: 700;
  padding: 8px 20px;
  border: 2px solid #ff9900;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-more:hover {
  background: #ff9900;
  color: #fff;
}

/* Responsif */
@media (max-width: 900px) {
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
  }
}
/* === ABOUT SECTION HOME === */
.about-home {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #111;
}
.about-text p {
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
}
.btn-readmore {
  display: inline-block;
  padding: 10px 24px;
  background: #ff9900;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}
.btn-readmore:hover {
  background: #e67e00;
}

/* Responsif */
@media(max-width:900px){
  .about-inner {flex-direction: column; text-align: center;}
  .about-image img {max-width: 100%;}
}

/* === ABOUT SECTION HOME === */
.about-home {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
}
.about-text {
  flex: 1;
}
.about-text h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #111;
}
.about-text p {
  color: #444;
  margin-bottom: 12px;
  line-height: 1.6;
}
.btn-readmore {
  display: inline-block;
  padding: 10px 24px;
  background: #ff9900;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}
.btn-readmore:hover {
  background: #e67e00;
}

/* Tombol "More" oranye */
.btn-orange {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 24px;
  background-color: #ff9900;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
}
.btn-orange:hover {
  background-color: #e67e00;
}

/* Responsif */
@media(max-width:900px){
  .about-inner {flex-direction: column; text-align: center;}
  .about-image img {max-width: 100%;}
}

/* === OUR SERVICES PAGE === */
.service-hero {
  position: relative;
  background: url('assets/images/hero-bg.png') center/cover no-repeat, #0044cc;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.service-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 80, 0.7);
  z-index: 0;
}

.service-hero .container {
  position: relative;
  z-index: 1;
}

.section-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.section-title .highlight {
  background: #ffeb3b;
  color: #000;
  padding: 0 5px;
  border-radius: 5px;
}

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

.service-box {
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 40px 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-circle {
  width: 100px;
  height: 100px;
  background: orange;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle.gray {
  background: #eee;
}

.icon-circle img {
  width: 50px;
  height: 50px;
}

.service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.service-box ul li {
  margin: 5px 0;
}
/* === OUR SERVICES RESPONSIVE FIX === */
.service-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.service-box {
  flex: 1 1 22%; /* 4 kartu sejajar di desktop */
  min-width: 250px;
  background: #fff;
  color: #000;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
}

.icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
  font-size: 48px;
}

.service-box.orange .icon-circle {
  background: #ff9800;
}

.service-box h4 {
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 700;
}

.service-box p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-box a.more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff9900;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.service-box a.more-btn:hover {
  background: #e68900;
}

/* Responsif: dua baris di tablet, satu di HP */
@media (max-width: 900px) {
  .service-box { flex: 1 1 45%; }
}

@media (max-width: 600px) {
  .service-box { flex: 1 1 100%; }
}

.btn-o


/* === ARTICLES PAGE === */
.articles-hero {
  background: #004aad;
  color: #fff;
  text-align: center;
  padding: 80px 0 40px;
}
.articles-hero .section-title {
  font-size: 38px;
  margin-bottom: 8px;
}
.articles-hero .section-subtitle {
  opacity: 0.9;
}

/* --- Article List --- */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0;
}
.article-card-modern {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.article-card-modern:hover { transform: translateY(-4px); }
.article-card-modern img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}
.article-info {
  padding: 20px;
}
.article-info h2 {
  font-size: 22px;
  margin-bottom: 8px;
}
.article-info h2 a {
  color: #004aad;
  text-decoration: none;
}
.article-info h2 a:hover { color: #ff9900; }
.article-info .meta {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

/* --- Article Detail --- */
.article-detail {
  max-width: 900px;
  margin: 60px auto;
}
.article-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.article-meta {
  color: #666;
  margin-bottom: 20px;
}
.article-main-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}
.article-content {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

/* --- Other Articles --- */
.other-articles-section {
  background: #f6f7fb;
  padding: 60px 0;
}
.other-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 40px;
}
.other-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.other-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.other-card:hover { transform: translateY(-5px); }
.other-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.other-card h3 {
  padding: 16px;
  font-size: 16px;
  text-align: center;
}
.other-card a {
  color: #004aad;
  text-decoration: none;
  font-weight: 600;
}
.other-card a:hover { color: #ff9900; }

@media(max-width:768px){
  .article-card-modern { flex-direction: column; }
  .article-card-modern img { width: 100%; height: auto; }
}

/* === ARTICLES PAGE (NEW DIGIFLASH STYLE) === */
.articles-section-modern {
  background: linear-gradient(180deg, #004aad 0%, #002b7f 100%);
  color: #fff;
  padding: 80px 0;
  min-height: 100vh;
}

.section-title-light {
  text-align: center;
  font-size: 38px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}

.section-subtitle-light {
  text-align: center;
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 50px;
}

.articles-grid-modern {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.article-card-modern {
  display: flex;
  background: #fff;
  color: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.article-card-modern:hover {
  transform: translateY(-5px);
}

.article-card-modern img {
  width: 320px;
  height: 220px;
  object-fit: cover;
}

.article-info {
  padding: 24px;
  flex: 1;
}

.article-info h3 a {
  color: #004aad;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
}
.article-info h3 a:hover {
  color: #ff9900;
}

.article-info .meta {
  font-size: 14px;
  color: #777;
  margin: 8px 0;
}

/* Responsive */
@media(max-width: 900px){
  .article-card-modern {
    flex-direction: column;
  }
  .article-card-modern img {
    width: 100%;
    height: auto;
  }
}

/* === FEATURED ARTICLE (Homepage) === */
.featured-article {
  background: #fff;
  padding: 60px 0;
  border-radius: 12px;
}

.featured-article-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 30px;
}

.featured-text {
  flex: 1;
}

.featured-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.featured-text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.featured-image {
  flex: 1;
  text-align: right;
}

.featured-image img {
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 320px;
}

@media(max-width:900px) {
  .featured-article-box {
    flex-direction: column;
    text-align: center;
  }
  .featured-image {
    text-align: center;
  }
  .featured-image img {
    height: auto;
  }
}
/* === OUR SERVICES WITH IMAGE BACKGROUND ONLY === */
.services-section-with-bg {
  background: url('../images/asset8.png') center/cover no-repeat;
}

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: #fff;
}


.services-section-with-bg .section-title {
  text-align: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 40px;
}

.services-section-with-bg .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.services-section-with-bg .service-card {
  background: #fff;
  color: #000;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.services-section-with-bg .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-orange {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-orange:hover {
  background: #e36b00;
}

/* === FEATURED ARTICLE SECTION === */
.featured-article {
  margin-top: 80px;
}

.featured-article-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 40px;
  gap: 30px;
}

.featured-article-box img {
  width: 100%;
  border-radius: 12px;
}

.featured-text {
  flex: 1 1 50%;
}

.featured-image {
  flex: 1 1 45%;
}

.featured-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.featured-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.btn-readmore {
  display: inline-block;
  margin-top: 15px;
  background: #004aad;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
}

.btn-readmore:hover {
  background: #003b8a;
}
/* === SERVICES ALTERNATING SECTION === */
.services-alt {
  padding: 80px 0;
  background: #fff;
}

.services-alt .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #000;
}

.service-alt-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  margin-bottom: 50px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-alt-card:hover {
  transform: translateY(-4px);
}

.service-alt-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-alt-card .text {
  flex: 1;
  padding: 40px;
}

.service-alt-card .text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-alt-card .text p {
  color: #333;
  line-height: 1.6;
  font-size: 16px;
}

/* Card oranye spesial */
.service-alt-card.orange {
  background: #ff9900;
  color: #fff;
}

.service-alt-card.orange h3,
.service-alt-card.orange p {
  color: #fff;
}

/* Gambar di kanan–kiri bergantian */
.service-alt-card:nth-child(even) {
  flex-direction: row-reverse;
}

/* Responsif */
@media(max-width:900px){
  .service-alt-card {
    flex-direction: column;
    text-align: center;
  }
  .service-alt-card:nth-child(even){
    flex-direction: column;
  }
}

/* === SELANG-SELING SERVICE LAYOUT === */
.services-alt .service-alt-card:nth-of-type(even) {
  flex-direction: row-reverse;
}

.service-alt-card .image {
  flex: 1;
  min-width: 45%;
  height: 100%;
}

.service-alt-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === RAPIKAN TOMBOL "MORE" DI KARTU SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* dorong tombol ke bawah */
  height: 100%;
}

.service-card img {
  width: 80px;
  margin: 0 auto 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  flex-grow: 1; /* isi ruang tengah */
  margin-bottom: 20px;
  color: #444;
}

.service-card .btn-orange {
  align-self: center;
  margin-top: auto;
}
