@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --inweb-blue: #246DB3;
  --inweb-blue-hover: #1b528a;
  --inweb-orange: #FF9F1C;
  --inweb-orange-light: rgba(255, 159, 28, 0.1);
  --bg-light-blue: #F0F7FD;
  --text-dark: #0f172a;
  --text-body: #475569;
  --text-muted: #64748b;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container-width: 1200px;
  --section-spacing: 100px;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  margin: 0;
  padding: 0;
  background-color: var(--bg-white);
  line-height: 1.6;
}

.services-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  margin-top: 0;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--inweb-blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--inweb-blue-hover);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--inweb-blue);
}

.btn-white:hover {
  background: #f8fafc;
  color: var(--inweb-blue-hover);
}

/* Breadcrumb */
.breadcrumb {
  padding: 40px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--inweb-blue);
  font-weight: 500;
}

/* --- Hero Section --- */
.services-hero {
  padding: 40px 0 var(--section-spacing);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 52px;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-content h1 .highlight {
  color: var(--inweb-blue);
}

.hero-desc {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-trust-points {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.trust-point i {
  color: var(--inweb-blue);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--bg-light-blue);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.hero-illustration {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.illus-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 6s ease-in-out infinite;
}

.illus-card.grow { top: 20%; left: 0; animation-delay: 0s; }
.illus-card.ads { top: 60%; right: 10%; animation-delay: 1s; }
.illus-card.visibility { bottom: 10%; right: 0; animation-delay: 2s; }

.illus-card .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.illus-card.grow .icon-box { background: rgba(36,109,179,0.1); color: var(--inweb-blue); }
.illus-card.ads .icon-box { background: rgba(255,159,28,0.1); color: var(--inweb-orange); }

.hero-graph {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 250px;
  height: 180px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  padding: 24px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* --- Our Services Grid --- */
.our-services {
  padding: var(--section-spacing) 0;
  background-color: #FAFAFA;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.services-header p {
  font-size: 16px;
  margin-bottom: 0;
}

.services-header-link {
  color: var(--inweb-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.service-card-mini {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-mini:hover {
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  border-color: #fff;
}

.sc-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background: var(--inweb-orange-light);
  color: var(--inweb-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition);
}

.service-card-mini:hover .sc-icon {
  background: var(--inweb-orange);
  color: #fff;
}

.service-card-mini h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

.service-card-mini p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.sc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--inweb-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* --- Alternating Sections --- */
.service-section {
  padding: var(--section-spacing) 0;
}

.service-section.bg-light {
  background: var(--bg-light-blue);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.text-content .label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--inweb-blue);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.text-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  margin-bottom: 32px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 15px;
}

.feature-list li i {
  color: var(--inweb-orange);
  font-size: 18px;
  margin-top: 2px;
}

.visual-content {
  position: relative;
  width: 100%;
  padding: 20px;
}

/* Mock Visuals */
.mock-visual {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--hover-shadow);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.mv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #f8fafc;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.mv-badge img { width: 20px; height: 20px; }

.mv-stats {
  display: flex;
  flex-direction: column;
}

.mv-stat-value {
  font-size: 36px;
  font-weight: 800;
  color: #10b981; /* Green for growth */
}

.mv-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.mv-graph {
  height: 120px;
  width: 100%;
  background: linear-gradient(to right, rgba(36,109,179,0.1), rgba(36,109,179,0.3));
  margin: 30px 0;
  border-radius: var(--radius-sm);
  position: relative;
}

.mv-graph::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--inweb-blue);
  transform: rotate(-5deg);
}

.mv-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.mv-float {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.mv-float.f-right { right: -20px; top: 30%; }
.mv-float.f-left { left: -20px; bottom: 30%; }

.mv-float i { color: var(--inweb-orange); font-size: 20px; }


/* --- Why Choose Us --- */
.why-choose-us {
  padding: var(--section-spacing) 0;
  background-color: #FAFAFA;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header h2 { font-size: 36px; margin-bottom: 12px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.why-card:hover { transform: translateY(-5px); }

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--bg-light-blue);
  color: var(--inweb-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.why-card h3 { font-size: 18px; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* --- How We Work --- */
.how-we-work {
  padding: var(--section-spacing) 0;
}

.process-grid {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 60px;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 200px;
}

.ps-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--inweb-blue);
  transition: var(--transition);
  position: relative;
}

.process-step:hover .ps-icon {
  border-color: var(--inweb-blue);
  background: var(--inweb-blue);
  color: #fff;
  box-shadow: 0 0 0 10px var(--bg-light-blue);
}

.ps-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--inweb-blue);
  margin-bottom: 8px;
  display: block;
}

.process-step h3 { font-size: 18px; margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--text-muted); }

/* --- CTA Section --- */
.services-cta {
  padding: 0 0 var(--section-spacing);
}

.cta-box {
  background: var(--inweb-blue);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
}

.cta-box h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { flex-wrap: wrap; gap: 40px; justify-content: center; }
  .process-grid::before { display: none; }
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-trust-points { justify-content: center; }
  .hero-visual { height: 400px; margin-top: 40px; }
  
  .section-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-grid.reverse .text-content { order: -1; }
  
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 768px) {
  :root { --section-spacing: 60px; }
  .hero-content h1 { font-size: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .text-content h2 { font-size: 32px; }
  .cta-box h2 { font-size: 32px; }
  .cta-box { padding: 60px 20px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 32px; }
}
