

/* ========================================
   SERVICES TITLE & DESCRIPTION
======================================== */
.services-title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size:  3.5rem;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(37, 99, 235, 0.06);
}

.services-title-highlight {
  color: #2563eb;
}

.services-desc {
  text-align: center;
  font-size: 22px;
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 700px;
  color: #4b5563;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   GENERAL SECTION STYLES
======================================== */
.section {
  width: 100%;
  padding: 60px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   SERVICES CARDS SECTION
======================================== */
.services-cards.section {
  background: #f8fafc;
}

.services-cards-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Services Card Row (Alternating Layout) */
.services-card-row {
  display: flex;
  align-items: center;
  gap: 60px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
  padding: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  overflow: hidden;
}

.services-card-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
  transition: left 0.6s ease;
}

.services-card-row:hover::before {
  left: 100%;
}

.services-card-row:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.services-card-row:nth-child(even) {
  flex-direction: row-reverse;
}

.services-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Desktop Services Card Header */
.services-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.services-card-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
}

.services-card-content p {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.7;
}

.services-card-image {
  flex: 0 0 400px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.services-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.services-card-row:hover .services-card-image img {
  transform: scale(1.05);
}

/* Regular Services Cards (Grid Layout) */
.services-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.10);
  padding: 36px 28px 32px 28px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.services-card:hover {
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.16);
  transform: translateY(-6px) scale(1.03);
}

.services-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 10px;
}

.services-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.5;
}

/* Services Card Icons */
.services-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.services-card .services-card-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #2563eb 60%, #60a5fa 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.13);
}

.services-card-icon .iconify {
  color: white;
  font-size: 2.5rem;
}

.services-card .services-card-icon .iconify {
  font-size: 28px;
}

/* ========================================
   SERVICES INDUSTRIES SECTION
======================================== */
.services-industries.section {
  background: linear-gradient(135deg, #f1f6ff, #ccdcf1);
}

.services-industries .section-inner {
  text-align: center;
}

.services-industries-title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.services-industries-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.services-industry {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.07);
  padding: 32px 20px;
  text-align: center;
  transition: box-shadow 0.22s, transform 0.22s;
}

.services-industry:hover {
  box-shadow: 0 10px 36px rgba(37, 99, 235, 0.14);
  transform: translateY(-5px) scale(1.03);
}

.services-industry-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2563eb 60%, #60a5fa 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.13);
}

.services-industry-icon .iconify {
  color: #fff;
  font-size: 26px;
}

.services-industry h4 {
  font-size: 17px;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 6px;
}

.services-industry p {
  font-size: 15px;
  color: #374151;
  margin: 0;
  line-height: 1.5;
}

/* ========================================
   SERVICES CTA SECTION
======================================== */
.services-cta.section {
  text-align: center;
  background: linear-gradient(135deg, #2563eb 60%, #60a5fa 100%);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.services-cta h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
  letter-spacing: -0.5px;
  text-align: center;
}

.services-cta p {
  font-size: 20px;
  margin-bottom: 36px;
  color: #e0e7ef;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta .btn-primary {
  background: #fff;
  color: #2563eb;
  font-weight: 800;
  font-size: 18px;
  padding: 16px 44px;
  border-radius: 9999px;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(16, 30, 54, 0.11);
  text-align: center;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.services-cta .btn-primary:hover {
  background: #e0e7ff;
  color: #1d4ed8;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.24);
}

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

/* Desktop */
@media (max-width: 1200px) {
  .services-title {
    font-size: 52px;
    letter-spacing: -1.1px;
    margin-bottom: 18px;
  }
  
  .services-desc {
    font-size: 21px;
    margin-bottom: 34px;
    padding: 0 22px;
  }
  
  .services-industries-title {
    font-size: 34px;
    margin-bottom: 26px;
  }
  
  .services-cta h2 {
    font-size: 36px;
  }
  
  .services-cta p {
    font-size: 19px;
    margin-bottom: 34px;
  }
  
  .services-card-row {
    gap: 40px;
    padding: 40px;
  }
  
  .services-card-image {
    flex: 0 0 350px;
    height: 250px;
  }
  
  .services-card-content h3 {
    font-size: 1.8rem;
  }
  
  .services-card-content p {
    font-size: 1.05rem;
  }
  
  /* Desktop Services Industry Layout */
  .services-industries-list {
    gap: 28px;
  }
  
  .services-industry {
    padding: 30px 22px;
  }
  
  .services-industry h4 {
    font-size: 18px;
  }
  
  .services-industry p {
    font-size: 15px;
  }
}

/* Tablet Large */
@media (max-width: 1024px) {
  .services-title {
    font-size: 48px;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  
  .services-desc {
    font-size: 20px;
    margin-bottom: 32px;
    padding: 0 24px;
  }
  
  .services-industries-title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  
  .services-cta h2 {
    font-size: 34px;
  }
  
  .services-cta p {
    font-size: 18px;
    margin-bottom: 32px;
  }
  
  .services-industries-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .services-card-row {
    gap: 30px;
    padding: 30px;
  }
  
  .services-card-image {
    flex: 0 0 300px;
    height: 220px;
  }
  
  .services-cards-inner {
    gap: 40px;
  }
  
  .services-card-content h3 {
    font-size: 1.8rem;
  }
  
  .services-card-content p {
    font-size: 1rem;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .services-title {
    font-size: 44px;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
  }
  
  .services-desc {
    font-size: 19px;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  
  .services-industries-title {
    font-size: 30px;
    margin-bottom: 22px;
  }
  
  .services-cta h2 {
    font-size: 32px;
  }
  
  .services-cta p {
    font-size: 17px;
    margin-bottom: 30px;
  }
  
  .services-cards-inner {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .services-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  
  .services-card-row {
    flex-direction: column !important;
    text-align: center;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .services-card-row:nth-child(even) {
    flex-direction: column !important;
  }
  
  .services-card-image {
    flex: none;
    width: 100%;
    max-width: 400px;
    height: 250px;
  }
  
  .services-card-content h3 {
    font-size: 1.6rem;
  }
  
  .services-card-content p {
    font-size: 1rem;
  }
  
  /* Tablet Services Industry Layout */
  .services-industries-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .services-industry {
    padding: 24px 20px;
  }
  
  .services-industry h4 {
    font-size: 16px;
  }
  
  .services-industry p {
    font-size: 14px;
  }
}

/* Tablet Small */
@media (min-width: 769px) and (max-width: 899px) {
  .services-title {
    font-size: 40px;
    letter-spacing: -0.7px;
    margin-bottom: 16px;
  }
  
  .services-desc {
    font-size: 18px;
    margin-bottom: 28px;
    padding: 0 18px;
  }
  
  .services-industries-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .services-cta h2 {
    font-size: 30px;
  }
  
  .services-cta p {
    font-size: 16px;
    margin-bottom: 28px;
  }
  
  /* Tablet Small Services Card Layout */
  .services-card-row {
    gap: 25px;
    padding: 35px 25px;
  }
  
  .services-card-image {
    flex: 0 0 280px;
    height: 200px;
  }
  
  .services-card-content h3 {
    font-size: 1.5rem;
  }
  
  .services-card-content p {
    font-size: 0.95rem;
  }
  
  /* Tablet Small Services Industry Layout */
  .services-industries-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .services-industry {
    padding: 22px 18px;
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  .services-title {
    font-size: 2.5rem; /* Sesuai dengan hero-title di front-page */
    letter-spacing: -0.8px;
    margin-bottom: 16px;
  }
  
  .services-desc {
    font-size: 18px; /* Sesuai dengan hero-desc di front-page */
    margin-bottom: 30px;
    padding: 0 20px;
  }
  
  .services-industries-title {
    font-size: 28px; /* Sesuai dengan section-header h2 di front-page */
    margin-bottom: 20px;
  }
  
  .services-cta h2 {
    font-size: 28px; /* Sesuai dengan section-header h2 di front-page */
  }
  
  .services-cta p {
    font-size: 16px; /* Sesuai dengan section-header p di front-page */
    padding: 0 20px;
  }
  
  .services-card-row {
    margin: 0 10px;
  }
  
  .services-card-image {
    height: 200px;
  }
  
  /* Mobile Services Card Layout - Icon+Title horizontal, Description below, Image at bottom */
  .services-card-row {
    flex-direction: column !important;
    text-align: left;
    gap: 30px;
    padding: 40px 28px;
  }
  
  .services-card-row:nth-child(even) {
    flex-direction: column !important;
  }
  
  .services-card-content {
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    width: 100%;
  }
  
  .services-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    margin-bottom: 16px;
  }
  
  .services-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }
  
  .services-card .services-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  
  .services-card-content h3 {
    text-align: left;
    width: 100%;
    margin-bottom: 0;
    align-self: flex-start;
    font-size: 1.6rem;
    flex: 1;
  }
  
  .services-card-content p {
    text-align: left;
    width: 100%;
    line-height: 1.6;
    margin-top: 12px;
    font-size: 1rem;
  }
  
  /* Mobile Services Industry Layout - Icon+Title in one row, Description below */
  .services-industries-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .services-industry {
    padding: 28px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .services-industry-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  
  .services-industry-icon {
    margin: 0;
    flex-shrink: 0;
  }
  
  .services-industry h4 {
    text-align: left;
    margin-bottom: 0;
    flex: 1;
  }
  
  .services-industry p {
    text-align: left;
    margin: 0;
    width: 100%;
  }
}

/* Mobile Medium */
@media (max-width: 600px) {
  .services-industries-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .services-industry {
    padding: 24px 16px;
  }
  
  .services-card-row {
    padding: 36px 24px;
    border-radius: 16px;
    margin: 0 10px;
    gap: 24px;
  }
  
  .services-card-content {
    gap: 18px;
  }
  
  .services-card-header {
    gap: 14px;
    margin-bottom: 14px;
  }
  
  .services-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }
  
  .services-card-icon .iconify {
    font-size: 2rem;
  }
  
  .services-card .services-card-icon {
    width: 44px;
    height: 44px;
  }
  
  .services-card .services-card-icon .iconify {
    font-size: 24px;
  }
  
  .services-card-content h3 {
    font-size: 1.4rem; /* Sesuai dengan about-header h2 di front-page */
    text-align: left;
    width: 100%;
    margin-bottom: 0;
    align-self: center;
  }
  
  .services-card-content p {
    font-size: 0.95rem; /* Sesuai dengan about-header p di front-page */
    margin-top: 10px;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
    word-break: break-word;
    width: 100%;
    line-height: 1.6;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .services-title {
    font-size: 2rem; /* Sesuai dengan hero-title di front-page */
    letter-spacing: -0.5px;
  }
  
  .services-desc {
    font-size: 16px; /* Sesuai dengan hero-desc di front-page */
    padding: 0 15px;
    color: #4b5563;
  }
  
  .services-industries-title {
    font-size: 28px; /* Sesuai dengan about-header h2 di front-page */
  }
  
  .services-cta {
    padding: 40px 0;
  }
  
  .services-cta h2 {
    font-size: 29px; /* Sesuai dengan about-header h2 di front-page */
  }
  
  .services-cta p {
    font-size: 15px; /* Sesuai dengan about-header p di front-page */
    margin-bottom: 24px;
  }
  
  .services-cta .btn-primary {
    font-size: 15px; /* Sesuai dengan btn di front-page */
    padding: 12px 28px;
  }
  
  .services-card-row {
    margin: 0 5px;
    padding: 32px 20px;
    gap: 20px;
  }
  
  .services-card-content {
    gap: 16px;
  }
  
  .services-card-header {
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .services-card-content h3 {
    font-size: 18px;
    text-align: left;
    width: 100%;
    margin-bottom: 0;
    align-self: flex-start;
    flex: 1;
  }
  
  .services-card-content p {
    font-size: 16px;
    margin-top: 8px;
    text-align: left;
    width: 100%;
    line-height: 1.6;
  }
  
  .services-industry {
    padding: 20px 12px;
  }
  
  .services-industry h4 {
    font-size: 18px;
  }
  
  .services-industry p {
    font-size: 16px;
  }
  
  .services-card-image {
    height: 180px;
    border-radius: 12px;
  }
  
  /* Mobile Small Services Card Icons */
  .services-card-icon {
    width: 48px;
    height: 48px;
  }
  
  .services-card .services-card-icon {
    width: 40px;
    height: 40px;
  }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
  .services-title {
    font-size: 28px; /* Sesuai dengan hero-title di front-page */
  }
  
  .services-desc {
    font-size: 15px; /* Sesuai dengan hero-desc di front-page */
  }
  
  .services-card-row {
    margin: 0;
    border-radius: 12px;
    gap: 16px;
    padding: 28px 16px;
  }
  
  .services-card-content {
    gap: 14px;
  }
  
  .services-card-header {
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .services-cta .btn-primary {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  /* Mobile Extra Small Services Card Icons */
  .services-card-icon {
    width: 44px;
    height: 44px;
  }
  
  .services-card .services-card-icon {
    width: 36px;
    height: 36px;
  }
  
  .services-card-content h3 {
    font-size: 1.2rem; /* Sesuai dengan about-header h2 di front-page */
    text-align: left;
    width: 100%;
    margin-bottom: 0;
    align-self: flex-start;
    flex: 1;
  }
  
  .services-card-content p {
    font-size: 0.85rem; /* Sesuai dengan about-header p di front-page */
    margin-top: 6px;
    text-align: left;
    width: 100%;
    line-height: 1.6;
  }
}

/* ========================================
   RESPONSIVE SECTION PADDING
======================================== */

/* Desktop (992px and above) */
@media (min-width: 992px) {
  .section {
    padding: 60px 0;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .section {
    padding: 50px 0;
  }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}

/* Mobile Medium (480px - 575px) */
@media (max-width: 575px) {
  .section {
    padding: 50px 0;
  }
}

/* Mobile Small (375px - 479px) */
@media (max-width: 479px) {
  .section {
    padding: 40px 0;
  }
}

/* Mobile Extra Small (320px - 374px) */
@media (max-width: 374px) {
  .section {
    padding: 35px 0;
  }
}