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

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

:root {
  --primary: #1B6CB5;
  --primary-dark: #145A96;
  --dark: #1A1A2E;
  --dark-2: #16213E;
  --text: #333333;
  --text-light: #666666;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --border: #E0E0E0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-logo-img {
  background: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27,108,181,0.4);
}

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

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

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

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

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(3px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  margin-top: 68px;
  position: relative;
  background-color: var(--dark);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.75) 45%, rgba(26,26,46,0.2) 75%, transparent 100%);
  z-index: 1;
}

.hero .container {
  display: block;
  max-width: 600px;
  margin-left: max(20px, calc((100% - 1200px) / 2 + 20px));
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7FC7F0;
  background: rgba(27,108,181,0.18);
  border: 1px solid rgba(127,199,240,0.35);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero h1 span {
  color: #7FC7F0;
}

.hero-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ===== TRUST BAR ===== */
.trust-bar {
  position: relative;
  z-index: 10;
  margin-top: -36px;
  padding: 0 20px;
}

.trust-bar .container {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 28px 40px;
}

.trust-items {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
}

.title-line {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

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

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 460px;
  background: #e8ddd0;
}

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

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(27,108,181,0.35);
  z-index: 2;
}

.about-experience-badge .badge-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge .badge-text {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.3;
}

.about-content .section-label,
.about-content .section-title {
  text-align: left;
}

.about-content .title-line {
  margin: 12px 0 0;
}

.about-content .section-title {
  margin-bottom: 8px;
}

.about-text {
  color: var(--text-light);
  font-size: 15px;
  margin: 24px 0;
  line-height: 1.8;
}

.about-features {
  display: flex;
  gap: 28px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-feature .feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EBF4FC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature .feature-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.about-feature span {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card-image {
  height: 180px;
  background: linear-gradient(135deg, #1B6CB5 0%, #0E4A7A 100%);
  position: relative;
  overflow: hidden;
}

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

.service-card-image .service-icon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-icon-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.service-card-content {
  padding: 24px;
}

.service-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.service-link svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  transition: transform 0.3s;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27,108,181,0.08), rgba(27,108,181,0.02));
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.why-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-content .section-label,
.why-content .section-title {
  text-align: left;
  color: var(--white);
}

.why-content .title-line {
  margin: 12px 0 0;
}

.why-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.why-item .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item .check svg {
  width: 12px;
  height: 12px;
  fill: var(--white);
}

.why-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.why-image {
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: #e8ddd0;
  position: relative;
}

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

/* ===== STATS ===== */
.stats {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.stat-item {
  text-align: center;
  padding: 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #EBF4FC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.stat-number {
  font-size: 29px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== PROJECTS ===== */
.projects {
  background: var(--light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  background: var(--primary);
}

.project-card:hover {
  transform: scale(1.03);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card .project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.8) 100%);
}

.project-card .project-overlay h3 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.project-card .project-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  margin: 4px 0 0;
}

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

/* ===== CTA ===== */
.cta-section {
  background: var(--dark);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  max-width: 550px;
  margin: 0 auto 28px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo .brand {
  color: var(--white);
}

.footer-brand .logo .tagline {
  color: rgba(255,255,255,0.5);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
  stroke: var(--white);
  color: var(--white);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px !important;
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact li span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-contact li a {
  color: inherit;
  text-decoration: none;
}

.footer-contact li a:hover span {
  color: var(--white);
}

.contact-info-item a,
.contact-quick-card a {
  color: inherit;
  text-decoration: none;
}

.contact-info-item a:hover,
.contact-quick-card a:hover {
  opacity: 0.85;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  z-index: 999;
  padding: 20px;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav { display: none; }

  .hero { min-height: auto; padding: 60px 0 50px; background-position: center; }
  .hero .container { margin-left: 20px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.8) 60%, rgba(26,26,46,0.5) 100%); }
  .hero h1 { font-size: 30px; }

  .about .container { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 280px; }
  .about-content .section-label,
  .about-content .section-title { text-align: center; }
  .about-content .title-line { margin: 12px auto 0; }

  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .why-section .container { grid-template-columns: 1fr; }
  .why-image { height: 280px; order: -1; }
  .why-content .section-label,
  .why-content .section-title { text-align: center; }
  .why-content .title-line { margin: 12px auto 0; }
  .why-list { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none !important; }

  .projects-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .trust-items { gap: 20px; justify-content: center; }
  .trust-item::after { display: none !important; }
  .trust-bar .container { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .trust-items { display: grid; grid-template-columns: 1fr; gap: 16px; justify-items: stretch; }
  .trust-item { justify-content: flex-start; width: 100%; }
  .trust-item:last-child { justify-content: flex-start; }
  .trust-label br { display: none; }
  .trust-label { white-space: nowrap; }
  .trust-bar .container { padding: 20px 16px; }
  .about-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-title { font-size: 24px; }
}

/* ===== PAGE BANNER ===== */
.page-banner {
  margin-top: 68px;
  background: var(--dark);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,108,181,0.1), transparent);
}

.page-banner h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  position: relative;
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb span {
  color: rgba(255,255,255,0.4);
}

/* ===== CONTACT FORM ===== */
/* Quick Contact Strip */
.contact-quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  line-height: 0;
}

.map-overlay-card {
  position: absolute;
  bottom: 28px;
  left: 28px;
  max-width: 340px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  line-height: normal;
  z-index: 2;
}

.map-overlay-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-overlay-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
}

.map-overlay-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.map-overlay-text p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  margin: 0 0 14px;
}

.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.map-directions svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  transition: var(--transition);
}

.map-directions:hover {
  opacity: 0.8;
}

.map-directions:hover svg {
  transform: translateX(4px);
}

.contact-quick-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.contact-quick-card .quick-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(27,108,181,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.contact-quick-card:hover .quick-icon {
  background: var(--primary);
}

.contact-quick-card .quick-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  transition: var(--transition);
}

.contact-quick-card:hover .quick-icon svg {
  stroke: var(--white);
}

.contact-quick-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-quick-card p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

/* Contact Form Card */
.contact-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  background: var(--light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,108,181,0.12);
  background: var(--white);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

/* Contact Info Card */
.contact-info-card {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 16px;
  padding: 0;
  color: var(--white);
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(27,108,181,0.15);
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(27,108,181,0.1);
}

.contact-info-header {
  padding: 32px 32px 0;
  position: relative;
  z-index: 1;
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-header p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

.contact-info-items {
  padding: 28px 32px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item .info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(27,108,181,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .info-icon svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.9);
  fill: none;
}

.contact-info-item .info-text h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--white);
}

.contact-info-item .info-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* Contact Social */
.contact-social {
  padding: 20px 32px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.contact-social p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.contact-social-links {
  display: flex;
  gap: 10px;
}

.contact-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.contact-social-links a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.7);
}

.contact-social-links a:hover svg {
  fill: var(--white);
}

/* ===== MISSION/VISION ===== */
/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: var(--primary);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(27,108,181,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--primary);
}

.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  transition: var(--transition);
}

.value-card:hover .value-icon svg {
  stroke: var(--white);
}

.value-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Mission & Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.mv-mission {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--white);
}

.mv-vision {
  background: linear-gradient(160deg, #0f3460 0%, #1B6CB5 100%);
  color: var(--white);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.mv-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.mv-icon svg {
  width: 26px;
  height: 26px;
  stroke: rgba(255,255,255,0.9);
}

.mv-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.mv-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* Modern Stats Section */
.stats-modern {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0a0e1a 0%, #111d35 40%, #0f3460 100%);
}

.stats-modern-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(27,108,181,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(27,108,181,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(27,108,181,0.08) 0%, transparent 40%);
}

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

.stats-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-modern-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stats-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.stats-modern-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(27,108,181,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stats-modern-card:hover::before {
  opacity: 1;
}

.stats-modern-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(27,108,181,0.15);
  border: 1px solid rgba(27,108,181,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.stats-modern-card:hover .stats-modern-icon {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(27,108,181,0.4);
}

.stats-modern-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  transition: var(--transition);
}

.stats-modern-card:hover .stats-modern-icon svg {
  stroke: #fff;
}

.stats-modern-number {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.stats-modern-line {
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto 12px;
}

.stats-modern-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.stats-modern-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin: 0;
}

/* ===== INNER PAGE SERVICE DETAIL ===== */
.services-subtitle {
  max-width: 640px;
  margin: -8px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #2980b9);
  opacity: 0;
  transition: var(--transition);
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: transparent;
}

.svc-card:hover::before {
  opacity: 1;
}

.svc-card-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  pointer-events: none;
}

.svc-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EBF4FC 0%, #d6e9f8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
}

.svc-card:hover .svc-card-icon {
  background: linear-gradient(135deg, var(--primary) 0%, #2980b9 100%);
}

.svc-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
  transition: var(--transition);
}

.svc-card:hover .svc-card-icon svg {
  fill: #fff;
}

.svc-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.svc-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.svc-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.svc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  padding: 6px 0;
}

.svc-features li svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

/* Services Why Section */
.svc-why-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #0a0e1a 0%, #111d35 40%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.svc-why-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.06);
  top: -100px;
  right: -100px;
}

.svc-why-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.04);
  bottom: -80px;
  left: -80px;
}

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

.svc-why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-why-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.svc-why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-why-check svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
}

.svc-why-item span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

.svc-why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.svc-stat-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.svc-stat-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.svc-stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.svc-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ===== PROJECTS PAGE ===== */
.projects-subtitle {
  max-width: 640px;
  margin: -8px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.proj-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proj-gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.proj-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.proj-gallery-card:hover img {
  transform: scale(1.08);
}

.proj-gallery-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.proj-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s ease;
}

.proj-gallery-card:hover .proj-gallery-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
}

.proj-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}

.proj-gallery-overlay h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.proj-gallery-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Project Stats Section */
.proj-stats-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #0a0e1a 0%, #111d35 40%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

.proj-stats-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.06);
  top: -120px;
  right: -120px;
}

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

.proj-stats-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.proj-stat-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.proj-stat-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.proj-stat-num {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.proj-stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* Inner page responsive */
@media (max-width: 992px) {
  .contact-quick-strip { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-modern-grid { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .proj-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-stats-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .mv-card { padding: 28px; }
  .about-experience-badge { right: 16px; bottom: -16px; }
  .map-overlay-card {
    position: static;
    max-width: none;
    margin: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
}

@media (max-width: 768px) {
  .services-detail-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .svc-why-stats { grid-template-columns: 1fr 1fr; }
  .proj-gallery-grid { grid-template-columns: 1fr; }
  .proj-gallery-card { height: 260px; }
  .proj-stats-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .contact-quick-strip { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-modern-grid { grid-template-columns: 1fr; }
  .stats-modern-number { font-size: 32px; }
  .svc-why-stats { grid-template-columns: 1fr; }
  .svc-card { padding: 28px 24px; }
  .proj-stats-cards { grid-template-columns: 1fr; }
  .proj-gallery-card { height: 220px; }
}

/* Contact form status message */
.form-status {
  margin-top: 16px;
  padding: 0;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.form-status.success,
.form-status.error {
  padding: 14px 16px;
}
.form-status.success {
  background: #e7f6ec;
  color: #1a7f37;
  border: 1px solid #b7e2c4;
}
.form-status.error {
  background: #fdecea;
  color: #c0392b;
  border: 1px solid #f5c6c2;
}
