/* ─────── SERVICES SECTION ─────── */

.services-section {
  padding: 100px 20px;
  background: var(--bg1);
}

.services-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e2e8f0 0%, #a0aec0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-header p {
  font-size: 16px;
  color: var(--text2);
  letter-spacing: 0.3px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.service-card {
  background: linear-gradient(135deg, rgba(14, 34, 63, 0.9) 0%, rgba(10, 25, 47, 0.95) 100%);
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(31, 134, 255, 0.1) 0%, rgba(19, 191, 159, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 12px;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 20px 48px rgba(31, 134, 255, 0.2), 
              0 0 1px rgba(31, 134, 255, 0.3);
  transform: translateY(-8px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-overlay {
  opacity: 0.15;
}

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

.service-image-container {
  position: relative;
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(31, 134, 255, 0.15) 0%, rgba(19, 191, 159, 0.1) 100%);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 13, 31, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-block;
  background: rgba(31, 134, 255, 0.65);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 6px 12px;
  border-radius: 20px;
  border: none;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.service-card:hover .service-badge {
  background: rgba(31, 134, 255, 1);
  transform: translateX(2px);
}

.service-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.service-title {
  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
  line-height: 1.25;
}

.service-description {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.4;
  margin-bottom: 10px;
  flex-grow: 1;
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border-bottom: 2px solid transparent;
}

.service-link:hover {
  border-bottom-color: var(--blue);
  transform: translateX(4px);
}

.service-link span {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link span {
  transform: translateX(4px);
}

/* ─────── SERVICES RESPONSIVE ─────── */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .services-header h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 20px;
  }

  .services-header h2 {
    font-size: 32px;
  }

  .services-header p {
    font-size: 14px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-image {
    height: 150px;
  }

  .service-content {
    padding: 16px;
  }

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

  .service-description {
    font-size: 12px;
  }
}

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

  .service-image {
    height: 150px;
  }

  .services-header h2 {
    font-size: 28px;
  }
}

/* ─────── SERVICE REQUEST FORM ─────── */

.service-request-card {
  background: linear-gradient(135deg, rgba(14, 34, 63, 0.9) 0%, rgba(10, 25, 47, 0.95) 100%);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 48px rgba(31, 134, 255, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-input {
  padding: 12px 16px;
  background: rgba(7, 22, 45, 0.6);
  border: 1px solid var(--border2);
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(31, 134, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(31, 134, 255, 0.1);
}

.form-input::placeholder {
  color: #6b7a8a;
}

/* Select styling for dark theme */
select.form-input {
  color-scheme: dark;
  background-color: var(--bg2) !important;
  color: #fff !important;
  accent-color: var(--blue);
}

select.form-input option {
  background-color: var(--bg2) !important;
  color: #fff !important;
  padding: 8px;
}

select.form-input option:checked {
  background-color: var(--blue) !important;
  background: var(--blue) !important;
  color: #fff !important;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  padding: 12px 16px;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(31, 134, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(31, 134, 255, 0.1);
}

.form-error {
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 4px;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.form-actions .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form-actions .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.service-request-message {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────── SERVICE REQUEST — TWO-COLUMN LAYOUT ─────── */

.sreq-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
}

.sreq-form-col {
  background: linear-gradient(135deg, rgba(14,34,63,0.9) 0%, rgba(10,25,47,0.95) 100%);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 20px 48px rgba(31,134,255,0.08);
}

.sreq-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5a7a9a;
  margin-bottom: 16px;
  margin-top: 24px;
}

.sreq-section-label:first-of-type {
  margin-top: 0;
}

/* WhatsApp button */
.sreq-whatsapp-btn {
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
}

.sreq-whatsapp-btn:hover {
  background: #1ebe59 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.25) !important;
}

/* ─── Summary panels ─── */

.sreq-summary-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sreq-panel {
  background: linear-gradient(135deg, rgba(14,34,63,0.9) 0%, rgba(10,25,47,0.95) 100%);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 20px 22px;
}

.sreq-panel-header {
  font-size: 13px;
  font-weight: 700;
  color: #c8daf0;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.8px;
  color: #5a7a9a;
}

/* Steps */
.sreq-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.sreq-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.sreq-step-active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(31,134,255,0.25);
}

.sreq-step-done {
  background: rgba(19,191,160,0.2);
  color: #13bfa0;
  border: 1px solid rgba(19,191,160,0.4);
}

.sreq-step-idle {
  background: rgba(255,255,255,0.04);
  color: #4a6580;
  border: 1px solid var(--border2);
}

.sreq-step-line {
  flex: 1;
  height: 2px;
  transition: background 0.3s ease;
}

.sreq-step-line-done {
  background: rgba(19,191,160,0.4);
}

.sreq-step-line-idle {
  background: var(--border2);
}

/* Selected service */
.sreq-selected-service {
  background: rgba(31,134,255,0.07);
  border: 1px solid rgba(31,134,255,0.2);
  border-radius: 10px;
  padding: 14px 16px;
}

/* Contact preview */
.sreq-contact-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sreq-preview-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border2);
}

.sreq-preview-field:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sreq-preview-label {
  font-size: 11px;
  color: #4a6580;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.sreq-preview-value {
  font-size: 14px;
  color: #c8daf0;
  font-weight: 500;
}

/* How it works list */
.sreq-how-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sreq-how-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #7a94b0;
  line-height: 1.5;
}

.sreq-how-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(31,134,255,0.15);
  color: #1f86ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* Notes list */
.sreq-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sreq-notes-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7a94b0;
}

/* ─── Responsive ─── */

/* ─── Responsive ─── */

@media (max-width: 900px) {
  .sreq-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sreq-summary-col {
    order: -1;
  }

  /* Em tablet, o painel de resumo vira horizontal com scroll */
  .sreq-summary-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Link "Ver todos" fica full width */
  .sreq-summary-col > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  /* Volta a coluna única em mobile */
  .sreq-summary-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .sreq-form-col {
    padding: 24px 20px;
  }

  /* form-row vira coluna única */
  .sreq-form-col .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Botões de acção */
  .sreq-form-col .btn {
    font-size: 14px;
    padding: 13px 16px;
  }

  /* Painel de resumo mais compacto */
  .sreq-panel {
    padding: 16px 18px;
  }

  .sreq-panel-header {
    margin-bottom: 10px;
  }

  /* Steps menores */
  .sreq-step {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  /* Serviço seleccionado */
  .sreq-selected-service {
    padding: 12px 14px;
  }

  .sreq-selected-service div:first-child {
    font-size: 14px;
  }

  /* Preview de contacto */
  .sreq-preview-value {
    font-size: 13px;
  }

  /* Listas */
  .sreq-how-list li,
  .sreq-notes-list li {
    font-size: 12px;
  }

  .sreq-how-num {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

@media (max-width: 400px) {
  .sreq-form-col {
    padding: 20px 16px;
  }

  .sreq-panel {
    padding: 14px 16px;
  }

  /* Inputs maiores para evitar zoom no iOS */
  .sreq-form-col .form-input {
    font-size: 16px;
  }

  .sreq-section-label {
    font-size: 10px;
  }
}

/* ─── Responsive ─── */

@media (max-width: 900px) {
  .sreq-layout {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .sreq-summary-col {
    order: -1;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sreq-summary-col > a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .sreq-layout {
    display: block !important;
  }

  .sreq-summary-col {
    display: block !important;
    margin-bottom: 24px;
  }

  .sreq-form-col {
    padding: 24px 20px;
  }

  .sreq-form-col .form-row {
    display: block !important;
  }

  .sreq-form-col .form-row .form-group {
    margin-bottom: 24px;
  }

  .sreq-panel {
    padding: 16px 18px;
    margin-bottom: 10px;
  }

  .sreq-step {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .sreq-preview-value {
    font-size: 13px;
  }

  .sreq-how-list li,
  .sreq-notes-list li {
    font-size: 12px;
  }

  .sreq-how-num {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .sreq-form-col .btn {
    font-size: 14px;
    padding: 13px 16px;
  }
}

@media (max-width: 400px) {
  .sreq-form-col {
    padding: 20px 16px;
  }

  .sreq-panel {
    padding: 14px 16px;
  }

  .sreq-form-col .form-input {
    font-size: 16px;
  }

  .sreq-section-label {
    font-size: 10px;
  }
}

.service-detail-hero {
  padding: 60px 20px;
  background: linear-gradient(180deg, rgba(10, 28, 54, 0.8), rgba(7, 22, 45, 0.6));
  border-bottom: 1px solid var(--border1);
  position: relative;
  overflow: hidden;
}

/* Network Background */
.service-hero-network-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.service-hero-network-svg {
  width: 100%;
  height: 100%;
}

.service-network-lines {
  opacity: 0.6;
}

.service-service-network-lines line {
  stroke-linecap: round;
  animation: service-line-flow 8s infinite ease-in-out;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
}

.service-network-lines line:nth-child(1) {
  animation-delay: 0s;
}

.service-network-lines line:nth-child(2) {
  animation-delay: 0.5s;
}

.service-network-lines line:nth-child(3) {
  animation-delay: 1s;
}

.service-network-lines line:nth-child(4) {
  animation-delay: 1.5s;
}

.service-network-lines line:nth-child(5) {
  animation-delay: 2s;
}

.service-network-lines line:nth-child(6) {
  animation-delay: 2.5s;
}

.service-network-lines line:nth-child(7) {
  animation-delay: 3s;
}

.service-network-lines line:nth-child(8) {
  animation-delay: 3.5s;
}

@keyframes service-line-flow {
  0% {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

.service-network-nodes {
  filter: drop-shadow(0 0 8px rgba(31, 134, 255, 0.5));
}

.service-network-node {
  animation: service-node-pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 6px currentColor);
}

.service-network-node:nth-child(1) {
  animation-delay: 0s;
}

.service-network-node:nth-child(2) {
  animation-delay: 0.3s;
}

.service-network-node:nth-child(3) {
  animation-delay: 0.6s;
}

.service-network-node:nth-child(4) {
  animation-delay: 0.9s;
}

.service-network-node:nth-child(5) {
  animation-delay: 1.2s;
}

.service-network-node:nth-child(6) {
  animation-delay: 1.5s;
}

@keyframes service-node-pulse {
  0% {
    r: 8;
    opacity: 0.4;
  }
  50% {
    r: 14;
    opacity: 1;
  }
  100% {
    r: 8;
    opacity: 0.4;
  }
}

.breadcrumb-nav {
  position: relative;
  z-index: 3;
}

.service-detail-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.service-detail-header {
  z-index: 2;
}

.service-detail-title {
  font-size: 48px;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1.2;
  margin: 16px 0 24px;
}

.service-detail-subtitle {
  font-size: 18px;
  color: #a5bdd8;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}

.service-detail-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31, 134, 255, 0.2);
  box-shadow: 0 20px 60px rgba(31, 134, 255, 0.15);
}

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

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

.service-detail-section {
  padding: 80px 20px;
  background: var(--bg1);
  position: relative;
}

.service-detail-animated-bg {
  overflow: hidden;
}

.service-detail-section-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(31, 134, 255, 0.03) 50px,
      rgba(31, 134, 255, 0.03) 51px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(31, 134, 255, 0.03) 50px,
      rgba(31, 134, 255, 0.03) 51px
    );
  animation: lines-flow 20s linear infinite;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes lines-flow {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 100px 100px, 100px 100px;
  }
}

.service-detail-inner {
  position: relative;
  z-index: 1;
}

.service-detail-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.service-detail-content {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail-heading {
  font-size: 32px;
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 24px;
}

.service-detail-text {
  font-size: 16px;
  color: #a5bdd8;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ─────── CONTENT CARD (DESCRIPTION + HIGHLIGHTS) ─────── */

.service-detail-content-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(31, 134, 255, 0.08), rgba(19, 191, 159, 0.04));
  border: 1px solid var(--border2);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(31, 134, 255, 0.1);
}

.service-detail-text-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-detail-text-column .service-detail-heading {
  margin-bottom: 24px;
}

.service-detail-highlights-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-detail-highlights-column .service-detail-heading {
  margin-bottom: 32px;
}

.service-highlights-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-highlights-checklist .service-highlight-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--bg1);
  border: 1px solid var(--border2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-highlights-checklist .service-highlight-item:hover {
  border-color: var(--blue);
  background: rgba(31, 134, 255, 0.08);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(31, 134, 255, 0.15);
}

.service-highlights-checklist .highlight-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(31, 134, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: all 0.3s ease;
}

.service-highlights-checklist .service-highlight-item:hover .highlight-icon {
  background: rgba(31, 134, 255, 0.25);
  color: #ffffff;
  transform: scale(1.1);
}

.service-highlights-checklist .highlight-content {
  flex: 1;
  display: flex;
  align-items: center;
}

.service-highlights-checklist .highlight-content p {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.5;
}

/* ─────── CTA SECTION ─────── */

.service-detail-cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(31, 134, 255, 0.1), rgba(19, 191, 159, 0.05));
}

.service-detail-cta {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 60px;
  background: var(--bg1);
  border: 1px solid var(--border2);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(31, 134, 255, 0.15);
}

.service-detail-cta h2 {
  font-size: 32px;
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.service-detail-cta p {
  font-size: 16px;
  color: #a5bdd8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.service-detail-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.service-detail-cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ─────── RELATED SERVICES ─────── */

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-related-card {
  background: var(--bg1);
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-related-card:hover {
  border-color: var(--blue);
  box-shadow: 0 20px 48px rgba(31, 134, 255, 0.2);
  transform: translateY(-8px);
}

.service-related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

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

.service-related-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e2e8f0;
  padding: 20px 20px 12px;
  margin: 0;
}

.service-related-card p {
  font-size: 14px;
  color: #a5bdd8;
  padding: 0 20px 16px;
  margin: 0;
  line-height: 1.6;
}

.service-related-card .service-link {
  display: inline-flex;
  padding: 12px 20px;
  margin: 0 20px 20px;
}

/* ─────── SERVICE DETAIL RESPONSIVE ─────── */

@media (max-width: 1024px) {
  .service-detail-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-detail-title {
    font-size: 36px;
  }

  .service-detail-image {
    height: 300px;
  }

  .service-detail-content-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .service-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-cta-buttons {
    justify-content: flex-start;
  }

  .service-detail-section-lines {
    background-image: 
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        rgba(31, 134, 255, 0.02) 40px,
        rgba(31, 134, 255, 0.02) 41px
      ),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 40px,
        rgba(31, 134, 255, 0.02) 40px,
        rgba(31, 134, 255, 0.02) 41px
      );
  }
}

@media (max-width: 768px) {
  .service-detail-hero {
    padding: 60px 20px;
  }

  .service-detail-title {
    font-size: 28px;
  }

  .service-detail-subtitle {
    font-size: 16px;
  }

  .service-detail-section {
    padding: 60px 20px;
  }

  .service-detail-heading {
    font-size: 24px;
  }

  .service-detail-text {
    font-size: 14px;
  }

  .service-detail-content-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
  }

  .service-detail-image {
    height: 250px;
  }

  .service-detail-cta-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }

  .service-detail-cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .service-detail-section-lines {
    background-image: 
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 30px,
        rgba(31, 134, 255, 0.015) 30px,
        rgba(31, 134, 255, 0.015) 31px
      ),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 30px,
        rgba(31, 134, 255, 0.015) 30px,
        rgba(31, 134, 255, 0.015) 31px
      );
  }

  .service-related-card h3 {
    font-size: 16px;
  }

  .service-related-card p {
    font-size: 13px;
  }

  .service-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .service-detail-hero {
    padding: 40px 16px;
  }

  .service-detail-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .service-detail-subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .service-detail-image {
    height: 200px;
  }

  .service-detail-section {
    padding: 40px 16px;
  }

  .service-detail-heading {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .service-detail-text {
    font-size: 13px;
  }

  .service-detail-content-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  .service-highlights-checklist {
    gap: 12px;
  }

  .service-highlights-checklist .service-highlight-item {
    padding: 12px;
    gap: 12px;
  }

  .service-highlights-checklist .highlight-icon {
    width: 28px;
    height: 28px;
  }

  .service-highlights-checklist .highlight-content p {
    font-size: 12px;
  }

  .service-detail-cta-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
  }

  .service-detail-cta-buttons .btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
  }

  .service-detail-section-lines {
    background-image: 
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(31, 134, 255, 0.01) 20px,
        rgba(31, 134, 255, 0.01) 21px
      ),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        rgba(31, 134, 255, 0.01) 20px,
        rgba(31, 134, 255, 0.01) 21px
      );
  }

  .service-related-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-related-card img {
    height: 150px;
  }

  .service-related-card h3 {
    font-size: 15px;
    padding: 16px 16px 8px;
  }

  .service-related-card p {
    font-size: 12px;
    padding: 0 16px 12px;
  }

  .service-related-card .service-link {
    padding: 10px 16px;
    margin: 0 16px 16px;
    font-size: 11px;
  }
}
