:root {
  --navy: #1a1a3e;
  --navy-dark: #12122e;
  --navy-light: #2a2a5e;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --blue-light: #60a5fa;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --text-dark: #1a1a2e;
  --text-light: #6b7280;
  --accent: #3b82f6;
  --section-padding: 100px 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
}

.nav-logo svg {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-600);
  font-size: 1.1rem;
  transition: color 0.3s;
}

.nav-search:hover {
  color: var(--blue);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.btn-quote {
  background: var(--blue);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-quote:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 75px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,40,0.92) 0%, rgba(26,26,62,0.85) 50%, rgba(30,30,70,0.75) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-subtitle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--blue-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-title span {
  color: var(--blue-light);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 550px;
  margin-bottom: 35px;
  line-height: 1.7;
}

.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-learn:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59,130,246,0.4);
}

/* ===== ABOUT ===== */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--blue);
}

.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 35px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(59,130,246,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 16px;
}

.about-image-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.3s;
}

.about-image-link:hover {
  gap: 14px;
}

/* ===== SERVICES DARK ===== */
.services-dark {
  padding: var(--section-padding);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.services-dark::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.services-dark .section-label {
  color: var(--blue-light);
  justify-content: center;
}

.services-dark .section-label::before {
  background: var(--blue-light);
}

.services-dark-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--navy-light);
  border-radius: 16px;
  padding: 35px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.3);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(59,130,246,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--blue-light);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.3s;
}

.service-card-link:hover {
  gap: 14px;
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stat-block {
  position: relative;
  padding: 80px 60px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-block-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.stat-block:first-child .stat-block-overlay {
  background: linear-gradient(135deg, rgba(10,10,40,0.9), rgba(26,26,62,0.8));
}

.stat-block:last-child .stat-block-overlay {
  background: linear-gradient(135deg, rgba(40,20,80,0.9), rgba(60,30,100,0.8));
}

.stat-block-content {
  position: relative;
  z-index: 2;
}

.stat-block-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-block-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.stat-block-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 350px;
}

/* ===== SERVICES LIGHT ===== */
.services-light {
  padding: var(--section-padding);
  background: var(--gray-100);
}

.services-light .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.services-light-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.services-light-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-item-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.service-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.service-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,40,0.88), rgba(26,26,62,0.8));
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 30px;
}

.cta-banner h2 span {
  color: var(--blue-light);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-contact:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ===== TECHNOLOGY ===== */
.technology {
  padding: var(--section-padding);
  background: var(--navy);
  text-align: center;
}

.technology .section-label {
  color: var(--blue-light);
  justify-content: center;
}

.technology .section-label::before {
  background: var(--blue-light);
}

.technology-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 50px;
}

.tech-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.tech-icon-item {
  width: 140px;
  height: 100px;
  background: var(--navy-light);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
  cursor: pointer;
}

.tech-icon-item:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
}

.tech-icon-item svg {
  width: 28px;
  height: 28px;
  color: var(--blue-light);
}

.tech-icon-item span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CLIENTS ===== */
.clients {
  padding: var(--section-padding);
  background: var(--gray-100);
  text-align: center;
}

.clients .section-label {
  justify-content: center;
}

.clients-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 50px;
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.client-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: left;
  transition: transform 0.3s;
}

.client-card:hover {
  transform: translateY(-4px);
}

.client-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.client-card-logo {
  width: 48px;
  height: 48px;
  background: rgba(59,130,246,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-card-logo svg {
  width: 24px;
  height: 24px;
  color: var(--blue-light);
}

.client-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.client-card-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.client-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 32px;
  height: 32px;
}

.footer-about p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--blue-light);
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--blue-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-socials a:hover {
  background: var(--blue);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-light .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero {
    min-height: 80vh;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .about-title,
  .services-dark-title,
  .services-light-title,
  .technology-title,
  .clients-title {
    font-size: 1.8rem;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .tech-icons {
    gap: 12px;
  }

  .tech-icon-item {
    width: 110px;
    height: 85px;
  }

  .stat-block {
    padding: 60px 30px;
  }

  .stat-block-number {
    font-size: 3rem;
  }
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
}


/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 75px;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,40,0.92) 0%, rgba(26,26,62,0.85) 50%, rgba(30,30,70,0.75) 100%);
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
.page-header-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-header-subtitle {
  font-size: 1.1rem;
  color: var(--blue-light);
  font-weight: 500;
  font-family: 'Space Grotesk', sans-serif;
}

/* ===== SERVICES PAGE ===== */
.service-detail {
  padding: var(--section-padding);
  background: var(--white);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.service-detail-grid:nth-child(even) {
  direction: rtl;
}
.service-detail-grid:nth-child(even) > * {
  direction: ltr;
}
.service-detail-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
}
.service-detail-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-detail-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-detail-content ul {
  list-style: none;
  padding: 0;
}
.service-detail-content ul li {
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: var(--section-padding);
  background: var(--gray-100);
}
.portfolio-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.portfolio-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.portfolio-card-body {
  padding: 24px;
}
.portfolio-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.portfolio-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.portfolio-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-page-content {
  padding: var(--section-padding);
  background: var(--white);
}
.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.about-page-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-page-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-page-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-card {
  text-align: center;
  background: var(--gray-100);
  border-radius: 16px;
  padding: 30px 20px;
  transition: transform 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
}
.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--blue);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.team-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-card p {
  font-size: 0.82rem;
  color: var(--text-light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: var(--section-padding);
  background: var(--navy);
}
.value-card {
  text-align: center;
  padding: 40px 30px;
}
.value-icon {
  width: 64px;
  height: 64px;
  background: rgba(59,130,246,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.value-icon svg {
  width: 32px;
  height: 32px;
  color: var(--blue-light);
}
.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== BLOG PAGE ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: var(--section-padding);
  background: var(--gray-100);
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-date {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 12px;
  transition: gap 0.3s;
}
.blog-card-link:hover {
  gap: 12px;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
  padding: var(--section-padding);
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(59,130,246,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}
.contact-item-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-item-text p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.contact-form {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.btn-submit {
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}
.btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .service-detail-grid,
  .about-page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .page-header-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .page-header-title {
    font-size: 1.8rem;
  }
  .page-header {
    min-height: 250px;
  }
}
