/* ═══════════════════════════════════════════════════════════════ */
/* SERVICES PAGE TEMPLATE STYLES                                   */
/* ═══════════════════════════════════════════════════════════════ */

/* ═══════════════ BREADCRUMB SECTION ═══════════════ */
.breadcrumb-section {
  padding: 40px 20px;
  background: var(--color-white);
}

.breadcrumb-section .container {
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.breadcrumb-link {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--color-orange);
}

.breadcrumb-separator {
  color: var(--color-gray-blue);
  font-weight: 400;
}

.breadcrumb-current {
  color: var(--color-gray-blue);
  font-weight: 400;
}

/* ═══════════════ SERVICES CONTENT SECTION ═══════════════ */
.services-content {
  padding: 0 20px 20px;
  background: var(--color-white);
}

.services-content .container {
  margin: 0 auto;
}

/* ═══════════════ SERVICES GRID ═══════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0;
}

/* ═══════════════ SERVICE CARD ═══════════════ */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Service Image */
.service-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--color-light-gray);
}

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

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

/* Service Body */
.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Service Title */
.service-body h3.service-title {
  font-size: 18px;
  color: var(--color-dark);
  margin: 0 0 16px 0;
  line-height: 1.4;
  font: var(--textH1Font);
  letter-spacing: -0.3px;
}

.service-body h3.service-title--secondary {
  font-family: var(--font-body);
  line-height: 34px;
  font-size: 30px;
}

.service-card .service-body h3.service-title--secondary {
  min-height: 62px;
}

/* Service Divider */
.service-divider {
  height: 1px;
  background: #d0d2d4;
  margin-bottom: 16px;
}

/* Service Price */
.service-price {
  font-size: 16px;
  color: var(--color-dark);
  margin: 0 0 20px 0;
  /* font-family: 'Wix Madefor Text', sans-serif; */
}

/* Book Now Button */
.book-now-btn {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.book-now-btn:hover {
  background: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 94, 0, 0.3);
}

.book-now-btn:active {
  transform: translateY(0);
}

/* ═══════════════ CTA SECTION ═══════════════ */
.cta-section {
  padding: 60px 20px;
  background: var(--color-white);
  text-align: center;
}

.cta-section .container {
  margin: 0 auto;
}

.cta-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-button {
  display: inline-block;
  background: var(--color-orange);
  color: var(--color-white);
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

.cta-button:hover {
  background: var(--color-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 94, 0, 0.3);
}

.cta-button:active {
  transform: translateY(0);
}

/* ═══════════════ ANGELEYE SOFTWARE SECTION ═══════════════ */
.angeleye-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  margin: 0 auto;
  min-height: 541px;
}

.angeleye-image {
  overflow: hidden;
  min-height: 541px;
}

.angeleye-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.angeleye-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px;
  background: var(--color-dark);
  color: var(--color-white);
}

.angeleye-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: 24px;
}

.angeleye-content h3 {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-white);
  margin: 24px 0 16px 0;
  font-weight: 600;
}

.angeleye-content p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-light-gray);
  margin: 0 0 16px 0;
}

.angeleye-features {
   list-style: none;
   padding: 0;
   margin: 16px 0 24px 0;
   display: flex;
   flex-direction: column;
   gap: 0;
}

.angeleye-features li {
   font-family: var(--font-body);
   font-size: 16px;
   color: var(--color-light-gray);
   line-height: 1.8;
   margin-bottom: 8px !important;
   padding-left: 24px;
   position: relative;
}

.angeleye-features li:before {
  content: "⦁";
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: bold;
}

.angeleye-tagline {
  font-size: 16px;
  color: var(--color-orange);
  font-weight: 600;
  margin-top: 24px;
}

/* ═══════════════ ANGELEYE HOW IT WORKS SECTION ═══════════════ */
.angeleye-how-section {
  display: flex;
  gap: 42px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1440px;
  min-height: 380px;
  align-items: flex-start;
  justify-items: center;
  padding: 40px 40px;
  background: var(--color-white);
}

@media (max-width: 768px) {
  .angeleye-how-section {
    flex-direction: column-reverse;
  }
}

.angeleye-how-content {
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   padding: 0 40px 0 0;
   max-width: 600px;
}

.angeleye-how-content .cta-content {
  margin-top: 24px;
}

.angeleye-how-content h3 {
   font-family: var(--font-body);
   font-size: 32px;
   color: var(--color-dark);
   margin: 0 0 8px 0;
   font-weight: 600;
}

.angeleye-how-content p,
.angeleye-how-content li {
   font-family: var(--font-body);
   font-size: 15px;
   color: var(--color-dark);
   line-height: 1.6;
   margin: 16px 0;
}

.angeleye-how-content p.angeleye-tagline {
   color: var(--color-orange);
   font-weight: 600;
   margin-top: 16px;
}

.angeleye-how-image {
  width: 100%;
  max-width: 34%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .angeleye-how-image {
    max-width: initial;
  }
}

.angeleye-how-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ═══════════════ RESPONSIVE DESIGN ═══════════════ */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-content {
    padding: 60px 20px;
  }

  .service-image {
    height: 220px;
  }

  .service-body {
    padding: 20px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-price {
    font-size: 18px;
  }

  .breadcrumb {
    font-size: 14px;
  }

  .angeleye-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .angeleye-image {
    min-height: 300px;
  }

  .angeleye-content {
    padding: 40px 40px;
  }

  .angeleye-content h2 {
    font-size: clamp(24px, 3vw, 32px);
  }

  .angeleye-content h3 {
    font-size: 16px;
  }

  .angeleye-content p,
  .angeleye-features li {
    font-size: 15px;
  }

  .angeleye-how-section {
    grid-template-columns: 1fr 0.4fr;
    padding: 40px 20px;
    min-height: auto;
  }

  .angeleye-how-content {
    padding: 0 20px 0 0;
  }

  .angeleye-how-content h3 {
    font-size: 20px;
  }

  .angeleye-how-content p,
  .angeleye-how-content li {
    font-size: 15px;
  }

  .cta-section {
    padding: 40px 20px;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-content {
    padding: 40px 16px;
  }

  .breadcrumb-section {
    padding: 24px 16px;
  }

  .service-image {
    height: 200px;
  }

  .service-body {
    padding: 16px;
  }

  .service-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .service-price {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .book-now-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .breadcrumb {
    font-size: 13px;
    gap: 8px;
  }

  .angeleye-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .angeleye-image {
    min-height: 250px;
  }

  .angeleye-content {
    padding: 30px 20px;
  }

  .angeleye-content h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .angeleye-content h3 {
    font-size: 15px;
    margin: 20px 0 12px 0;
  }

  .angeleye-content p,
  .angeleye-features li {
    font-size: 14px;
  }

  .angeleye-features li {
    margin-bottom: 10px;
    padding-left: 20px;
  }

  .angeleye-how-section {
    grid-template-columns: 1fr;
    padding: 30px 16px;
    min-height: auto;
  }

  .angeleye-how-content {
    padding: 0 0 30px 0;
  }

  .angeleye-how-content h3 {
    font-size: 18px;
  }

  .angeleye-how-content p,
  .angeleye-how-content li {
    font-size: 14px;
  }

  .angeleye-how-image {
    width: 60%;
    margin: 0 auto;
  }

  .cta-section {
    padding: 30px 16px;
  }

  .cta-button {
    padding: 14px 32px;
    font-size: 14px;
  }
}

/* ═══════════════ CSS VARIABLES FALLBACK ═══════════════ */
:root {
  --color-white: #ffffff;
  --color-dark: #1b2030;
  --color-gray-blue: #6b7280;
  --color-light-gray: #e5e7eb;
  --color-orange: #ff5e00;
  --color-orange-hover: #e55000;
}
