:root {
  --bg-main: #f4eee7;
  --bg-light: #ffffff;
  --text-dark: #121212;
  --text-muted: #666666;
  --primary: #121212;
  --border-color: #e0d8cd;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 100px;
  --font-main: 'Manrope', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

h2.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

p.section-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 500px;
  margin-bottom: 2rem;
}
p.section-desc.centered {
  margin-left: auto;
  margin-right: auto;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 8rem 0;
}

.bg-light {
  background-color: transparent;
}

.text-center {
  text-align: center;
}

.mb-4 { margin-bottom: 2rem; }
.mt-5 { margin-top: 3rem; }
.justify-center { justify-content: center; }

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-dark {
  background-color: var(--primary);
  color: white;
  border: 1px solid var(--primary);
}

.btn-dark:hover {
  background-color: #333;
  border-color: #333;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.btn-play:hover .play-icon {
  transform: scale(1.05);
}

.section-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-badge::before {
  content: '✦';
  margin-right: 0.5rem;
  color: var(--text-dark);
}

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid var(--text-dark);
  padding-bottom: 2px;
  transition: gap 0.3s ease;
}

.link-btn:hover {
  gap: 0.75rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 1200px;
  z-index: 1000;
  
  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.25rem;
}

.logo i {
  color: #ff5e3a; /* A vibrant accent color */
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: 2.5rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(0,0,0,0.05);
}

/* Hero Section */
.hero {
  padding-top: 12rem;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.25) 0%, rgba(255, 94, 58, 0) 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -5%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, rgba(74, 144, 226, 0) 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-images.two-images {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin-top: 4rem;
  margin-bottom: 4rem;
  gap: 2rem;
}

.hero-images.two-images .hero-img-wrap {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
}

.hero-img-wrap {
  border-radius: 120px 120px 24px 24px;
  overflow: hidden;
  aspect-ratio: 2/3;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Trusted Brands */
.trusted {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trusted-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.trusted-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.6;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

/* About Us */
.about {
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 94, 58, 0.25) 0%, rgba(255, 94, 58, 0) 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
}

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

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  padding: 3rem 4rem;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #121212 0%, #4a4a4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* What We Do */
.wdo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.wdo-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  order: 1; /* By default on left */
  height: 100%;
}

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

.wdo-content {
  order: 2;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.feature-list i {
  color: #121212;
  font-size: 1.25rem;
}

/* Expert Team */
.expert-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.expert-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}

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

/* How It Works */
.hiw-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.hiw-image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ccc;
}

.step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-muted);
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
  aspect-ratio: 4/3;
}

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

.portfolio-info {
  padding: 0 1rem 1rem;
}

.portfolio-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: var(--text-dark);
}

.pricing-price span:first-child {
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-price .period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-features li.disabled {
  color: #aaa;
  text-decoration: line-through;
}

.pricing-features li i {
  color: var(--primary);
}

.pricing-features li.disabled i {
  color: #aaa;
}

.pricing-bottom {
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

/* Testimonials */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 94, 58, 0.2) 0%, rgba(255, 94, 58, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, rgba(74, 144, 226, 0) 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.test-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.test-stats-row {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.test-stat h3 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.test-stat p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

.test-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.test-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: -1;
}

.stars {
  color: #ffb800;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.25rem;
}

.test-quote {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.test-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.test-author h4 {
  font-size: 1rem;
}

.test-author p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem;
}

.blog-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 1.5rem;
}

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

.blog-content {
  padding: 0 1rem 1rem;
}

.blog-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Bottom CTA */
.bottom-images {
  max-width: 800px;
}
.bottom-images .hero-img-wrap {
  border-radius: 80px 80px 16px 16px;
}

/* Footer */
.footer {
  background: white;
  padding-top: 5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #eee;
}

.footer-subscribe h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-subscribe p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
}

.subscribe-form input {
  flex-grow: 1;
  padding: 0.875rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 1rem;
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 0;
  border-bottom: 1px solid #eee;
}

.footer-col h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a, .footer-col li {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col a:hover {
  color: var(--text-dark);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
}

/* About Page Specifics */
.about-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
}

.about-hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.about-hero p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.avatar-widget {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
}
.avatar-stack img:first-child { margin-left: 0; }

.avatar-widget span {
  font-weight: 600;
  font-size: 0.875rem;
}

/* How it comes */
.how-it-comes {
  padding: 5rem 0;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }

/* The Team */
.team-section { padding: 5rem 0; }
.team-header { text-align: center; margin-bottom: 4rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-member { text-align: left; }
.team-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 1rem;
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.team-member h4 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.team-member p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 1rem; }
.team-socials { display: flex; gap: 0.75rem; }
.team-socials a { color: var(--text-dark); opacity: 0.5; transition: 0.3s; }
.team-socials a:hover { opacity: 1; color: var(--primary); }

.hiring-box {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 3rem;
  text-align: center;
  max-width: 600px;
  margin: 4rem auto 0;
}
.hiring-box h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Stats (About) */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 5rem 0;
}
.about-stat-card {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.about-stat-card h3 { font-size: 3rem; margin-bottom: 0.5rem; }

/* Awards */
.awards-section { padding: 5rem 0; }
.awards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.awards-text h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.awards-list { display: flex; flex-direction: column; }
.award-item {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}
.award-item:first-child { border-top: 1px solid #eee; }
.award-item h4 { font-weight: 600; }
.award-item span { color: var(--text-muted); font-weight: 500; }

/* About CTA Collage */
.cta-collage {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
.cta-img {
  aspect-ratio: 1/2;
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.cta-img:nth-child(even) { transform: translateY(2rem); }
.cta-img img { width: 100%; height: 100%; object-fit: cover; }


/* Services Page Specifics */
.services-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
}
.services-hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}
.services-hero p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ff5e3a; /* Accent color */
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}
.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}
.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}
.service-features-list li i {
  color: #ff5e3a;
}
.service-details-section {
  padding: 8rem 0;
}
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
}
.service-detail-row:last-child {
  margin-bottom: 0;
}
.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-content h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.service-detail-content p {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}


/* Portfolio Page Specifics */
.portfolio-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
}
.portfolio-hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}
.portfolio-hero p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}
.filter-buttons {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  gap: 0.5rem;
}
.filter-btn {
  background: transparent;
  border: none;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  color: var(--text-dark);
}
.filter-btn.active {
  background: var(--primary);
  color: white;
}
.portfolio-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 8rem;
}
.portfolio-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, opacity 0.4s ease;
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.portfolio-card-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 1.5rem;
}
.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.05);
}
.portfolio-card-meta {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ff5e3a; /* Accent color */
  margin-bottom: 0.5rem;
}
.portfolio-card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.portfolio-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}


/* Contact Page Specifics */
.contact-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
}
.contact-hero h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}
.contact-hero p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 8rem;
}
.contact-form-card {
  background: white;
  padding: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.form-group {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}
.form-control {
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-main);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.02);
}
textarea.form-control {
  resize: vertical;
  min-height: 150px;
}
.captcha-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-main);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  width: fit-content;
  margin-bottom: 2rem;
}
.captcha-label {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: #ff5e3a;
  user-select: none;
}
.captcha-input {
  max-width: 150px;
}
.contact-info-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 4rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 3rem;
  height: fit-content;
}
.contact-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ff5e3a;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  flex-shrink: 0;
}
.contact-info-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.contact-info-details p, .contact-info-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.contact-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-social-btn {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}
.contact-social-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .about-container, .wdo-container, .expert-container, .hiw-card, .test-container, .footer-top, .story-container, .awards-container, .service-detail-row, .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .wdo-image { order: 0; }
  .wdo-content { order: 1; }
  .stats-container, .portfolio-grid, .pricing-grid, .footer-grid, .team-grid, .about-stats, .services-grid, .portfolio-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .nav-toggle {
    display: flex;
  }
  .nav-actions {
    display: none;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    gap: 1.5rem;
    text-align: center;
    margin: 0;
    z-index: 1005;
  }
  .nav-links.active {
    display: flex;
  }
  .hero-images, .stats-container, .portfolio-grid, .pricing-grid, .blog-grid, .footer-grid, .team-grid, .about-stats, .cta-collage, .services-grid, .portfolio-grid-full {
    grid-template-columns: 1fr;
  }
  .cta-img:nth-child(even) { transform: none; }
  .about-hero h1 { font-size: 3rem; }
  .test-stats-row { flex-direction: column; gap: 1.5rem; }
  .subscribe-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .contact-form-card, .contact-info-card { padding: 2rem; }
}
