/* Global reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6; color: #333; overflow-x: hidden;
}

/* Nav */
.navbar {
  position: fixed; top: 0; width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}
.logo {
  font-size: 1.8rem; font-weight: 700;
  background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; transition: color .3s; }
.nav-links a:hover, .nav-links a.active { color: #ff6b9d; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%);
  position: relative; overflow: hidden; padding: 1rem 5% 1rem;
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  color: #fff; z-index: 2; max-width: 1200px; width: 100%;
}
.hero-text { text-align: left; }
.hero h1 { font-size: 4rem; margin-bottom: 1.5rem; animation: fadeInUp 1s ease-out; }
.hero p  { font-size: 1.5rem; margin-bottom: 2.5rem; opacity: .95; animation: fadeInUp 1s ease-out .2s backwards; }
.hero-media { position: relative; animation: fadeInUp 1s ease-out .3s backwards; }

/* Media */
.media-container {
  width: 100%; height: 500px; background: rgba(255,255,255,.1);
  border-radius: 20px; backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: transform .3s;
}
.media-container:hover { transform: scale(1.02); }
.media-container img, .media-container video {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
}
.media-placeholder { color: rgba(255,255,255,.7); font-size: 1.2rem; text-align: center; padding: 2rem; }

/* Buttons */
.cta-button {
  display: inline-block; padding: 1.2rem 3rem; background: #fff; color: #ff6b9d; text-decoration: none;
  border-radius: 50px; font-weight: 600; font-size: 1.1rem;
  transition: transform .3s, box-shadow .3s; animation: fadeInUp 1s ease-out .4s backwards;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.2); }

/* Floating shapes */
.floating-shapes { position: absolute; width: 100%; height: 100%; overflow: hidden; }
.shape { position: absolute; opacity: .1; animation: float 20s infinite ease-in-out; }
.shape:nth-child(1){
  width: 80px; height: 80px; background: #fff; border-radius: 50%;
  top: 20%; left: 10%;
}
.shape:nth-child(2){
  width: 120px; height: 120px; background: #fff;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; top: 60%; right: 15%; animation-delay: 3s;
}
.shape:nth-child(3){
  width: 100px; height: 100px; background: #fff; border-radius: 50%;
  bottom: 15%; left: 20%; animation-delay: 6s;
}

/* Services (grid overview) */
.services { padding: 2rem 5%; background: #f8f9fa; }
.section-title { text-align: center; font-size: 3rem; margin-bottom: 1rem; color: #333; }
.section-subtitle { text-align: center; font-size: 1.2rem; color: #666; margin-bottom: 5rem; }
.section-subtitle a { color: #ff751f; }
.section-subtitle a:hover { color: #ff17cc; }

/* Services (detailed blocks) */
.services-detail { padding: 1rem 5%; max-width: 1400px; margin: 0 auto; }
.service-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; margin-bottom: 0;
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

.service-content h2 { font-size: 2.8rem; margin-bottom: 1.5rem; color: #333; }
.service-number {
  display: inline-block; font-size: 1rem; font-weight: 600; padding: .5rem 1.5rem;
  background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%); color: #fff; border-radius: 50px; margin-bottom: 1rem;
}
.service-content p { font-size: 1.15rem; color: #666; margin-bottom: 2rem; line-height: 1.8; }
.service-features { list-style: none; margin-top: 2rem; }
.service-features li {
  padding: 1rem 0 1rem 2rem; position: relative; font-size: 1.05rem; color: #555;
}
.service-features li:before { content: "✓"; position: absolute; left: 0; color: #ff6b9d; font-weight: bold; font-size: 1.3rem; }

.service-image { position: relative; }
.image-container {
  width: 100%; height: 450px;
  background: linear-gradient(135deg, rgba(255,107,157,.1) 0%, rgba(255,167,38,.1) 100%);
  border-radius: 30px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: 0 20px 60px rgba(255,107,157,.15); transition: transform .3s;
}
.image-container:hover { transform: scale(1.02); }
.image-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; }
.image-placeholder { text-align: center; color: #999; font-size: 3rem; }

/* CTA band (optional per page) */
.cta-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%);
  color: #fff; text-align: center;
}
.cta-section h2 { font-size: 3rem; margin-bottom: 1.5rem; }
.cta-section p  { font-size: 1.3rem; margin-bottom: 3rem; opacity: .95; }

/* Process */
.process-section { padding: 3rem 5%; background: #f8f9fa; text-align: center; }
.process-section h2 { font-size: 3rem; margin-bottom: 1rem; color: #333; }
.process-section > p { font-size: 1.2rem; color: #666; margin-bottom: 5rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 3rem; max-width: 1200px; margin: 0 auto;
}
.process-step {
  background: #fff; padding: 3rem 2rem; border-radius: 20px; box-shadow: 0 5px 20px rgba(0,0,0,.05);
  transition: transform .3s;
}
.process-step:hover { transform: translateY(-5px); }
.step-number {
  width: 60px; height: 60px; background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%);
  color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: bold; margin: 0 auto 1.5rem;
}
.process-step h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #333; }
.process-step p { color: #666; font-size: 1rem; }

/* Footer */
footer { background: #1a1a1a; color: #fff; padding: 3rem 5%; text-align: center; }

/* === Services, About, Process, Work page heroes === */
.page-hero,
.about-hero,
.process-hero,
.portfolio-hero {
  background: linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%);
  color:#fff; position:relative; overflow:hidden;
}
.page-hero { padding: 12rem 5% 6rem; text-align:center; }
.about-hero { min-height:80vh; display:flex; align-items:center; justify-content:center; padding:10rem 5% 5rem; }
.process-hero { min-height:70vh; display:flex; align-items:center; justify-content:center; padding:10rem 5% 5rem; }
.portfolio-hero { min-height:70vh; display:flex; align-items:center; justify-content:center; padding:10rem 5% 5rem; }

.hero-container,
.hero-content { max-width:1200px; width:100%; z-index:2; }
.hero-container { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.hero-content { text-align:center; }

/* Hero media container for videos/images in hero sections */
.hero-media-container {
  width: 100%; height: 500px; background: rgba(255,255,255,.1);
  border-radius: 20px; backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; transition: transform .3s;
}
.hero-media-container:hover { transform: scale(1.02); }
.hero-media-container img, .hero-media-container video {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
}

/* About page sections */
.story-section { padding:8rem 5%; max-width:1000px; margin:0 auto; }
.story-section h2 { font-size:2.8rem; margin-bottom:2rem; color:#333; text-align:center; }
.story-section p { font-size:1.2rem; color:#666; line-height:1.9; margin-bottom:1.5rem; }

.values-section { padding:6rem 5%; background:#f8f9fa; }
.values-section h2 { font-size:2.8rem; text-align:center; margin-bottom:1rem; color:#333; }
.values-section > p { text-align:center; font-size:1.2rem; color:#666; margin-bottom:4rem; }
.values-grid { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:3rem; }
.value-card { background:#fff; padding:3rem 2rem; border-radius:20px; text-align:center; box-shadow:0 10px 30px rgba(0,0,0,.05); transition:.3s; }
.value-card:hover { transform:translateY(-10px); box-shadow:0 15px 40px rgba(255,107,157,.15); }
.value-icon { width:70px; height:70px; background:linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:2rem; margin:0 auto 1.5rem; color:#fff; }

.team-section { padding:6rem 5%; max-width:1200px; margin:0 auto; }
.team-section h2 { font-size:2.8rem; text-align:center; margin-bottom:1rem; color:#333; }
.team-section > p { text-align:center; font-size:1.2rem; color:#666; margin-bottom:4rem; }
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:3rem; }
.team-member { text-align:center; transition:.3s; }
.team-member:hover { transform:translateY(-10px); }
.member-photo { width:100%; height:320px; background:linear-gradient(135deg,rgba(255,107,157,.1) 0%,rgba(255,167,38,.1) 100%); border-radius:20px; margin-bottom:1.5rem; overflow:hidden; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 30px rgba(0,0,0,.08); }
.member-photo img { width:100%; height:100%; object-fit:cover; border-radius:20px; }
.photo-placeholder { font-size:4rem; color:#ddd; }
.team-member h3 { font-size:1.5rem; margin-bottom:.5rem; color:#333; }
.team-member .role { font-size:1rem; color:#ff6b9d; font-weight:600; margin-bottom:1rem; }
.team-member p { color:#666; font-size:.95rem; line-height:1.6; }

.stats-section { padding:6rem 5%; background:linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%); color:#fff; }
.stats-container { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:4rem; text-align:center; }
.stat-item { padding:2rem; }
.stat-number { font-size:4rem; font-weight:700; margin-bottom:.5rem; line-height:1; }
.stat-label { font-size:1.2rem; opacity:.95; font-weight:500; }

/* Our Process timeline */
.intro-section { padding:8rem 5%; max-width:1000px; margin:0 auto; text-align:center; }
.intro-section h2 { font-size:2.5rem; margin-bottom:1.5rem; color:#333; }
.intro-section p { font-size:1.2rem; color:#666; line-height:1.8; }

.process-timeline { padding:6rem 5%; background:#f8f9fa; position:relative; }
.timeline-container { max-width:1200px; margin:0 auto; position:relative; }
.timeline-line { position:absolute; left:50%; top:0; bottom:0; width:4px; background:linear-gradient(180deg,#ff6b9d 0%,#ffa726 100%); transform:translateX(-50%); }
.timeline-item { display:grid; grid-template-columns:1fr 1fr; gap:4rem; margin-bottom:6rem; position:relative; }
.timeline-item:nth-child(even) .timeline-content { order:2; }
.timeline-item:nth-child(even) .timeline-image { order:1; }
.timeline-dot { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:60px; height:60px; background:#fff; border:4px solid #ff6b9d; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; font-weight:bold; color:#ff6b9d; z-index:10; box-shadow:0 0 0 10px #f8f9fa; }

.timeline-content { background:#fff; padding:3rem; border-radius:20px; box-shadow:0 10px 40px rgba(0,0,0,.08); transition:.3s; }
.timeline-content:hover { transform:translateY(-5px); box-shadow:0 15px 50px rgba(255,107,157,.15); }
.timeline-content h3 { font-size:2rem; margin-bottom:1rem; color:#333; }
.phase-label { display:inline-block; font-size:.85rem; font-weight:600; padding:.4rem 1.2rem; background:linear-gradient(135deg,#ff6b9d 0%,#ffa726 100%); color:#fff; border-radius:50px; margin-bottom:1rem; text-transform:uppercase; letter-spacing:.5px; }
.timeline-content p { color:#666; font-size:1.05rem; line-height:1.8; margin-bottom:1.5rem; }
.timeline-features { list-style:none; margin-top:1.5rem; }
.timeline-features li { padding: 0.8rem 0 0.8rem 2rem; position: relative; color: #555; font-size: 1.05rem; }
.timeline-features li:before { content: "✓"; position: absolute; left: 0; color: #ff6b9d; font-weight: bold; font-size: 1.3rem; }

.timeline-image { position: relative; }
.timeline-image-container {
  width: 100%; height: 400px;
  background: linear-gradient(135deg, rgba(255,107,157,.1) 0%, rgba(255,167,38,.1) 100%);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,.1); transition: transform .3s;
}
.timeline-image-container:hover { transform: scale(1.02); }
.timeline-image-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.timeline-placeholder { text-align: center; color: #999; font-size: 3rem; }

/* Portfolio / Our Work page styles */
.filter-section {
  padding: 4rem 5% 2rem;
  background: #f8f9fa;
  text-align: center;
}
.filter-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.8rem 2rem;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}
.filter-btn:hover {
  border-color: #ff6b9d;
  color: #ff6b9d;
  transform: translateY(-2px);
}
.filter-btn.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 100%);
  color: #fff;
  border-color: transparent;
}

.portfolio-grid {
  padding: 4rem 5% 6rem;
  background: #f8f9fa;
}
.grid-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}
.portfolio-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}
.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255,107,157,.2);
}
.portfolio-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f0f0f0;
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}
.portfolio-info {
  padding: 2rem;
}
.portfolio-category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 100%);
  color: #fff;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.portfolio-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #333;
  line-height: 1.4;
}
.portfolio-info p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 100%);
  position: relative;
  overflow: hidden;
  padding: 10rem 5% 5rem;
}
.contact-hero .hero-content {
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 800px;
}
.contact-hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}
.contact-hero p {
  font-size: 1.4rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  padding: 8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

/* Contact Info */
.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}
.contact-info p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-item {
  display: flex;
  align-items: start;
  gap: 1.5rem;
}
.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}
.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.info-content p,
.info-content a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
.info-content a:hover {
  color: #ff6b9d;
}

/* Contact Form */
.contact-form-wrapper {
  width: 100%;
}
.contact-form {
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 107, 157, 0.1);
}
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}
.form-lead {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #333;
  font-size: 1rem;
}
.required {
  color: #ff6b9d;
  font-weight: 600;
  margin-left: 2px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fff;
  color: #333;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff6b9d;
  box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}
.hint {
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.5rem;
}
.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #ffa726 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  margin-top: 1rem;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}
.submit-btn:active {
  transform: translateY(0);
}
.form-note {
  font-size: 0.9rem;
  color: #999;
  text-align: center;
  margin-top: 1rem;
}

/* Honeypot - hidden spam trap */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  opacity: 0 !important;
  pointer-events: none;
}


/* === Additional Process Page Styles === */

/* Pillars Grid for intro section */
.pillars-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 2.5rem; 
  max-width: 1200px;
  margin: 0 auto;
}
.pillar-card { 
  background: #fff; 
  padding: 2.5rem 2rem; 
  border-radius: 20px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}
.pillar-card:hover { 
  transform: translateY(-8px); 
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.15);
}
.pillar-card h3 { 
  font-size: 1.5rem; 
  margin-bottom: 1rem; 
  color: #333;
}
.pillar-card p { 
  font-size: 1rem; 
  color: #666; 
  line-height: 1.7;
}

/* Timeline Section with header */
.timeline-section { 
  padding: 6rem 5%; 
  background: #f8f9fa;
}
.timeline-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}
.timeline-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #333;
}
.timeline-header p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

/* Principles Section */
.principles-section {
  padding: 6rem 5%;
  background: #fff;
}
.principles-section h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}
.principles-section > p {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 4rem;
}
.principles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
.principle-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 20px;
  display: flex;
  align-items: start;
  gap: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.15);
}
.principle-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.principle-text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}
.principle-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* CTA Section Inner Container */
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content, .hero-container, .service-block, .timeline-item {
    grid-template-columns: 1fr;
  }
  .grid-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .filter-buttons {
    gap: 0.8rem;
  }
  .filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  .timeline-line { display: none; }
  .timeline-dot { position: relative; left: 0; transform: none; margin-bottom: 1rem; }
  .timeline-item:nth-child(even) .timeline-content { order: 1; }
  .timeline-item:nth-child(even) .timeline-image { order: 2; }
  
  /* Contact page responsive */
  .contact-hero h1 {
    font-size: 2.5rem;
  }
  .contact-hero p {
    font-size: 1.2rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 2rem 1.5rem;
  }
  .nav-links {
    gap: 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  .contact-info h2,
  .contact-form h2 {
    font-size: 1.8rem;
  }
}