/* ===========================
   SERVICES PAGE STYLES
=========================== */

/* Reset link styles inside nav */
.navigation a {
  text-decoration: none;
  color: inherit;
}

/* ===========================
   SERVICES HERO
=========================== */
.services-hero {
  padding: 140px 10% 100px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.95)
  );
}

.services-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.services-hero p {
  max-width: 850px;
  margin: auto;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ===========================
   SERVICE BLOCKS
=========================== */
.service-block {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 120px 10%;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.service-image {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-image:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.service-content {
  flex: 1;
}

.service-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-content p {
  opacity: 0.9;
  margin-bottom: 18px;
}

.service-content ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.service-content ul li {
  margin-bottom: 10px;
  position: relative;
  list-style: none;
  padding-left: 20px;
}

.service-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3f51b5;
}

.service-note {
  font-style: italic;
  opacity: 0.7;
  margin-bottom: 30px;
}

/* BUTTON */
.service-content button {
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #3f51b5, #2196f3);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-content button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(63,81,181,0.35);
}

/* ===========================
   FINAL CTA
=========================== */
.services-final-cta {
  padding: 140px 10%;
  text-align: center;
  background: linear-gradient(
    to right,
    rgba(63,81,181,0.15),
    rgba(33,150,243,0.1)
  );
}

.services-final-cta h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.services-final-cta p {
  margin-bottom: 35px;
  opacity: 0.85;
}

.services-final-cta button {
  padding: 16px 40px;
  border-radius: 35px;
  border: none;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-final-cta button:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(255,87,34,0.4);
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-left"] {
  transform: translateX(-60px);
}

[data-animate="fade-right"] {
  transform: translateX(60px);
}

[data-animate="zoom-in"] {
  transform: scale(0.85);
}

.show {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .service-block {
    flex-direction: column;
    padding: 90px 8%;
  }

  .service-block.reverse {
    flex-direction: column;
  }

  .service-content h2 {
    font-size: 1.9rem;
  }
}
/* ===============================
   SERVICES PAGE ENHANCEMENTS
================================ */

.services-header {
  text-align: center;
  padding: 90px 8% 60px;
}

.services-header h2 {
  font-size: clamp(28px, 4vw, 46px);
  color: #fbce60;
}

.services-header p {
  max-width: 720px;
  margin: 15px auto 0;
  font-size: 16px;
  opacity: 0.9;
}

/* READ MORE LOGIC */
.service-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.45s ease;
}

.service-more.show {
  max-height: 500px;
  opacity: 1;
  margin-top: 10px;
}

.service-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.read-more-toggle {
  background: transparent;
  border: none;
  font-weight: 600;
  color: #57b9ea;
  cursor: pointer;
  padding: 0;
}

.read-more-toggle:hover {
  text-decoration: underline;
}

/* DARK MODE SUPPORT */
body[data-theme="dark"] .services-header {
  background-color: transparent;
}

body[data-theme="dark"] .service-more {
  color: #e6e6e6;
}
