/* ============================================
   PAGE-SPECIFIC STYLES — Services
   Loaded only on the services page.
   Design system: ivons-design-system.css (global)
   ============================================ */

/* --- 1. HERO --- */
.services-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #4F0C1F 0%, #8A1538 25%, #A32A4C 50%, #B08D57 100%);
  background-size: 300% 300%;
  animation: auroraShift 10s ease infinite;
  color: white;
}
.services-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.services-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,0.15) 0%, transparent 70%);
  border-radius: var(--iv-radius-full);
  pointer-events: none;
}
.services-hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(176,141,87,0.08) 0%, transparent 70%);
  border-radius: var(--iv-radius-full);
  pointer-events: none;
}
.services-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.services-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--iv-glass-bg);
  backdrop-filter: var(--iv-glass-blur);
  -webkit-backdrop-filter: var(--iv-glass-blur);
  border: var(--iv-glass-border);
  border-radius: 50px;
  font-size: var(--iv-text-small);
  font-weight: var(--iv-weight-semibold);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--iv-space-6);
}
.services-hero-badge i { color: var(--iv-gold); font-size: 14px; }
.services-hero-title {
  font-size: var(--iv-text-hero);
  font-weight: var(--iv-weight-extrabold);
  line-height: var(--iv-leading-hero);
  color: white;
  margin-bottom: var(--iv-space-5);
}
.services-hero-title span {
  background: linear-gradient(135deg, #D4AF37, #B08D57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto var(--iv-space-8);
}
.services-hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.services-hero .iv-btn-primary {
  background: white;
  color: var(--iv-primary-900);
  font-weight: var(--iv-weight-bold);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.services-hero .iv-btn-primary:hover {
  background: #F5E4E8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.services-hero .iv-btn-outline {
  background: rgba(255,255,255,0.15);
  backdrop-filter: var(--iv-glass-blur);
  -webkit-backdrop-filter: var(--iv-glass-blur);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.services-hero .iv-btn-outline:hover {
  background: rgba(255,255,255,0.9);
  color: var(--iv-primary-900);
  border-color: transparent;
  text-shadow: none;
}
.services-hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--iv-space-8);
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.services-hero-stat { text-align: center; }
.services-hero-stat-num {
  font-size: 32px;
  font-weight: var(--iv-weight-extrabold);
  font-family: var(--iv-font-en);
  color: white;
  display: block;
}
.services-hero-stat-label {
  font-size: var(--iv-text-small);
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* --- 2. SERVICES GRID --- */
.services-list {
  padding: 80px 0;
  background: var(--iv-bg-page);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--iv-space-6);
  margin-top: var(--iv-space-12);
}
.service-card {
  background: white;
  border-radius: var(--iv-radius-2xl);
  padding: var(--iv-space-8);
  box-shadow: var(--iv-shadow-clay);
  border: 1px solid var(--iv-border-light);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--iv-shadow-clay-hover);
  border-color: var(--iv-primary-200);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--iv-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--iv-space-5);
  color: white;
  font-size: 24px;
}
.service-card h3 {
  font-size: 20px;
  font-weight: var(--iv-weight-bold);
  color: var(--iv-text-primary);
  margin-bottom: var(--iv-space-3);
}
.service-card > p {
  font-size: var(--iv-text-small);
  color: var(--iv-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--iv-space-5);
}
.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.service-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--iv-text-small);
  color: var(--iv-text-secondary);
}
.service-card-features li i {
  color: var(--iv-primary-700);
  font-size: 16px;
  flex-shrink: 0;
}

/* --- 3. DELIVERABLES --- */
.services-deliverables {
  padding: 80px 0;
  background: white;
}
.services-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--iv-space-6);
  margin-top: var(--iv-space-12);
}
.deliverable-card {
  text-align: center;
  padding: var(--iv-space-8);
  border-radius: var(--iv-radius-2xl);
  background: var(--iv-bg-warm);
  border: 1px solid var(--iv-border-light);
  transition: all 0.3s ease;
}
.deliverable-card:hover {
  background: white;
  box-shadow: var(--iv-shadow-clay);
  transform: translateY(-4px);
}
.deliverable-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--iv-space-5);
  border-radius: var(--iv-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--iv-gradient-primary);
  color: white;
  font-size: 28px;
  box-shadow: var(--iv-shadow-primary);
}
.deliverable-card h3 {
  font-size: 18px;
  font-weight: var(--iv-weight-bold);
  color: var(--iv-text-primary);
  margin-bottom: var(--iv-space-3);
}
.deliverable-card p {
  font-size: var(--iv-text-small);
  color: var(--iv-text-secondary);
  line-height: 1.8;
}

/* --- 4. PROCESS --- */
.services-process {
  padding: 80px 0;
  background: var(--iv-bg-page);
}
.services-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--iv-space-6);
  margin-top: var(--iv-space-12);
  position: relative;
}
.services-process-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to left, var(--iv-primary-200), var(--iv-accent-200), var(--iv-primary-200));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--iv-space-6);
  background: white;
  border-radius: var(--iv-radius-2xl);
  box-shadow: var(--iv-shadow-light);
  border: 1px solid var(--iv-border-light);
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--iv-shadow-clay-hover);
}
.process-step-num {
  position: absolute;
  top: -12px;
  right: var(--iv-space-5);
  font-size: 28px;
  font-weight: var(--iv-weight-extrabold);
  font-family: var(--iv-font-en);
  color: var(--iv-primary-100);
  z-index: 0;
}
.process-step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--iv-space-4);
  border-radius: var(--iv-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 16px;
  font-weight: var(--iv-weight-bold);
  color: var(--iv-text-primary);
  margin-bottom: var(--iv-space-2);
}
.process-step p {
  font-size: var(--iv-text-small);
  color: var(--iv-text-secondary);
  line-height: 1.7;
}

/* --- 5. PORTFOLIO --- */
.services-portfolio {
  padding: 80px 0;
  background: white;
}
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: var(--iv-space-2);
  margin: var(--iv-space-8) 0 var(--iv-space-10);
  flex-wrap: wrap;
}
.portfolio-filter-btn {
  padding: 8px 20px;
  border-radius: var(--iv-radius-pill);
  border: 1.5px solid var(--iv-border);
  background: white;
  color: var(--iv-text-secondary);
  font-size: var(--iv-text-small);
  font-weight: var(--iv-weight-semibold);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--iv-font-ar);
}
.portfolio-filter-btn:hover {
  border-color: var(--iv-primary-500);
  color: var(--iv-primary-700);
}
.portfolio-filter-btn.active {
  background: var(--iv-gradient-primary);
  color: white;
  border-color: transparent;
  box-shadow: var(--iv-shadow-primary);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--iv-space-5);
}
.portfolio-item {
  position: relative;
  border-radius: var(--iv-radius-2xl);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--iv-shadow-light);
  background: #f5f5f5;
}
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--iv-shadow-clay-hover);
}
.portfolio-item.hidden {
  display: none;
}
.portfolio-item-img {
  height: 220px;
  display: block;
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}
.portfolio-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-item:hover .portfolio-item-img img {
  transform: scale(1.05);
}
.portfolio-item-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
/* Video overlay */
.portfolio-item-video .portfolio-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.portfolio-item-video .portfolio-video-overlay i {
  font-size: 56px;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: all 0.3s ease;
}
.portfolio-item-video:hover .portfolio-video-overlay i {
  transform: scale(1.15);
  color: white;
}
.portfolio-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--iv-space-5);
  z-index: 2;
}
.portfolio-item-tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--iv-radius-pill);
  font-size: var(--iv-text-xs);
  color: white;
  font-weight: var(--iv-weight-semibold);
  margin-bottom: 6px;
}
.portfolio-item-info h4 {
  font-size: 15px;
  font-weight: var(--iv-weight-bold);
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* --- Lightbox --- */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.portfolio-lightbox.active {
  display: flex;
}
.portfolio-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.portfolio-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--iv-radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.portfolio-lightbox-content video {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--iv-radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.portfolio-lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  font-size: var(--iv-text-body);
  font-weight: var(--iv-weight-medium);
  font-family: var(--iv-font-ar);
  text-align: center;
  padding: 0 20px;
  max-width: 80vw;
}
.portfolio-lightbox-close,
.portfolio-lightbox-prev,
.portfolio-lightbox-next {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  font-size: 20px;
}
.portfolio-lightbox-close {
  top: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
}
.portfolio-lightbox-prev,
.portfolio-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.portfolio-lightbox-prev { right: 24px; }
.portfolio-lightbox-next { left: 24px; }
.portfolio-lightbox-close:hover,
.portfolio-lightbox-prev:hover,
.portfolio-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .portfolio-lightbox-close { top: 16px; left: 16px; width: 40px; height: 40px; }
  .portfolio-lightbox-prev, .portfolio-lightbox-next { width: 40px; height: 40px; }
  .portfolio-lightbox-prev { right: 12px; }
  .portfolio-lightbox-next { left: 12px; }
  .portfolio-lightbox-caption { bottom: 20px; font-size: var(--iv-text-small); }
}

/* --- 6. TARGET AUDIENCE --- */
.services-target {
  padding: 80px 0;
  background: var(--iv-bg-page);
}
.services-target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--iv-space-6);
  margin-top: var(--iv-space-12);
}
.target-card {
  background: white;
  border-radius: var(--iv-radius-2xl);
  padding: var(--iv-space-8);
  text-align: center;
  box-shadow: var(--iv-shadow-clay);
  border: 1px solid var(--iv-border-light);
  transition: all 0.3s ease;
}
.target-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--iv-shadow-clay-hover);
  border-color: var(--iv-accent-200);
}
.target-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--iv-space-5);
  border-radius: var(--iv-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}
.target-card h3 {
  font-size: 18px;
  font-weight: var(--iv-weight-bold);
  color: var(--iv-text-primary);
  margin-bottom: var(--iv-space-3);
}
.target-card p {
  font-size: var(--iv-text-small);
  color: var(--iv-text-secondary);
  line-height: 1.8;
}

/* --- 7. REQUEST FORM --- */
.services-request {
  padding: 80px 0;
  background: var(--iv-gradient-primary);
  position: relative;
  overflow: hidden;
}
.services-request::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.services-request-header {
  text-align: center;
  color: white;
  margin-bottom: var(--iv-space-10);
  position: relative;
  z-index: 1;
}
.services-request-header h2 {
  font-size: var(--iv-text-h2);
  font-weight: var(--iv-weight-extrabold);
  margin-bottom: var(--iv-space-3);
  color: var(--iv-gold-light) !important;
}
.services-request-header p {
  font-size: var(--iv-text-body);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
}
.services-request-form-wrap {
  max-width: 840px;
  margin: 0 auto;
  background: white;
  border-radius: var(--iv-radius-3xl);
  padding: var(--iv-space-10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

/* Form placeholder */
.services-form-placeholder {
  text-align: center;
  padding: var(--iv-space-12) var(--iv-space-6);
}
.services-form-placeholder h3 {
  font-size: 22px;
  font-weight: var(--iv-weight-bold);
  color: var(--iv-text-primary);
  margin: var(--iv-space-4) 0 var(--iv-space-3);
}
.services-form-placeholder p {
  font-size: var(--iv-text-body);
  color: var(--iv-text-secondary);
  margin-bottom: var(--iv-space-6);
}
.services-form-placeholder .iv-btn {
  margin: 0 auto;
}

/* --- Fluent Forms customization --- */
.services-request-form-wrap .fluentform {
  max-width: 100%;
}

/* --- Native service form --- */
.ivons-service-form .ivons-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.ivons-service-form .ivons-form-field {
  display: flex;
  flex-direction: column;
}
.ivons-service-form label {
  font-size: 13px;
  font-weight: 600;
  color: #1C1C1C;
  margin-bottom: 6px;
}
.ivons-service-form .required {
  color: #D64545;
}
.ivons-service-form input,
.ivons-service-form select,
.ivons-service-form textarea {
  border: 1.5px solid #E0D9CC;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
  font-family: 'Tajawal', sans-serif;
  color: #1C1C1C;
  transition: all 0.2s ease;
  width: 100%;
}
.ivons-service-form input:focus,
.ivons-service-form select:focus,
.ivons-service-form textarea:focus {
  border-color: #B08D57;
  box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
  outline: none;
}
.ivons-service-form textarea {
  resize: vertical;
  min-height: 100px;
}
.ivons-form-submit {
  width: 100%;
  background: linear-gradient(135deg, #8A1538, #B08D57);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Tajawal', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(138,21,56,0.3);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ivons-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138,21,56,0.4);
}
.ivons-form-submit:active {
  transform: scale(0.98);
}
.ivons-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.ivons-form-submit-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: ivonsSrSpin 0.8s linear infinite;
}
@keyframes ivonsSrSpin { to { transform: rotate(360deg); } }

.ivons-form-message {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}
.ivons-form-message.success {
  background: #E8F5EE;
  color: #1E5C3F;
  border: 1px solid #A7D4BC;
}
.ivons-form-message.error {
  background: #FCE5E5;
  color: #8B2A2A;
  border: 1px solid #F5B5B5;
}

@media (max-width: 768px) {
  .ivons-service-form .ivons-form-row {
    grid-template-columns: 1fr;
  }
}
.services-request-form-wrap .ff-form-inside {
  padding: 0;
}
.services-request-form-wrap .ff-el-group {
  margin-bottom: var(--iv-space-4);
}
.services-request-form-wrap .ff-el-input--label {
  font-size: var(--iv-text-small);
  font-weight: var(--iv-weight-semibold);
  color: var(--iv-text-primary);
  margin-bottom: 6px;
}
.services-request-form-wrap .ff-el-form-control {
  border-radius: var(--iv-radius-lg);
  border: 1.5px solid var(--iv-border);
  padding: 10px 14px;
  font-size: var(--iv-text-body);
  font-family: var(--iv-font-ar);
  color: var(--iv-text-primary);
  transition: all 0.2s ease;
  width: 100%;
}
.services-request-form-wrap .ff-el-form-control:focus {
  border-color: var(--iv-primary-500);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
  outline: none;
}
.services-request-form-wrap textarea.ff-el-form-control {
  min-height: 120px;
  resize: vertical;
}
.services-request-form-wrap .ff-btn-submit {
  background: var(--iv-gradient-primary);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: var(--iv-radius-pill);
  font-size: var(--iv-text-body);
  font-weight: var(--iv-weight-bold);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--iv-font-ar);
  box-shadow: var(--iv-shadow-primary);
  width: 100%;
}
.services-request-form-wrap .ff-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--iv-shadow-primary-hover);
}
.services-request-form-wrap .ff-btn-submit:active {
  transform: scale(0.98);
}
/* Two-column layout for form fields */
.services-request-form-wrap .ff-t-cell {
  padding-left: var(--iv-space-2);
  padding-right: var(--iv-space-2);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-hero-stats { gap: var(--iv-space-6); flex-wrap: wrap; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-hero { padding: 80px 0 60px; }
  .services-hero-title { font-size: 36px; }
  .services-hero-desc { font-size: 16px; }
  .services-hero-stats {
    flex-wrap: wrap;
    gap: var(--iv-space-5);
    margin-top: 40px;
  }
  .services-grid { grid-template-columns: 1fr; }
  .services-process-steps { grid-template-columns: 1fr; }
  .services-process-steps::before { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .services-request-form-wrap { padding: var(--iv-space-6); }
}
@media (max-width: 480px) {
  .services-hero-title { font-size: 28px; }
  .services-hero-stats { gap: var(--iv-space-4); }
  .services-hero-stat-num { font-size: 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .services-request-form-wrap { padding: var(--iv-space-5); }
  .portfolio-filters { gap: 6px; }
  .portfolio-filter-btn { padding: 6px 14px; font-size: var(--iv-text-xs); }
}