/* ===============================
   SERVICES PAGE – PREMIUM UI
================================ */

.services-hero {
  padding: 100px 0 70px;
  text-align: center;
}

.services-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.services-hero .hero-subtitle {
  max-width: 820px;
  margin: auto;
  font-size: 18px;
  color: #666;
}

.service-tags {
  margin-top: 28px;
}

.service-tags span {
  display: inline-block;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 20px;
  background: #f5f6f8;
  font-size: 13px;
  font-weight: 500;
}
/* ===========================================
   SERVICES PAGE – PREMIUM UI
=========================================== */

.services-list {
  padding: 80px 0;
}

/* ===== SERVICE BLOCK LAYOUT ===== */

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 120px;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse .service-content {
  direction: ltr;
}

.service-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.15);
}

/* ===== TEXT ===== */

.service-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

.service-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

/* ===========================================
   PREMIUM LINK STYLE (FRAMER-LIKE)
=========================================== */

.service-content li {
  margin-bottom: 12px;
}

.service-content a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  padding-bottom: 3px;
  display: inline-block;
  transition: color 0.3s ease;
}

/* animated underline */
.service-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #e4002b;
  transition: width 0.35s ease;
}

.service-content a:hover {
  color: #e4002b;
}

.service-content a:hover::after {
  width: 100%;
}

/* arrow motion */
.service-content a::before {
  content: "→";
  opacity: 0;
  margin-right: 6px;
  transform: translateX(-6px);
  display: inline-block;
  transition: all 0.25s ease;
}

.service-content a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* ===== CTA BUTTON ===== */

.btn-primary-rounded {
  display: inline-block;
  margin-top: 10px;
  padding: 14px 38px;
  border-radius: 40px;
  border: none;
  background: #e4002b;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-rounded:hover {
  background: #c80025;
  transform: translateY(-2px);
}
/* ===============================
   OUR EXPERTISE – PREMIUM UI
================================ */

.expertise-section {
  padding: 100px 0;
  background: #ffffff;
}

.expertise-section .section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.expertise-section .section-header p {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #666;
  font-size: 17px;
}

/* GRID */

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */

.expertise-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  text-decoration: none;
  transition: all 0.45s ease;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 80px rgba(0, 0, 0, 0.15);
}

/* IMAGE */

.expertise-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.expertise-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */

.expertise-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.05)
  );
}

/* CONTENT */

.expertise-content {
  position: absolute;
  bottom: 20px;
  left: 22px;
  z-index: 2;
}

.expertise-content h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .expertise-image {
    height: 220px;
  }
}

/* ===========================================
   RESPONSIVE
=========================================== */

@media (max-width: 992px) {
  .service-block,
  .service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .service-content h2 {
    font-size: 28px;
  }
}
